Home
last modified time | relevance | path

Searched refs:fp (Results 76 – 100 of 909) sorted by relevance

12345678910>>...37

/PHP-5.5/ext/standard/tests/strings/
H A Dfprintf_variation_005.phpt6 if (!($fp = fopen($data_file, 'w'))) {
17 if (!($fp = fopen($data_file, 'wt')))
21 fprintf($fp, "\n*** Testing fprintf() for scientific type ***\n");
23 fprintf( $fp, "\n");
24 fprintf( $fp, "%e", $num );
27 fclose($fp);
H A Dfprintf_variation_006.phpt6 if (!($fp = fopen($data_file, 'w'))) {
18 if (!($fp = fopen($data_file, 'wt')))
22 fprintf($fp, "\n*** Testing fprintf() for unsigned integers ***\n");
24 fprintf( $fp, "\n");
25 fprintf( $fp, "%u", $unsig_num );
28 fclose($fp);
H A Dfprintf_variation_006_64bit.phpt6 if (!($fp = fopen($data_file, 'w'))) {
18 if (!($fp = fopen($data_file, 'wt')))
22 fprintf($fp, "\n*** Testing fprintf() for unsigned integers ***\n");
24 fprintf( $fp, "\n");
25 fprintf( $fp, "%u", $unsig_num );
28 fclose($fp);
H A Dfprintf_variation_003.phpt6 if (!($fp = fopen($data_file, 'w'))) {
18 if (!($fp = fopen($data_file, 'wt')))
22 fprintf($fp, "\n*** Testing fprintf() with binary ***\n");
24 fprintf( $fp, "\n");
25 fprintf( $fp, "%b", $bin_num );
28 fclose($fp);
H A Dfprintf_variation_007.phpt6 if (!($fp = fopen($data_file, 'w'))) {
18 if (!($fp = fopen($data_file, 'wt')))
22 fprintf($fp, "\n*** Testing fprintf() for octals ***\n");
24 fprintf( $fp, "\n");
25 fprintf( $fp, "%o", $octal_num );
28 fclose($fp);
H A Dfprintf_variation_007_64bit.phpt6 if (!($fp = fopen($data_file, 'w'))) {
18 if (!($fp = fopen($data_file, 'wt')))
22 fprintf($fp, "\n*** Testing fprintf() for octals ***\n");
24 fprintf( $fp, "\n");
25 fprintf( $fp, "%o", $octal_num );
28 fclose($fp);
H A Dfprintf_variation_008.phpt6 if (!($fp = fopen($data_file, 'w'))) {
19 if (!($fp = fopen($data_file, 'wt')))
23 fprintf($fp, "\n*** Testing fprintf() for hexadecimals ***\n");
25 fprintf( $fp, "\n");
26 fprintf( $fp, "%x", $hexa_num );
29 fclose($fp);
H A Dfprintf_variation_008_64bit.phpt6 if (!($fp = fopen($data_file, 'w'))) {
19 if (!($fp = fopen($data_file, 'wt')))
23 fprintf($fp, "\n*** Testing fprintf() for hexadecimals ***\n");
25 fprintf( $fp, "\n");
26 fprintf( $fp, "%x", $hexa_num );
29 fclose($fp);
/PHP-5.5/ext/standard/tests/file/
H A Dbug37158.phpt19 $fp = fopen($file, 'w');
21 fwrite($fp, $x);
23 fclose($fp);
25 $fp = fopen($file, 'r');
26 $outsidecontents = fread($fp, 20000);
27 fclose($fp);
/PHP-5.5/sapi/cli/tests/
H A Dbug61679.phpt18 $fp = fsockopen($host, $port, $errno, $errstr, 0.5);
19 if (!$fp) {
25 if(fwrite($fp, <<<HEADER
32 while (!feof($fp)) {
33 echo fgets($fp);
40 fclose($fp);
H A Dbug67429.phpt20 $fp = fsockopen($host, $port, $errno, $errstr, 0.5);
21 if (!$fp) {
25 if(fwrite($fp, <<<HEADER
31 while (!feof($fp)) {
32 echo fgets($fp);
36 fclose($fp);
H A Dphp_cli_server_016.phpt25 $fp = fsockopen($host, $port, $errno, $errstr, 0.5);
26 if (!$fp) {
30 if(fwrite($fp, <<<HEADER
37 while (!feof($fp)) {
38 echo fgets($fp);
43 fclose($fp);
H A Dbug65066_100.phpt17 $fp = fsockopen($host, $port, $errno, $errstr, 0.5);
18 if (!$fp) {
22 if(fwrite($fp, <<<HEADER
29 while (!feof($fp)) {
30 echo fgets($fp);
H A Dphp_cli_server_012.phpt17 $fp = fsockopen($host, $port, $errno, $errstr, 0.5);
18 if (!$fp) {
22 if(fwrite($fp, <<<HEADER
31 while (!feof($fp)) {
32 echo fgets($fp);
36 fclose($fp);
H A Dbug65066_422.phpt17 $fp = fsockopen($host, $port, $errno, $errstr, 0.5);
18 if (!$fp) {
22 if(fwrite($fp, <<<HEADER
29 while (!feof($fp)) {
30 echo fgets($fp);
H A Dbug65066_511.phpt17 $fp = fsockopen($host, $port, $errno, $errstr, 0.5);
18 if (!$fp) {
22 if(fwrite($fp, <<<HEADER
29 while (!feof($fp)) {
30 echo fgets($fp);
H A Dphp_cli_server_006.phpt15 $fp = fsockopen($host, $port, $errno, $errstr, 0.5);
16 if (!$fp) {
20 if(fwrite($fp, <<<HEADER
28 while (!feof($fp)) {
29 echo fgets($fp);
/PHP-5.5/ext/fileinfo/tests/
H A Dfinfo_file_001.phpt8 $fp = finfo_open();
9 var_dump(finfo_file($fp, "\0"));
10 var_dump(finfo_file($fp, ''));
11 var_dump(finfo_file($fp, NULL));
12 var_dump(finfo_file($fp, '.'));
13 var_dump(finfo_file($fp, '&'));
/PHP-5.5/ext/phar/tests/zip/files/
H A Dmake_invalid_tar.php.inc7 $fp = fopen($this->path, 'r+b');
8 fseek($fp, 20);
9 fwrite($fp, 'oopsie');
10 fclose($fp);
/PHP-5.5/ext/standard/tests/filters/
H A Dstream_filter_remove_basic.phpt21 $fp = fopen( $file, 'w+' );
23 $filter = stream_filter_append( $fp, "string.rot13", STREAM_FILTER_WRITE );
24 fwrite( $fp, "Testing the rot13 filter which shifts some things around." );
27 fwrite( $fp, "\nadd some more un-filtered foobar\n" );
29 rewind( $fp );
30 fpassthru( $fp );
31 fclose( $fp );
H A Dbasic.phpt12 $fp = tmpfile();
13 fwrite($fp, $GLOBALS["text"]);
14 rewind($fp);
17 var_dump(stream_filter_prepend($fp, $name));
19 var_dump(fgets($fp));
20 fclose($fp);
/PHP-5.5/ext/standard/tests/network/
H A Dbug20134.phpt6 $fp = fsockopen("udp://localhost", 65534, $errno, $errstr);
7 if (!$fp) {
14 $x = fwrite($fp,b"\n");
17 $content = fread($fp, 40);
19 fclose($fp);
/PHP-5.5/ext/phar/
H A Dzip.c194 php_stream_close(fp); in phar_parse_zipfile()
262 php_stream_close(fp); in phar_parse_zipfile()
585 fp->writepos = 0; in phar_parse_zipfile()
586 fp->readpos = 0; in phar_parse_zipfile()
588 fp->writepos = 0; in phar_parse_zipfile()
589 fp->readpos = 0; in phar_parse_zipfile()
644 mydata->fp = fp; in phar_parse_zipfile()
837 … if (entry->fp_type == PHAR_MOD && entry->fp != entry->phar->fp && entry->fp != entry->phar->ufp) { in phar_zip_changed_apply()
839 entry->fp = NULL; in phar_zip_changed_apply()
1061 entry->fp = NULL; in phar_zip_changed_apply()
[all …]
/PHP-5.5/ext/zlib/tests/
H A Dbug_52944.phpt15 $fp = fopen('data://text/plain;base64,' . $data, 'r');
16 stream_filter_append($fp, 'zlib.inflate', STREAM_FILTER_READ);
17 var_dump(fread($fp,1));
18 var_dump(fread($fp,1));
19 fclose($fp);
/PHP-5.5/Zend/tests/
H A Dbug21478.phpt23 $fp = fopen(dirname(__FILE__)."/test.txt","w");
24 stream_filter_append($fp, "myfilter");
25 stream_filter_append($fp, "myfilter");
26 stream_filter_append($fp, "myfilter");
27 fwrite($fp, "This is a test.\n");
29 fclose($fp);

Completed in 63 milliseconds

12345678910>>...37