/PHP-7.0/ext/oci8/tests/ |
H A D | lob_033.phpt | 24 $blob->save(""); 29 var_dump($blob->save("")); 30 var_dump($blob->save("data", 100)); 38 Warning: OCI-Lob::save(): OCI_INVALID_HANDLE in %s on line %d
|
H A D | lob_022.phpt | 26 $clob->save(); 39 $clob->save("long data"); 40 $clob->save("long data", -1); 41 $clob->save("long data", 0); 72 Warning: OCI-Lob::save() expects at least 1 parameter, 0 given in %s on line %d 78 Warning: OCI-Lob::save(): Offset parameter must be greater than or equal to 0 in %s on line %d
|
H A D | lob_038.phpt | 30 var_dump($clob->save("clob test 1")); 33 var_dump($clob->save("clob test 2")); 36 var_dump($clob->save("clob test 3")); 78 var_dump($blob->save("blob test 1")); 81 var_dump($blob->save("blob test 2")); 84 var_dump($blob->save("blob test 3"));
|
H A D | lob_010.phpt | 26 var_dump($blob->save("string")); 27 var_dump($blob->save("string", 3));
|
H A D | oci_execute_segfault.phpt | 25 var_dump($blob->save("some binary data")); 29 var_dump($blob->save("some more binary data"));
|
H A D | lob_018.phpt | 29 $clob->save("data"); 38 $clob->save("long data"); 70 $clob->save("more stuff");
|
H A D | bug70700.phpt | 42 $desc->save($string1); 73 $desc->save($string2); 104 $desc->save($string3); 135 $desc->save($string4);
|
H A D | lob_null.phpt | 130 $lob->save(null); 137 $lob->save(''); 144 $lob->save('Inserted with RETURNING INTO');
|
/PHP-7.0/ext/dom/tests/ |
H A D | DOMDocument_save_basic.phpt | 2 DOMDocument::save Test basic function of save method 24 echo 'Wrote: ' . $doc->save($temp_filename) . ' bytes'; // Wrote: 72 bytes
|
H A D | dom005.phpt | 9 print "--- save as XML\n"; 12 print "--- save as HTML\n"; 21 --- save as XML 28 --- save as HTML
|
H A D | DOMDocument_savexml_basic.phpt | 2 DOM Document : save and saveXML 31 var_dump($dom->save($filename));
|
H A D | DOMNode_hasChildNodes.phpt | 24 echo "Remove node and save\n"; 43 Remove node and save
|
/PHP-7.0/ext/libxml/tests/ |
H A D | bug61367-write.phpt | 14 var_dump($doc->save(dirname(getcwd()) . '/bad')); 43 Warning: DOMDocument::save(): open_basedir restriction in effect. File(%s) is not within the allowe… 45 Warning: DOMDocument::save(%s): failed to open stream: Operation not permitted in %s on line %d
|
/PHP-7.0/ext/phar/ |
H A D | dirstream.c | 184 char *entry, *found, *save; in phar_make_dirstream() local 257 save = ZSTR_VAL(str_key); in phar_make_dirstream() 258 save += dirlen + 1; /* seek to just past the path separator */ in phar_make_dirstream() 260 if (NULL != (found = (char *) memchr(save, '/', keylen - dirlen - 1))) { in phar_make_dirstream() 262 save -= dirlen + 1; in phar_make_dirstream() 263 entry = (char *) safe_emalloc(found - save + dirlen, 1, 1); in phar_make_dirstream() 264 memcpy(entry, save + dirlen + 1, found - save - dirlen - 1); in phar_make_dirstream() 265 keylen = found - save - dirlen - 1; in phar_make_dirstream() 269 save -= dirlen + 1; in phar_make_dirstream() 271 memcpy(entry, save + dirlen + 1, keylen - dirlen - 1); in phar_make_dirstream()
|
H A D | tar.c | 105 char save[sizeof(header->checksum)], *bname; in phar_is_tar() local 112 memcpy(save, header->checksum, sizeof(header->checksum)); in phar_is_tar() 115 memcpy(header->checksum, save, sizeof(header->checksum)); in phar_is_tar() 164 size_t save = php_stream_tell(fp), read; in phar_tar_process_metadata() local 172 php_stream_seek(fp, save, SEEK_SET); in phar_tar_process_metadata() 179 php_stream_seek(fp, save, SEEK_SET); in phar_tar_process_metadata() 193 php_stream_seek(fp, save, SEEK_SET); in phar_tar_process_metadata() 307 char *save = *error; in phar_parse_tarfile() local 309 efree(save); in phar_parse_tarfile() 1211 char *save = *error; in phar_tar_flush() local [all …]
|
/PHP-7.0/ext/session/tests/ |
H A D | session_save_path_basic.phpt | 16 * Description : Get and/or set the current session save path
|
H A D | session_save_path_variation1.phpt | 17 * Description : Get and/or set the current session save path
|
H A D | session_save_path_variation3.phpt | 15 * Description : Get and/or set the current session save path
|
H A D | session_save_path_variation2.phpt | 15 * Description : Get and/or set the current session save path
|
H A D | session_save_path_variation5.phpt | 18 * Description : Get and/or set the current session save path
|
H A D | session_save_path_variation4.phpt | 17 * Description : Get and/or set the current session save path
|
/PHP-7.0/main/ |
H A D | network.c | 290 # define SET_SOCKET_BLOCKING_MODE(sock, save) \ argument 291 save = TRUE; ioctlsocket(sock, FIONBIO, &save) 292 # define RESTORE_SOCKET_BLOCKING_MODE(sock, save) \ argument 293 ioctlsocket(sock, FIONBIO, &save) 296 # define SET_SOCKET_BLOCKING_MODE(sock, save) \ argument 297 save = fcntl(sock, F_GETFL, 0); \ 298 fcntl(sock, F_SETFL, save | O_NONBLOCK) 299 # define RESTORE_SOCKET_BLOCKING_MODE(sock, save) \ argument 300 fcntl(sock, F_SETFL, save)
|
/PHP-7.0/Zend/ |
H A D | zend_virtual_cwd.c | 791 int i, j, save; in tsrm_realpath_r() local 867 save = (use_realpath != CWD_EXPAND); in tsrm_realpath_r() 895 save = 0; in tsrm_realpath_r() 898 if (save) { in tsrm_realpath_r() 905 if(save && in tsrm_realpath_r() 1081 if (save) { in tsrm_realpath_r() 1090 save = 0; in tsrm_realpath_r() 1100 save = 0; in tsrm_realpath_r() 1106 if (save && S_ISLNK(st.st_mode)) { in tsrm_realpath_r() 1137 if (save) { in tsrm_realpath_r() [all …]
|
/PHP-7.0/ext/pdo/tests/ |
H A D | bug_69356.phpt | 23 …control functions can be used to capture the output of this function, and save it in a string (for… 35 …control functions can be used to capture the output of this function, and save it in a string (for…
|
/PHP-7.0/ext/phar/tests/zip/files/ |
H A D | zipmaker.php.inc | 26 * save a file inside this package
|