Lines Matching refs:fp
17 $fp = fopen( $file, "a+" );
20 var_dump( vfprintf( $fp, array( 'foo %d', 'bar %s' ), 3.55552 ) );
22 rewind( $fp );
23 var_dump( stream_get_contents( $fp ) );
24 ftruncate( $fp, 0 );
25 rewind( $fp );
27 var_dump( vfprintf( $fp, "Foo %y fake", "not available" ) );
29 rewind( $fp );
30 var_dump( stream_get_contents( $fp ) );
31 ftruncate( $fp, 0 );
32 rewind( $fp );
35 fclose( $fp );