Home
last modified time | relevance | path

Searched refs:write (Results 76 – 100 of 532) sorted by relevance

12345678910>>...22

/PHP-7.4/ext/pdo_sqlite/tests/
H A Dpdo_sqlite_open_flags.phpt10 // Default open flag is read-write|create
29 Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly d…
/PHP-7.4/ext/date/tests/
H A Dbug65672.phpt17 # Ensure we can modify properties (retrieve for write)
26 # Ensure we can modify properties (retrieve for write)
/PHP-7.4/ext/xmlreader/tests/
H A D014.phpt46 Warning: main(): Cannot write to read-only property in %s on line %d
48 Warning: main(): Cannot write to read-only property in %s on line %d
50 Warning: main(): Cannot write to read-only property in %s on line %d
/PHP-7.4/ext/xsl/tests/
H A Dbug54446.phpt75 Warning: XSLTProcessor::transformToXml(): File write for %s/bug54446test.txt refused in %s on line …
79 Warning: XSLTProcessor::transformToXml(): xsltDocumentElem: write rights for %s/bug54446test.txt de…
85 Warning: XSLTProcessor::transformToXml(): File write for %s/bug54446test.txt refused in %s on line …
89 Warning: XSLTProcessor::transformToXml(): xsltDocumentElem: write rights for %s/bug54446test.txt de…
H A Dbug54446_with_ini.phpt77 Warning: XSLTProcessor::transformToXml(): File write for %s/bug54446test_with_ini.txt refused in %s…
81 Warning: XSLTProcessor::transformToXml(): xsltDocumentElem: write rights for %s/bug54446test_with_i…
87 Warning: XSLTProcessor::transformToXml(): File write for %s/bug54446test_with_ini.txt refused in %s…
91 Warning: XSLTProcessor::transformToXml(): xsltDocumentElem: write rights for %s/bug54446test_with_i…
/PHP-7.4/ext/dba/tests/
H A Ddba_handler.inc44 echo "Read during write: not allowed\n";
46 echo "Read during write: allowed\n";
52 echo 'Failed to write "key number 6"' . "\n";
57 echo 'Failed to write "key number 6" 2nd time' . "\n";
H A Ddba_inifile.phpt24 Read during write: not allowed
41 Read during write: not allowed
/PHP-7.4/ext/standard/tests/file/
H A D007_variation1.phpt18 checking for the file creation, write & read operations,
35 var_dump( fwrite($file_handle, $string) ); //Check for write operation; fails
52 Notice: fwrite(): write of 37 bytes failed with errno=9 Bad file descriptor in %s on line %d
H A D007_variation17.phpt18 checking for the file creation, write & read operations,
35 var_dump( fwrite($file_handle, $string) ); //Check for write operation; fails
52 Notice: fwrite(): write of 37 bytes failed with errno=9 Bad file descriptor in %s on line %d
H A D007_variation9.phpt18 checking for the file creation, write & read operations,
35 var_dump( fwrite($file_handle, $string) ); //Check for write operation; fails
52 Notice: fwrite(): write of 37 bytes failed with errno=9 Bad file descriptor in %s on line %d
H A D007_variation10.phpt18 checking for the file creation, write & read operations,
36 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
37 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
H A D007_variation18.phpt18 checking for the file creation, write & read operations,
36 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
37 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
H A D007_variation2.phpt18 checking for the file creation, write & read operations,
36 var_dump( fwrite($file_handle, $string) ); //Check for write operation; passes; expected:size of t…
37 var_dump( ftell($file_handle) ); //File pointer position after write operation, expected at the en…
/PHP-7.4/ext/oci8/tests/
H A Dlob_013.phpt26 var_dump($blob->write("test"));
29 var_dump($blob->write("test"));
H A Dlob_001.phpt32 var_dump($blob->write("test"));
35 var_dump($blob->write("string"));
52 var_dump($blob->write("test row 2"));
/PHP-7.4/ext/session/tests/
H A D004.phpt33 function write($key, $val)
56 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
68 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
H A D005.phpt34 function write($key, $val)
57 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
71 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
84 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
H A D025.phpt35 function write($key, $val)
58 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
72 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
88 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
H A Dsave_handler_closures.inc5 foreach (array ('open', 'close', 'read', 'write', 'destroy', 'gc') as $fn) {
H A Dsession_module_name_variation3.phpt27 function write($id, $session_data) { return true; }
32 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
H A D024.phpt34 function write($key, $val)
57 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
72 …ay($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "de…
/PHP-7.4/ext/curl/
H A Dinterface.c221 if (ch->handlers->write && !Z_ISUNDEF(ch->handlers->write->stream)) { in _php_curl_verify_handlers()
229 ch->handlers->write->fp = 0; in _php_curl_verify_handlers()
2038 ch->handlers->write->stream = source->handlers->write->stream; in _php_setup_easy_copy_handlers()
2039 ch->handlers->write->method = source->handlers->write->method; in _php_setup_easy_copy_handlers()
2051 ch->handlers->write->fp = source->handlers->write->fp; in _php_setup_easy_copy_handlers()
2062 ZVAL_COPY(&ch->handlers->write->func_name, &source->handlers->write->func_name); in _php_setup_easy_copy_handlers()
3258 if (ch->handlers->write->method == PHP_CURL_RETURN && ch->handlers->write->buf.s) { in PHP_FUNCTION()
3264 if (ch->handlers->write->method == PHP_CURL_FILE && ch->handlers->write->fp) { in PHP_FUNCTION()
3265 fflush(ch->handlers->write->fp); in PHP_FUNCTION()
3665 efree(ch->handlers->write); in _php_curl_close_ex()
[all …]
/PHP-7.4/sapi/cli/tests/
H A Dupload_2G.phpt69 ) or die("write prev failed");
73 fwrite($fp, $data) or die("write failed @ ($i)");
76 fwrite($fp, $post) or die("write post failed");
/PHP-7.4/Zend/tests/varSyntax/
H A DwriteToTempExpr.phpt10 Fatal error: Cannot use temporary expression in write context in %s on line %d
/PHP-7.4/Zend/tests/
H A Dbug70240.phpt8 Fatal error: Can't use function return value in write context in %sbug70240.php on line %d

Completed in 43 milliseconds

12345678910>>...22