Home
last modified time | relevance | path

Searched refs:open (Results 1 – 25 of 691) sorted by relevance

12345678910>>...28

/PHP-5.5/ext/session/tests/
H A Dsessionhandler_open_001.phpt2 Testing repated SessionHandler::open() calls
10 $x->open('','');
11 $x->open('','');
12 $x->open('','');
13 $x->open('','');
H A Dsession_set_save_handler_class_012.phpt2 Test session_set_save_handler() : incorrect arguments for existing handler open
20 echo "*** Testing session_set_save_handler() : incorrect arguments for existing handler open ***\n";
24 public function open($path, $name) {
27 return parent::open();
44 *** Testing session_set_save_handler() : incorrect arguments for existing handler open ***
47 Warning: SessionHandler::open() expects exactly 2 parameters, 0 given in %s on line %d
50 Warning: SessionHandler::read(): Parent session handler is not open in %s on line %d
58 Warning: Unknown: Parent session handler is not open in Unknown on line 0
60 Warning: Unknown: Parent session handler is not open in Unknown on line 0
H A Dsession_set_save_handler_class_005.phpt23 public function open($path, $name) {
29 // should error because parent::open hasn't been called
47 Warning: SessionHandler::read(): Parent session handler is not open in %ssession_set_save_handler_c…
53 Warning: SessionHandler::write(): Parent session handler is not open in %ssession_set_save_handler_…
55 Warning: SessionHandler::close(): Parent session handler is not open in %ssession_set_save_handler_…
H A Dsession_set_save_handler_error3.phpt14 …* Prototype : bool session_set_save_handler(callback $open, callback $close, callback $read, callb…
20 function open($save_path, $session_name) {
30 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
39 #0 [internal function]: open('', 'PHPSESSID')
/PHP-5.5/ext/zip/tests/
H A Doo_open.phpt2 zip::open() function
13 $r = $zip->open($dirname . 'nofile');
20 $r = $zip->open($dirname . 'nofile', ZIPARCHIVE::CREATE);
29 $zip->open('');
31 if (!$zip->open($dirname . 'test.zip')) {
45 Warning: ZipArchive::open(): Empty string as source in %s on line %d
H A Dbug47667.phpt14 if ($zip->open($filename, ZipArchive::CREATE) !== true) {
15 exit("Unable to open the zip file");
23 if ($zip->open($filename, ZipArchive::OVERWRITE) !== true) {
24 exit("Unable to open the zip file");
31 if ($zip->open($filename, ZipArchive::CREATE) !== true) {
32 exit("Unable to open the zip file");
/PHP-5.5/ext/zlib/tests/
H A Dgzopen_variation2.phpt125 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
129 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
133 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
137 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
141 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
145 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
149 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
153 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
157 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
177 Error: 2 - gzopen(%s/004.txt.gz): failed to open stream: %s, %s(%d)
[all …]
H A Dgzfile_variation4.phpt29 Warning: gzfile(10.5): failed to open stream: No such file or directory in %s on line %d
32 Warning: gzfile(-10.5): failed to open stream: No such file or directory in %s on line %d
35 Warning: gzfile(123456789000): failed to open stream: No such file or directory in %s on line %d
38 Warning: gzfile(-123456789000): failed to open stream: No such file or directory in %s on line %d
41 Warning: gzfile(0.5): failed to open stream: No such file or directory in %s on line %d
H A Dreadgzfile_variation4.phpt29 Warning: readgzfile(10.5): failed to open stream: No such file or directory in %s on line %d
32 Warning: readgzfile(-10.5): failed to open stream: No such file or directory in %s on line %d
35 Warning: readgzfile(123456789000): failed to open stream: No such file or directory in %s on line %d
38 Warning: readgzfile(-123456789000): failed to open stream: No such file or directory in %s on line …
41 Warning: readgzfile(0.5): failed to open stream: No such file or directory in %s on line %d
H A Dgzfile_variation5.phpt28 Warning: gzfile(0): failed to open stream: No such file or directory in %s on line %d
31 Warning: gzfile(1): failed to open stream: No such file or directory in %s on line %d
34 Warning: gzfile(12345): failed to open stream: No such file or directory in %s on line %d
37 Warning: gzfile(-2345): failed to open stream: No such file or directory in %s on line %d
H A Dreadgzfile_variation5.phpt28 Warning: readgzfile(0): failed to open stream: No such file or directory in %s on line %d
31 Warning: readgzfile(1): failed to open stream: No such file or directory in %s on line %d
34 Warning: readgzfile(12345): failed to open stream: No such file or directory in %s on line %d
37 Warning: readgzfile(-2345): failed to open stream: No such file or directory in %s on line %d
H A Dgzfile_variation7.phpt33 Warning: gzfile(string): failed to open stream: No such file or directory in %s on line %d
36 Warning: gzfile(string): failed to open stream: No such file or directory in %s on line %d
39 Warning: gzfile(sTrInG): failed to open stream: No such file or directory in %s on line %d
42 Warning: gzfile(hello world): failed to open stream: No such file or directory in %s on line %d
/PHP-5.5/ext/tokenizer/tests/
H A Dtoken_get_all_basic.phpt14 // with php open/close tags
16 echo "-- source string with PHP open and close tags --\n";
19 // without php open/close tags testing for T_INLINE_HTML
21 echo "-- source string without PHP open and close tags --\n";
28 -- source string with PHP open and close tags --
87 -- source string without PHP open and close tags --
/PHP-5.5/ext/standard/tests/dir/
H A Ddir_variation5.phpt2 Test dir() function : usage variations - open a file instead of directory
22 echo "*** Testing dir() : open a file instead of a directory ***\n";
24 // open the file instead of directory
31 *** Testing dir() : open a file instead of a directory ***
33 Warning: dir(%s): failed to open dir: %s in %s on line %d
H A Ddir_variation6.phpt21 echo "*** Testing dir() : open a non-existent directory ***\n";
28 // open existent directory
32 // remove directory and try to open the same(non-existent) directory again
48 *** Testing dir() : open a non-existent directory ***
51 Warning: dir(%s): failed to open dir: %s in %s on line %d
55 Warning: dir(%s): failed to open dir: %s in %s on line %d
H A Dopendir_variation1.phpt124 Warning: opendir(0): failed to open dir: %s in %s on line %d
129 Warning: opendir(1): failed to open dir: %s in %s on line %d
134 Warning: opendir(12345): failed to open dir: %s in %s on line %d
139 Warning: opendir(-2345): failed to open dir: %s in %s on line %d
144 Warning: opendir(10.5): failed to open dir: %s in %s on line %d
149 Warning: opendir(-10.5): failed to open dir: %s in %s on line %d
154 Warning: opendir(123456789000): failed to open dir: %s in %s on line %d
164 Warning: opendir(0.5): failed to open dir: %s in %s on line %d
175 Warning: opendir(1): failed to open dir: %s in %s on line %d
183 Warning: opendir(1): failed to open dir: %s in %s on line %d
[all …]
H A Dscandir_variation1.phpt107 Warning: scandir(0): failed to open dir: %s in %s on line %d
114 Warning: scandir(1): failed to open dir: %s in %s on line %d
121 Warning: scandir(12345): failed to open dir: %s in %s on line %d
128 Warning: scandir(-2345): failed to open dir: %s in %s on line %d
135 Warning: scandir(10.5): failed to open dir: %s in %s on line %d
142 Warning: scandir(-10.5): failed to open dir: %s in %s on line %d
163 Warning: scandir(0.5): failed to open dir: %s in %s on line %d
180 Warning: scandir(1): failed to open dir: %s in %s on line %d
192 Warning: scandir(1): failed to open dir: %s in %s on line %d
219 Warning: scandir(string): failed to open dir: %s in %s on line %d
[all …]
/PHP-5.5/ext/imap/tests/
H A Dimap_errors_basic.phpt18 echo "Issue open with invalid password with normal default number of retries, i.e 3\n";
24 echo "\n\nIssue open with invalid password with retries == 1\n";
33 Issue open with invalid password with normal default number of retries, i.e 3
35 Warning: imap_open(): Couldn't open stream %s in %s on line %d
47 Issue open with invalid password with retries == 1
49 Warning: imap_open(): Couldn't open stream %s in %s on line %d
/PHP-5.5/ext/xmlreader/tests/
H A D002.phpt14 if ($reader->open('')) exit();
17 if (!$reader->open($filename)) {
30 $reader->open($filename);
38 Warning: XMLReader::open(): Empty string supplied as input in %s on line %d
/PHP-5.5/ext/phar/tests/
H A Dtest_alias_unset.phpt20 $phar2->setAlias('first'); // this works because there are no references to $fname open
24 … = fopen($pname . '/file1.txt', 'r'); // this works because there are no references to $fname2 open
26 $phar2 = new Phar($fname2); // fails because references open to $fname
41 Cannot open archive "%stest_alias_unset.2.phar.php", alias is already in use by existing archive
44 Warning: file_get_contents(phar://%sfile1.txt): failed to open stream: Cannot open archive "%stest_…
H A Dcreate_path_error.phpt70 1:Error: file_put_contents(phar://%s//): failed to open stream: phar error: file "" in phar "%s" ca…
71 2:Error: file_put_contents(phar://%s/.): failed to open stream: phar error: file "" in phar "%s" ca…
72 3:Error: file_put_contents(phar://%s/../): failed to open stream: phar error: file "" in phar "%s" …
73 4:Error: file_put_contents(phar://%s/a/..): failed to open stream: phar error: file "" in phar "%s"…
78 9:Error: file_put_contents(phar:///%s): failed to open stream: phar error: invalid path "%s" contai…
79 10:Error: file_put_contents(phar:///%s): failed to open stream: phar error: invalid path "%s" conta…
80 11:Error: file_put_contents(phar:///%s): failed to open stream: phar error: invalid path "%s" conta…
81 12:Error: file_put_contents(phar:///%s): failed to open stream: phar error: invalid path "%s" conta…
82 13:Error: file_put_contents(phar:///%s): failed to open stream: phar error: invalid path "%s" conta…
/PHP-5.5/ext/fileinfo/tests/
H A Dfinfo_open_001.phpt22 Warning: finfo_open(%s123): failed to open stream: No such file or directory in %s on line %d
24 Warning: finfo_open(%s123): failed to open stream: No such file or directory in %s on line %d
29 Warning: finfo_open(%s1): failed to open stream: No such file or directory in %s on line %d
31 Warning: finfo_open(%s1): failed to open stream: No such file or directory in %s on line %d
36 Warning: finfo_open(%sinexistent): failed to open stream: No such file or directory in %s on line %d
38 Warning: finfo_open(%sinexistent): failed to open stream: No such file or directory in %s on line %d
/PHP-5.5/tests/security/
H A Dopen_basedir_copy.phpt38 Warning: copy(../bad): failed to open stream: %s in %s on line %d
43 Warning: copy(../bad/bad.txt): failed to open stream: %s in %s on line %d
48 Warning: copy(..): failed to open stream: %s in %s on line %d
53 Warning: copy(../): failed to open stream: %s in %s on line %d
58 Warning: copy(/): failed to open stream: %s in %s on line %d
63 Warning: copy(../bad/.): failed to open stream: %s in %s on line %d
68 Warning: copy(../bad/./bad.txt): failed to open stream: %s in %s on line %d
73 Warning: copy(./../.): failed to open stream: %s in %s on line %d
H A Dopen_basedir_opendir.phpt32 Warning: opendir(../bad): failed to open dir: %s in %s on line %d
37 Warning: opendir(../bad/bad.txt): failed to open dir: %s in %s on line %d
42 Warning: opendir(..): failed to open dir: %s in %s on line %d
47 Warning: opendir(../): failed to open dir: %s in %s on line %d
52 Warning: opendir(/): failed to open dir: %s in %s on line %d
57 Warning: opendir(../bad/.): failed to open dir: %s in %s on line %d
62 Warning: opendir(%s/test/bad/bad.txt): failed to open dir: %s in %s on line %d
67 Warning: opendir(%s/test/bad/../bad/bad.txt): failed to open dir: %s in %s on line %d
/PHP-5.5/ext/standard/tests/file/
H A Dphp_fd_wrapper_03.phpt14 Warning: fopen(php://fd): failed to open stream: operation failed in %s on line 2
16 Warning: fopen(php://fd/): failed to open stream: php://fd/ stream must be specified in the form ph…
18 Warning: fopen(php://fd/-2): failed to open stream: The file descriptors must be non-negative numbe…
20 Warning: fopen(php://fd/1/): failed to open stream: php://fd/ stream must be specified in the form …

Completed in 54 milliseconds

12345678910>>...28