Home
last modified time | relevance | path

Searched refs:st (Results 51 – 75 of 174) sorted by relevance

1234567

/PHP-8.1/ext/standard/tests/dir/
H A Dscandir_variation5.phpt14 * 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 Ddir_variation7.phpt14 * 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 Dopendir_variation5.phpt14 * 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 Dchunk_split_basic.phpt37 string(15) "Te##st##in##g##"
40 st
H A Dchunk_split_variation7.phpt57 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 Dstrtr_basic.phpt7 $trans1_arr = array("t" => "T", "e" => "E", "st" => "ST");
8 $trans2_arr = array('t' => 'T', 'e' => 'E', 'st' => 'ST');
H A Dchunk_split_variation11.phpt47 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 Dstristr.phpt10 var_dump(md5(stristr("te".chr(0)."st", chr(0))));
H A Dstr_contains.phpt10 var_dump(str_contains("te".chr(0)."st", chr(0)));
H A Dchunk_split_variation6.phpt51 string(35) "It's st):(ring wi):(th quot):(es):("
55 string(59) "This st):(ring\tc):(ontains):(\rwhite):( space\):(nchars):("
H A Dstrrpos.phpt10 var_dump(strrpos("te".chr(0)."st", chr(0)));
H A Dstrripos.phpt10 var_dump(strripos("te".chr(0)."st", chr(0)));
/PHP-8.1/ext/oci8/tests/
H A Dfetch_object_1.phpt20 "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 Dfetch_object.phpt20 "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 Dfetch_object_2.phpt20 "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 Ddasm_arm64.h159 #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 Ddasm_x86.h158 #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 Dbug55305.phpt2 Bug #55305 (ref lost: 1st ref instantiated in class def, 2nd ref made w/o instantiating)
/PHP-8.1/ext/standard/
H A Dphp_fopen_wrapper.c395 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 Dhrtime.c145 int st = snprintf(s, len, "%llu", i); \
146 s[st] = '\0'; \
/PHP-8.1/ext/spl/tests/
H A DSplDoublyLinkedList_offsetGet_param_array.phpt2 SplDoublyLinkedList::offsetGet() with 1st parameter passed as array.
H A DSplDoublyLinkedList_offsetGet_param_string.phpt2 SplDoublyLinkedList::offsetGet() with 1st parameter passed as string.
/PHP-8.1/ext/standard/tests/streams/
H A Dbug48309.phpt30 string(2) "st"
/PHP-8.1/ext/reflection/tests/
H A Dbug40431.phpt6 echo "=== 1st test ===\n";
80 === 1st test ===
/PHP-8.1/ext/fileinfo/
H A Dlibmagic.patch412 - 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 …]

Completed in 41 milliseconds

1234567