Home
last modified time | relevance | path

Searched refs:escapeshellarg (Results 1 – 23 of 23) sorted by relevance

/PHP-8.0/ext/standard/tests/general_functions/
H A Descapeshellarg_basic-win32.phpt2 Test escapeshellarg() function: basic test
10 echo "Simple testcase for escapeshellarg() function\n";
12 var_dump(escapeshellarg("Mr O'Neil"));
13 var_dump(escapeshellarg("Mr O\'Neil"));
14 var_dump(escapeshellarg("%FILENAME"));
15 var_dump(escapeshellarg("!FILENAME"));
16 var_dump(escapeshellarg(""));
21 Simple testcase for escapeshellarg() function
H A Descapeshellarg_basic-win32-mb.phpt2 Test escapeshellarg() function: basic test with UTF-8 strings
10 echo "Simple testcase for escapeshellarg() function\n";
12 var_dump(escapeshellarg("テストマルチバイ'ト・パス"));
13 var_dump(escapeshellarg("測試多字\'節路徑"));
14 var_dump(escapeshellarg("%füße"));
15 var_dump(escapeshellarg("!шницель"));
20 Simple testcase for escapeshellarg() function
H A Descapeshellarg_basic.phpt2 Test escapeshellarg() function: basic test
10 echo "Simple testcase for escapeshellarg() function\n";
12 var_dump(escapeshellarg("Mr O'Neil"));
13 var_dump(escapeshellarg("Mr O\'Neil"));
14 var_dump(escapeshellarg("%FILENAME"));
15 var_dump(escapeshellarg(""));
20 Simple testcase for escapeshellarg() function
H A Descapeshellarg_bug71039.phpt2 Test escapeshellarg() string with \0 bytes
5 escapeshellarg("hello\0world");
10 Fatal error: Uncaught ValueError: escapeshellarg(): Argument #1 ($arg) must not contain any null by…
12 #0 %s(%d): escapeshellarg('hello\x00world')
H A Dbug69646.phpt2 Bug #69646 OS command injection vulnerability in escapeshellarg()
13 var_dump( $a, escapeshellarg($a) );
14 var_dump( $b, escapeshellarg($b) );
27 $cmd = PHP_BINARY . " " . $script . " " . escapeshellarg($a) . " " . escapeshellarg($b);
H A Descapeshellarg_bug71270.phpt2 Test escapeshellarg() allowed argument length
7 escapeshellarg($var_2);
12 Fatal error: escapeshellarg(): Argument exceeds the allowed length of %d bytes in %s on line %d
H A Descapeshellarg_variation1-win32.phpt2 Test escapeshellarg() function : usage variations - different data types as $arg arg
11 echo "*** Testing escapeshellarg() : usage variations ***\n";
64 // loop through each element of $inputs to check the behaviour of escapeshellarg()
68 var_dump(escapeshellarg($input));
73 *** Testing escapeshellarg() : usage variations ***
H A Descapeshellarg_variation1.phpt2 Test escapeshellarg() function : usage variations - different data types as $y arg
11 echo "*** Testing escapeshellarg() : usage variations ***\n";
64 // loop through each element of $inputs to check the behaviour of escapeshellarg()
68 var_dump(escapeshellarg($input));
73 *** Testing escapeshellarg() : usage variations ***
/PHP-8.0/sapi/cli/tests/
H A Dbug44564.phpt2 Bug #44564 (escapeshellarg removes UTF-8 multi-byte characters)
13 var_dump(escapeshellarg('f~|;*Þ?'));
15 var_dump(escapeshellarg('aŊł€'));
H A D022.phpt27 $proc = proc_open("$php -n " . escapeshellarg($test_file), $desc, $pipes);
H A D017.phpt56 $code = escapeshellarg($code);
H A D016.phpt56 $code = escapeshellarg($code);
/PHP-8.0/ext/standard/tests/file/
H A Dbug81145.phpt11 exec("fallocate -l " . (SIZE_4G-0x100) . " " . escapeshellarg($src), $output, $status);
24 exec("fallocate -l " . (SIZE_4G-0x100) . " " . escapeshellarg($src));
26 exec("fsutil file createnew " . escapeshellarg($src) . " " . (SIZE_4G-0x100));
H A Dclearstatcache_001.phpt23 passthru("rm -f " . escapeshellarg(__FILE__ . "_link1"));
/PHP-8.0/sapi/cgi/tests/
H A Dapache_response_headers.phpt31 passthru( "$php -n -q " . escapeshellarg( $test_file ) );
H A D011.phpt18 $cmd .= ' -n -dreport_zend_debug=0 -dhtml_errors=0 ' . escapeshellarg($GLOBALS['f']);
/PHP-8.0/ext/phar/tests/tar/
H A Dbug70417.phpt19 …exec('lsof -p ' . escapeshellarg(getmypid()) . ' 2> /dev/null', $out); // Note: valgrind can prod…
/PHP-8.0/sapi/phpdbg/
H A Dcreate-test.php44 $pass_options .= " -d ".escapeshellarg($argv[++$i]);
/PHP-8.0/ext/standard/tests/file/windows_acls/
H A Dcommon.inc60 …exec(get_icacls() . ' ' . __DIR__ . ' /setowner ' . escapeshellarg($user) . ' /T /L /Q /C > nul 2>…
/PHP-8.0/ext/standard/
H A Dexec.c494 PHP_FUNCTION(escapeshellarg) in PHP_FUNCTION() argument
H A Dbasic_functions.stub.php743 function escapeshellarg(string $arg): string {} function
H A Dbasic_functions_arginfo.h2534 ZEND_FUNCTION(escapeshellarg);
3171 ZEND_FE(escapeshellarg, arginfo_escapeshellarg)
/PHP-8.0/
H A Drun-tests.php703 $pass_options .= " -c " . escapeshellarg($conf_passed);
1470 $thisPHP . ' ' . escapeshellarg($thisScript),
2794 $env_lines[] = "export $env_var=" . escapeshellarg($env_val ?? "");

Completed in 59 milliseconds