Help for this page

Select Code to Download


  1. or download this
    while( $file = <$id.'*'> ){
      do_something( $file );
    }
    
  2. or download this
    while( $file = glob "$id*" ){
      do_something( $file );
    }