/PHP-5.4/scripts/dev/generate-phpt/src/ |
H A D | gtTestCaseWriter.php | 22 $fh = fopen($fileName, 'w'); 23 fwrite ($fh, $string); 24 fclose($fh);
|
/PHP-5.4/main/ |
H A D | php_ini.c | 373 zend_file_handle fh; in php_init_config() local 527 memset(&fh, 0, sizeof(fh)); in php_init_config() 541 if (fh.handle.fp) { in php_init_config() 549 if (!fh.handle.fp) { in php_init_config() 555 if (fh.handle.fp) { in php_init_config() 561 if (!fh.handle.fp) { in php_init_config() 563 if (fh.handle.fp) { in php_init_config() 575 if (fh.handle.fp) { in php_init_config() 576 fh.type = ZEND_HANDLE_FP; in php_init_config() 723 zend_file_handle fh; in php_parse_user_ini_file() local [all …]
|
/PHP-5.4/Zend/ |
H A D | zend_stream.c | 305 switch (fh->type) { 310 fclose(fh->handle.fp); 314 if (fh->handle.stream.closer && fh->handle.stream.handle) { 315 fh->handle.stream.closer(fh->handle.stream.handle TSRMLS_CC); 317 fh->handle.stream.handle = NULL; 325 if (fh->opened_path) { 326 efree(fh->opened_path); 327 fh->opened_path = NULL; 329 if (fh->free_filename && fh->filename) { 330 efree((char*)fh->filename); [all …]
|
H A D | zend_ini_scanner.l | 172 static int init_ini_scanner(int scanner_mode, zend_file_handle *fh TSRMLS_DC) in init_ini_scanner() 182 SCNG(yy_in) = fh; in init_ini_scanner() 184 if (fh != NULL) { in init_ini_scanner() 185 ini_filename = zend_strndup(fh->filename, strlen(fh->filename)); in init_ini_scanner() 226 int zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode TSRMLS_DC) in zend_ini_open_file_for_scanning() argument 231 if (zend_stream_fixup(fh, &buf, &size TSRMLS_CC) == FAILURE) { in zend_ini_open_file_for_scanning() 235 if (init_ini_scanner(scanner_mode, fh TSRMLS_CC) == FAILURE) { in zend_ini_open_file_for_scanning() 236 zend_file_handle_dtor(fh TSRMLS_CC); in zend_ini_open_file_for_scanning()
|
H A D | zend_ini_scanner.h | 32 int zend_ini_open_file_for_scanning(zend_file_handle *fh, int scanner_mode TSRMLS_DC);
|
H A D | zend_stream.h | 77 ZEND_API void zend_file_handle_dtor(zend_file_handle *fh TSRMLS_DC);
|
H A D | zend_ini_parser.y | 192 ZEND_API int zend_parse_ini_file(zend_file_handle *fh, zend_bool unbuffered_errors, int scanner_mod… in zend_parse_ini_file() argument 201 if (zend_ini_open_file_for_scanning(fh, scanner_mode TSRMLS_CC) == FAILURE) { in zend_parse_ini_file() 207 zend_file_handle_dtor(fh TSRMLS_CC); in zend_parse_ini_file()
|
/PHP-5.4/ext/com_dotnet/tests/ |
H A D | bug66431_0.phpt | 14 $fh = $fso->OpenTextFile($fpath, 2, true); 15 $fh->Write($text); 16 $fh->Close();
|
/PHP-5.4/ext/standard/tests/file/ |
H A D | disk_total_space_basic.phpt | 22 $fh = fopen($file_path.$dir."/disk_total_space.tmp", "w"); 23 fwrite($fh, (binary)"Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data Garbage Data … 25 fclose($fh);
|
H A D | disk_total_space_error.phpt | 26 $fh = fopen( $file_path."/disk_total_space.tmp", "w" ); 27 fwrite( $fh, (binary)" Garbage data for the temporary file" ); 29 fclose($fh);
|
H A D | bug53241.phpt | 12 $fh = fopen($fn, 'xb'); 14 var_dump(curl_setopt($ch, CURLOPT_FILE, $fh));
|
H A D | disk_total_space_error-win32.phpt | 26 $fh = fopen( $file_path."/disk_total_space.tmp", "w" ); 27 fwrite( $fh, " Garbage data for the temporary file" ); 29 fclose($fh);
|
H A D | disk_free_space_basic.phpt | 31 $fh = fopen($file_path.$dir."/disk_free_space.tmp", "a"); 33 fwrite($fh, (binary)$data); 34 fclose($fh);
|
H A D | disk_free_space_error.phpt | 29 $fh = fopen( $file_path."/disk_free_space.tmp", "w" ); 30 fwrite( $fh, (binary)" Garbage data for the temporary file" ); 33 fclose($fh);
|
H A D | disk_free_space_error-win32.phpt | 29 $fh = fopen( $file_path."/disk_free_space.tmp", "w" ); 30 fwrite( $fh, " Garbage data for the temporary file" ); 33 fclose($fh);
|
H A D | lstat_stat_variation7.phpt | 29 $fh = fopen($file_name,"w"); 32 fwrite($fh, str_repeat((binary)"Hello World", $old_stat['blksize']));
|
H A D | file_variation.phpt | 18 $fh = fopen($file_path."/file_variation.tmp", "w"); 19 fwrite($fh, (binary)$data); 23 fclose($fh);
|
/PHP-5.4/ext/openssl/tests/ |
H A D | sni_001.phpt | 45 $fh = fopen($url, 'r', false, $context); 46 assert($fh); 53 $fh = stream_socket_client($url, $errno, $errstr, 55 assert($fh); 62 $fh = stream_socket_client($url, $errno, $errstr, 64 assert($fh); 66 $r = stream_socket_enable_crypto($fh, true, STREAM_CRYPTO_METHOD_TLS_CLIENT);
|
/PHP-5.4/ext/standard/ |
H A D | browscap.c | 244 zend_file_handle fh = {0}; in browscap_read_file() local 264 fh.handle.fp = VCWD_FOPEN(filename, "r"); in browscap_read_file() 265 fh.opened_path = NULL; in browscap_read_file() 266 fh.free_filename = 0; in browscap_read_file() 267 if (!fh.handle.fp) { in browscap_read_file() 274 fh.filename = filename; in browscap_read_file() 275 Z_TYPE(fh) = ZEND_HANDLE_FP; in browscap_read_file() 277 zend_parse_ini_file(&fh, 1, ZEND_INI_SCANNER_RAW, in browscap_read_file()
|
/PHP-5.4/ext/gettext/tests/ |
H A D | gettext_bind_textdomain_codeset-retval.phpt | 21 Florian Holzhauer fh-pt@fholzhauer.de
|
H A D | gettext_bind_textdomain_codeset-wrongparams.phpt | 22 Florian Holzhauer fh-pt@fholzhauer.de
|
/PHP-5.4/sapi/isapi/stresstest/ |
H A D | stresstest.cpp | 392 HANDLE fh = FindFirstFile(FindPath, &fd); in GetTestFiles() local 393 if (fh != INVALID_HANDLE_VALUE) { in GetTestFiles() 408 } while (FindNextFile(fh, &fd) != 0); in GetTestFiles() 409 FindClose(fh); in GetTestFiles() 421 HANDLE fh = FindFirstFile(FindPath, &fd); in DeleteTempFiles() local 422 if (fh != INVALID_HANDLE_VALUE) { in DeleteTempFiles() 428 } while (FindNextFile(fh, &fd) != 0); in DeleteTempFiles() 429 FindClose(fh); in DeleteTempFiles()
|
/PHP-5.4/sapi/apache/ |
H A D | mod_php5.c | 603 zend_file_handle fh; in send_php() local 605 fh.filename = r->filename; in send_php() 606 fh.opened_path = NULL; in send_php() 607 fh.free_filename = 0; in send_php() 608 fh.type = ZEND_HANDLE_FILENAME; in send_php() 610 zend_execute_scripts(ZEND_INCLUDE TSRMLS_CC, NULL, 1, &fh); in send_php()
|
/PHP-5.4/sapi/apache_hooks/ |
H A D | mod_php5.c | 652 zend_file_handle fh; in send_php() local 654 fh.filename = r->filename; in send_php() 655 fh.opened_path = NULL; in send_php() 656 fh.free_filename = 0; in send_php() 657 fh.type = ZEND_HANDLE_FILENAME; in send_php() 659 zend_execute_scripts(ZEND_INCLUDE TSRMLS_CC, NULL, 1, &fh); in send_php()
|
/PHP-5.4/ext/standard/tests/strings/ |
H A D | strspn_variation6.phpt | 68 "fh\ne\trlsti \l",
|