Home
last modified time | relevance | path

Searched refs:handle (Results 51 – 75 of 739) sorted by relevance

12345678910>>...30

/PHP-7.3/ext/standard/tests/file/
H A Dfwrite_error.phpt6 Prototype: int fwrite ( resource $handle,string string, [, int $length] );
7 Description: fwrite() writes the contents of string to the file stream pointed to by handle.
55 // fwrite() on a file handle which is already closed
56 echo "-- Testing fwrite() with closed/unset file handle --\n";
60 // fwrite on a file handle which is unset
62 unset($fp); //unset file handle
113 -- Testing fwrite() with closed/unset file handle --
H A Dfgets_error.phpt6 Prototype: string fgets ( resource $handle [, int $length] );
46 // fgets() on a file handle which is already closed
47 echo "-- Testing fgets() with closed/unset file handle --";
51 // fgets() on a file handle which is unset
53 unset($file_handle); //unset file handle
101 -- Testing fgets() with closed/unset file handle --
H A Dfgetss_error.phpt8 Prototype: string fgetss ( resource $handle [, int $length [, string $allowable_tags]] );
47 // fgetss() on a file handle which is already closed
48 echo "-- Testing fgetss() with closed/unset file handle --";
52 // fgetss() on a file handle which is unset
54 unset($file_handle); //unset file handle
102 -- Testing fgetss() with closed/unset file handle --
H A D007_variation1.phpt13 Prototype: bool fclose ( resource $handle );
31 var_dump($file_handle); //Check for the content of handle
36 var_dump( fclose($file_handle) ); //Check for close operation on the file handle
/PHP-7.3/ext/standard/tests/dir/
H A Dreaddir_variation4-win32-mb.phpt17 * Pass a directory handle pointing to a directory that contains
59 $handle = "fp{$iterator}";
60 var_dump( $$handle = @fopen($dir_path . "私はガラスを食べられます$input.tmp", 'w') );
61 var_dump( fwrite($$handle, $key));
62 fclose($$handle);
H A Dreaddir_variation4.phpt11 * Pass a directory handle pointing to a directory that contains
53 $handle = "fp{$iterator}";
54 var_dump( $$handle = fopen(@"$dir_path$input.tmp", 'w') );
55 var_dump( fwrite($$handle, $key));
56 fclose($$handle);
H A Drewinddir_variation2-win32-mb.phpt18 * Open and close a directory handle then call rewinddir() to test behaviour
26 echo "\n-- Create the directory handle, read and close the directory --\n";
43 -- Create the directory handle, read and close the directory --
H A Ddir_variation9.phpt13 * Description: Directory class with properties, handle and class and methods read, rewind and close
82 ["handle"]=>
88 ["handle"]=>
94 ["handle"]=>
100 ["handle"]=>
/PHP-7.3/ext/interbase/
H A Dibase_blobs.c238 …if (isc_create_blob(IB_STATUS, &ib_link->handle, &trans->handle, &ib_blob->bl_handle, &ib_blob->bl… in PHP_FUNCTION()
275 if (isc_open_blob(IB_STATUS, &ib_link->handle, &trans->handle, &ib_blob->bl_handle, in PHP_FUNCTION()
420 if (isc_open_blob(IB_STATUS, &ib_link->handle, &trans->handle, &ib_blob.bl_handle, in PHP_FUNCTION()
483 if (isc_open_blob(IB_STATUS, &ib_link->handle, &trans->handle, &ib_blob_id.bl_handle, in PHP_FUNCTION()
533 if (isc_create_blob(IB_STATUS, &ib_link->handle, &trans->handle, &ib_blob.bl_handle, in PHP_FUNCTION()
H A Dinterbase.c588 if (p->trans->handle != 0) { in _php_ibase_commit_link()
638 if (link->handle != 0) { in _php_ibase_close_link()
653 if (link->handle != 0) { in _php_ibase_close_plink()
668 if (trans->handle != 0) { in _php_ibase_free_trans()
783 ibase_entry->handle = 0; in PHP_MSHUTDOWN_FUNCTION()
1006 ib_link->handle = db_handle; in _php_ibase_connect()
1244 ib_trans->handle = tr_handle; in PHP_FUNCTION()
1289 tr->handle = 0; in _php_ibase_def_trans()
1295 if (tr->handle == 0) { in _php_ibase_def_trans()
1296 if (isc_start_transaction(IB_STATUS, &tr->handle, 1, &ib_link->handle, 0, NULL)) { in _php_ibase_def_trans()
[all …]
/PHP-7.3/ext/spl/tests/
H A Dbug45216.phpt10 $handle = fopen($file, 'r');
14 var_dump(fgetss($handle));
/PHP-7.3/ext/ftp/tests/
H A Dftp_nb_fget_basic2.phpt20 $handle = fopen($local_file, 'a');
22 var_dump(ftp_nb_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, FTP_AUTORESUME));
H A Dftp_nb_fget_basic3.phpt20 $handle = fopen($local_file, 'a');
22 var_dump(ftp_nb_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, 8));
H A Dftp_fget_basic2.phpt20 $handle = fopen($local_file, 'a');
22 var_dump(ftp_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, FTP_AUTORESUME));
H A Dftp_fget_basic3.phpt20 $handle = fopen($local_file, 'a');
22 var_dump(ftp_fget($ftp, $handle, 'fgetresume.txt', FTP_ASCII, 8));
H A Dftp_fget_basic1.phpt20 $handle = fopen($local_file, 'w');
22 var_dump(ftp_fget($ftp, $handle, 'fget.txt', FTP_ASCII, FTP_AUTORESUME));
H A Dftp_nb_fget_basic1.phpt20 $handle = fopen($local_file, 'w');
22 var_dump(ftp_nb_fget($ftp, $handle, 'fget.txt', FTP_ASCII, FTP_AUTORESUME));
/PHP-7.3/ext/curl/tests/
H A Dcurl_multi_init_basic.phpt11 * Description : Returns a new cURL multi handle
19 //create the multiple cURL handle
H A Dcurl_multi_init_param.phpt11 * Description : Returns a new cURL multi handle
18 //create the multiple cURL handle
H A Dbug77535.phpt24 throw new \RuntimeException('Unable to create a new cURL multi handle');
56 die("Start handle request.");
76 Start handle request.
H A Dbug77946.phpt29 var_dump(curl_errno($info['handle']));
30 var_dump(curl_error($info['handle']));
H A Dcurl_copy_handle_basic_001.phpt14 echo '*** Testing curl copy handle with simple GET ***' . "\n";
33 *** Testing curl copy handle with simple GET ***
/PHP-7.3/ext/standard/tests/array/
H A Dbug77135.phpt23 $this->handle($name, $flags);
24 $this->handle("{$name}_REFS", $flags | EXTR_REFS);
29 private function handle(string $name, int $flags): void
/PHP-7.3/Zend/
H A Dzend_extensions.h109 DL_HANDLE handle; member
146 ZEND_API int zend_load_extension_handle(DL_HANDLE handle, const char *path);
147 ZEND_API int zend_register_extension(zend_extension *new_extension, DL_HANDLE handle);
/PHP-7.3/ext/pdo/
H A DREADME19 When you create a database handle, you *should* specify the autocommit
39 Regardless of the error handling mode set on the database handle, if the
44 the handle will switch back to autocommit mode again. If the mode could not
47 When the database handle is closed or destroyed (or at request end for

Completed in 45 milliseconds

12345678910>>...30