/PHP-8.1/ext/standard/tests/dir/ |
H A D | scandir_variation5.phpt | 14 * 1. remove write & execute permission from the 1st parent and test scandir() 43 echo "\n-- After restricting 1st level parent directory --\n"; 71 -- After restricting 1st level parent directory --
|
H A D | dir_variation7.phpt | 14 * 1) remove write & execute permission from the 1st parent and test dir() 41 echo "-- After restricting 1st level parent directory --\n"; 72 -- After restricting 1st level parent directory --
|
H A D | opendir_variation5.phpt | 14 * 1) remove write & execute permission from the 1st parent and test opendir() 42 echo "\n-- After restricting 1st level parent directory --\n"; 79 -- After restricting 1st level parent directory --
|
/PHP-8.1/ext/standard/tests/strings/ |
H A D | chunk_split_basic.phpt | 37 string(15) "Te##st##in##g##" 40 st
|
H A D | chunk_split_variation7.phpt | 57 string(60) "This ????is st????ring ????with ????1234 ????numbe????rs????" 59 string(69) "This ????is st????ring ????with ????%0 and???? %0nul????l cha????rs????" 61 string(90) "This ????is st????ring ????with ???? mu????ltipl????e ???? ????space???? char?…
|
H A D | strtr_basic.phpt | 7 $trans1_arr = array("t" => "T", "e" => "E", "st" => "ST"); 8 $trans2_arr = array('t' => 'T', 'e' => 'E', 'st' => 'ST');
|
H A D | chunk_split_variation11.phpt | 47 string(132) "This i s here doc st ring w ith and 61 doc st 86 string(398) "This i)speci@! ch@r$(s here)speci@! ch@r$(doc st)speci@! ch@r$(ring w)speci@! ch@r$(it…
|
H A D | stristr.phpt | 10 var_dump(md5(stristr("te".chr(0)."st", chr(0))));
|
H A D | str_contains.phpt | 10 var_dump(str_contains("te".chr(0)."st", chr(0)));
|
H A D | chunk_split_variation6.phpt | 51 string(35) "It's st):(ring wi):(th quot):(es):(" 55 string(59) "This st):(ring\tc):(ontains):(\rwhite):( space\):(nchars):("
|
H A D | strrpos.phpt | 10 var_dump(strrpos("te".chr(0)."st", chr(0)));
|
H A D | strripos.phpt | 10 var_dump(strripos("te".chr(0)."st", chr(0)));
|
/PHP-8.1/ext/oci8/tests/ |
H A D | fetch_object_1.phpt | 20 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')", 88 string(19) "1st row col2 string" 110 1st row col2 string
|
H A D | fetch_object.phpt | 20 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')", 88 string(19) "1st row col2 string" 110 1st row col2 string
|
H A D | fetch_object_2.phpt | 20 "insert into fetch_object_2_tab values (123, '1st row col2 string', '1 more text')", 105 1st row col2 string
|
/PHP-8.1/ext/opcache/jit/dynasm/ |
H A D | dasm_arm64.h | 159 #define CK(x, st) \ argument 161 D->status = DASM_S_##st|(p-D->actionlist-1); return; } } while (0) 162 #define CKPL(kind, st) \ argument 164 D->status = DASM_S_RANGE_##st|(p-D->actionlist-1); return; } } while (0) 166 #define CK(x, st) ((void)0) argument 167 #define CKPL(kind, st) ((void)0) argument 417 #define CK(x, st) \ argument 418 do { if (!(x)) return DASM_S_##st|(p-D->actionlist-1); } while (0) 420 #define CK(x, st) ((void)0) argument
|
H A D | dasm_x86.h | 158 #define CK(x, st) \ argument 160 D->status = DASM_S_##st|(int)(p-D->actionlist-1); return; } } while (0) 161 #define CKPL(kind, st) \ argument 163 D->status=DASM_S_RANGE_##st|(int)(p-D->actionlist-1); return; } } while (0) 165 #define CK(x, st) ((void)0) argument 166 #define CKPL(kind, st) ((void)0) argument
|
/PHP-8.1/Zend/tests/ |
H A D | bug55305.phpt | 2 Bug #55305 (ref lost: 1st ref instantiated in class def, 2nd ref made w/o instantiating)
|
/PHP-8.1/ext/standard/ |
H A D | php_fopen_wrapper.c | 395 zend_stat_t st; in php_stream_url_wrap_php() local 396 memset(&st, 0, sizeof(st)); in php_stream_url_wrap_php() 397 if (zend_fstat(fd, &st) == 0 && (st.st_mode & S_IFMT) == S_IFSOCK) { in php_stream_url_wrap_php()
|
H A D | hrtime.c | 145 int st = snprintf(s, len, "%llu", i); \ 146 s[st] = '\0'; \
|
/PHP-8.1/ext/spl/tests/ |
H A D | SplDoublyLinkedList_offsetGet_param_array.phpt | 2 SplDoublyLinkedList::offsetGet() with 1st parameter passed as array.
|
H A D | SplDoublyLinkedList_offsetGet_param_string.phpt | 2 SplDoublyLinkedList::offsetGet() with 1st parameter passed as string.
|
/PHP-8.1/ext/standard/tests/streams/ |
H A D | bug48309.phpt | 30 string(2) "st"
|
/PHP-8.1/ext/reflection/tests/ |
H A D | bug40431.phpt | 6 echo "=== 1st test ===\n"; 80 === 1st test ===
|
/PHP-8.1/ext/fileinfo/ |
H A D | libmagic.patch | 412 - struct stat st; 414 + zend_stat_t st; 436 - if (stat(fn, &st) == 0 && S_ISDIR(st.st_mode)) { 440 + if (php_sys_stat(fn, &st) == 0 && S_ISDIR(st.st_mode)) { 463 - if (stat(mfn, &st) == -1 || !S_ISREG(st.st_mode)) { 465 + if (zend_stat(mfn, &st) == -1 || !S_ISREG(st.st_mode)) { 681 - if (st.st_size < 8 || st.st_size > maxoff_t()) { 683 + if (st.sb.st_size < 8 || st.sb.st_size > maxoff_t()) { 981 if (st) 982 memcpy(&b->st, st, sizeof(b->st)); [all …]
|