/PHP-8.4/Zend/tests/ |
H A D | bug64677.phpt | 10 $cat->show_output('Files: ', trim((string) `cd .`)); // this gives invalid args to shell_exec 11 $cat->show_output('Files: ', `cd .`); // this causes a segmentation fault 12 $cat->show_output(`cd .`); // this causes a segmentation fault 17 show_outputa('Files: ', `cd .`); // this works as expected
|
H A D | foreach_list_001.phpt | 39 string(2) "cd"
|
/PHP-8.4/ext/reflection/tests/ |
H A D | bug43926.phpt | 24 $cd = $rd->newInstance(); 37 print("Is? A ". ($ra->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof A) ? … 38 print("Is? C ". ($rc->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof C) ? … 39 print("Is? D ". ($rd->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof D) ? … 40 print("Is? E ". ($re->isInstance($cd) ? 'true' : 'false') .", instanceof: ". (($cd instanceof E) ? …
|
/PHP-8.4/ext/standard/tests/strings/ |
H A D | bug45166.phpt | 5 echo substr('cd', -3) . "\n"; 8 cd
|
H A D | substr_compare.phpt | 12 var_dump(substr_compare("abcde", "cd", 1, 2) < 0);
|
/PHP-8.4/ext/iconv/ |
H A D | config.m4 | 67 iconv_t cd; 68 cd = iconv_open( "*blahblah*", "*blahblahblah*" ); 69 if (cd == (iconv_t)(-1)) { 76 iconv_close( cd ); 92 iconv_t cd = iconv_open( "UTF-8//IGNORE", "UTF-8" ); 93 if(cd == (iconv_t)-1) { 100 size_t result = iconv(cd, (char **) &in_p, &in_left, (char **) &out_p, &out_left);
|
H A D | iconv.c | 439 iconv_t cd; in php_iconv_string() local 516 iconv_close(cd); in php_iconv_string() 553 iconv_t cd; in _php_iconv_strlen() local 614 iconv_close(cd); in _php_iconv_strlen() 762 iconv_t cd; in _php_iconv_strpos() local 892 iconv_close(cd); in _php_iconv_strpos() 1177 iconv_close(cd); in _php_iconv_mime_encode() 1349 iconv_close(cd); in _php_iconv_mime_decode() 1734 iconv_close(cd); in _php_iconv_mime_decode() 2296 iconv_t cd; member [all …]
|
/PHP-8.4/tests/basic/ |
H A D | 011.phpt | 6 ab+cd+ef+123+test 19 1: cd
|
H A D | 012.phpt | 7 ab cd ef 123 test 20 1: cd
|
/PHP-8.4/ext/standard/tests/file/ |
H A D | bug41874.phpt | 9 $result = exec('cd 1:\non_existent; dir nonexistent'); 11 system('cd 1:\non_existent; dir nonexistent');
|
H A D | bug41874_3.phpt | 13 system('cd 1:\\non_existent; dir nonexistent');
|
H A D | bug41874_2.phpt | 13 $result = exec('cd 1:\\non_existent; dir nonexistent');
|
/PHP-8.4/ext/standard/ |
H A D | Makefile.frag.w32 | 2 cd $(PHP_SRC_DIR) 6 cd $(PHP_SRC_DIR)
|
/PHP-8.4/ext/pcre/tests/ |
H A D | bug21732.phpt | 17 var_dump(preg_replace_callback("/(ab)(cd)(e)/", array(new foo(), "cb"), 'abcde')); 27 string(2) "cd"
|
/PHP-8.4/ext/pdo/ |
H A D | Makefile.frag.w32 | 2 cd $(PHP_SRC_DIR)
|
/PHP-8.4/ext/pdo_mysql/ |
H A D | Makefile.frag.w32 | 2 cd $(PHP_SRC_DIR)
|
/PHP-8.4/ext/pdo_pgsql/ |
H A D | Makefile.frag.w32 | 2 cd $(PHP_SRC_DIR)
|
/PHP-8.4/ext/pdo_sqlite/ |
H A D | Makefile.frag.w32 | 2 cd $(PHP_SRC_DIR)
|
/PHP-8.4/ext/phar/ |
H A D | Makefile.frag.w32 | 2 cd $(PHP_SRC_DIR)
|
/PHP-8.4/ext/standard/tests/array/ |
H A D | array_keys_variation_001.phpt | 18 array("a" => "abcd", "a" => "", "ab" => -6, "cd" => -0.5 ), 133 string(2) "cd"
|
/PHP-8.4/ext/xsl/tests/53965/ |
H A D | include.xsl | 2 <xsl:template match="cd"> matchedTemplate
|
/PHP-8.4/ext/com_dotnet/tests/ |
H A D | bug63208.phpt | 7 $string = "\u{0905}b\0cd";
|
/PHP-8.4/ext/opcache/tests/jit/ |
H A D | identical_001.phpt | 21 var_dump(foo("ab", "cd"));
|
/PHP-8.4/main/ |
H A D | rfc1867.c | 781 char *cd = NULL, *param = NULL, *filename = NULL, *tmp = NULL; local 791 if ((cd = php_mime_get_hdr_value(header, "Content-Disposition"))) { 800 while (isspace(*cd)) { 801 ++cd; 804 while (*cd && (pair = getword(mbuff->input_encoding, &cd, ';'))) 808 while (isspace(*cd)) { 809 ++cd; 1168 if (cancel_upload || !(cd = php_mime_get_hdr_value(header, "Content-Type"))) { 1169 cd = ""; 1172 s = strchr(cd, ';'); [all …]
|
/PHP-8.4/ext/gd/libgd/ |
H A D | gdkanji.c | 344 iconv_t cd; in do_convert() local 347 if ((cd = iconv_open (EUCSTR, code)) == (iconv_t) - 1) in do_convert() 360 if ((int) iconv(cd, (char **) &from, &from_len, (char **) &to, &to_len) == -1) in do_convert() 374 if (iconv_close (cd) != 0) in do_convert()
|