/PHP-7.4/Zend/tests/ |
H A D | bug64677.phpt | 5 class cat { 9 $cat = new cat(); 10 $cat->show_output('Files: ', trim(`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
|
/PHP-7.4/ext/standard/tests/general_functions/ |
H A D | proc_open.phpt | 5 if (!is_executable("/bin/cat")) echo "skip"; 16 $cat = proc_open( 17 "/bin/cat", 22 proc_close($cat);
|
H A D | proc_open02.phpt | 12 $cat = proc_open( 20 var_dump(proc_terminate($cat, 0)); // status check 22 var_dump(proc_get_status($cat)); 24 var_dump(proc_terminate($cat)); // now really quit it 26 var_dump(proc_get_status($cat)); 28 proc_close($cat);
|
H A D | bug34794.phpt | 5 if (!is_executable('/bin/cat')) echo 'skip cat not found'; 10 $process1 = proc_open('/bin/cat', array(0 => array('pipe', 'r'), 1 =>array('pipe', 'r')), $pipes1); 13 $process2 = proc_open('/bin/cat', array(0 => array('pipe', 'r'), 1 =>array('pipe', 'r')), $pipes2);
|
H A D | bug44667.phpt | 4 <?php if (!is_executable('/bin/cat')) echo 'skip cat not found'; ?> 15 $proc = proc_open('cat', $descriptor_spec, $pipes);
|
/PHP-7.4/sapi/fpm/ |
H A D | init.d.php-fpm.in | 82 kill -QUIT `cat $php_fpm_PID` 100 PID=`cat $php_fpm_PID` 116 kill -TERM `cat $php_fpm_PID` 142 kill -USR2 `cat $php_fpm_PID`
|
/PHP-7.4/ext/session/tests/ |
H A D | session_start_variation6.phpt | 21 $_SESSION['animal'] = 'cat'; 41 string(3) "cat" 52 string(3) "cat" 62 string(3) "cat"
|
H A D | session_start_variation5.phpt | 21 $_SESSION['animal'] = 'cat'; 40 string(3) "cat" 51 string(3) "cat"
|
H A D | session_start_variation7.phpt | 21 $_SESSION['animal'] = 'cat'; 41 string(3) "cat" 52 string(3) "cat"
|
/PHP-7.4/scripts/ |
H A D | phpize.in | 78 cat <<EOF 87 cat <<EOF 96 cat <<EOF 109 cat <<EOF 126 cat <<EOF 134 cat <<EOF
|
/PHP-7.4/sapi/cli/tests/ |
H A D | 013.phpt | 18 var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");'`); 19 var_dump(`cat "$filename_txt" | "$php" -n -E 'var_dump("end");'`); 20 var_dump(`cat "$filename_txt" | "$php" -n -B 'var_dump("start");' -E 'var_dump("end");'`);
|
H A D | 010-2.phpt | 24 var_dump(`cat "$filename_txt" | "$php" -n -R "var_dump(1);"`);
|
H A D | 010.phpt | 32 var_dump(`cat "$filename_txt" | "$php" -n -F "$filename"`);
|
H A D | bug71624.phpt | 26 var_dump(`cat "$filename_txt" | "$php" -n -R 'echo $test_arg . PHP_EOL;'`);
|
/PHP-7.4/ext/com_dotnet/tests/ |
H A D | variants.phpt | 48 cat: 4242 62 cat: 423.5 80 cat: 42hello 138 cat: 42False 164 cat: 3.542 178 cat: 3.53.5 196 cat: 3.5hello 254 cat: 3.5False 284 cat: hello42 346 cat: hello3.5 [all …]
|
H A D | variants_x64.phpt | 51 cat: 4242 65 cat: 423.5 83 cat: 42hello 141 cat: 42False 167 cat: 3.542 181 cat: 3.53.5 199 cat: 3.5hello 257 cat: 3.5False 287 cat: hello42 349 cat: hello3.5 [all …]
|
/PHP-7.4/build/ |
H A D | genif.sh | 48 cat $template | \
|
/PHP-7.4/ext/standard/tests/file/ |
H A D | popen_pclose_basic.phpt | 32 echo "-- Testing popen(): reading from a file using 'cat' command --\n"; 35 $command = "cat $filename"; 77 -- Testing popen(): reading from a file using 'cat' command --
|
/PHP-7.4/ext/phar/tests/ |
H A D | bug65028.phpt | 72 "modules/cat/select/catCategorySelect.php", 73 "modules/cat/misc/catCategory.php", 74 "modules/cat/templates/pages/forms/catCategoryForm.tpl", 75 "modules/cat/pages/forms/catEditCategoryForm.php", 76 "modules/cat/pages/forms/catAddCategoryForm.php", 77 "modules/cat/setup/config.xml",
|
/PHP-7.4/scripts/dev/ |
H A D | gen_verify_stub | 46 cat $TARBALL.asc
|
/PHP-7.4/ext/standard/tests/misc/ |
H A D | time_nanosleep_error3.phpt | 8 Àlex Corretgé - alex@corretge.cat
|
H A D | time_nanosleep_error5.phpt | 6 Àlex Corretgé - alex@corretge.cat
|
H A D | time_nanosleep_error4.phpt | 9 Àlex Corretgé - alex@corretge.cat
|
/PHP-7.4/ext/fileinfo/libmagic/ |
H A D | readcdf.c | 260 cdf_catalog_t *cat; in cdf_file_catalog() local 268 if (cdf_unpack_catalog(h, sst, &cat) == -1) in cdf_file_catalog() 270 ce = cat->cat_e; in cdf_file_catalog() 272 for (i = 1; i < cat->cat_num; i++) in cdf_file_catalog() 275 i == cat->cat_num - 1 ? "]" : ", ") == -1) { in cdf_file_catalog() 276 efree(cat); in cdf_file_catalog() 279 efree(cat); in cdf_file_catalog()
|
/PHP-7.4/ext/mbstring/tests/ |
H A D | bug52681.phpt | 13 sendmail_path=/bin/cat
|