Searched refs:escapeshellarg (Results 1 – 23 of 23) sorted by relevance
2 Test escapeshellarg() function : error conditions - wrong numbers of parameters6 /* Prototype : string escapeshellarg ( string $arg )15 echo "*** Testing escapeshellarg() : error conditions ***\n";18 echo "\n-- Testing escapeshellarg() function with no arguments --\n";19 var_dump( escapeshellarg() );24 var_dump( escapeshellarg($arg, $extra_arg) );33 var_dump( escapeshellarg($arg));37 var_dump( escapeshellarg($fp));42 var_dump( escapeshellarg($arg));47 *** Testing escapeshellarg() : error conditions ***[all …]
2 Test escapeshellarg() function: basic test10 /* Prototype : string escapeshellarg ( string $arg )16 echo "Simple testcase for escapeshellarg() function\n";18 var_dump(escapeshellarg("Mr O'Neil"));19 var_dump(escapeshellarg("Mr O\'Neil"));20 var_dump(escapeshellarg("%FILENAME"));21 var_dump(escapeshellarg("!FILENAME"));22 var_dump(escapeshellarg(""));27 Simple testcase for escapeshellarg() function
2 Test escapeshellarg() function: basic test with UTF-8 strings10 /* Prototype : string escapeshellarg ( string $arg )16 echo "Simple testcase for escapeshellarg() function\n";18 var_dump(escapeshellarg("テストマルチバイ'ト・パス"));19 var_dump(escapeshellarg("測試多字\'節路徑"));20 var_dump(escapeshellarg("%füße"));21 var_dump(escapeshellarg("!шницель"));26 Simple testcase for escapeshellarg() function
2 Test escapeshellarg() function: basic test10 /* Prototype : string escapeshellarg ( string $arg )16 echo "Simple testcase for escapeshellarg() function\n";18 var_dump(escapeshellarg("Mr O'Neil"));19 var_dump(escapeshellarg("Mr O\'Neil"));20 var_dump(escapeshellarg("%FILENAME"));21 var_dump(escapeshellarg(""));26 Simple testcase for escapeshellarg() function
2 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);
2 Test escapeshellarg() string with \0 bytes5 escapeshellarg("hello\0world");10 Fatal error: escapeshellarg(): Input string contains NULL bytes in %s on line %d
2 Test escapeshellarg() allowed argument length7 escapeshellarg($var_2);12 Fatal error: escapeshellarg(): Argument exceeds the allowed length of %d bytes in %s on line %d
2 Test escapeshellarg() function : usage variations - different data types as $arg arg11 /* Prototype : string escapeshellarg ( string $arg )16 echo "*** Testing escapeshellarg() : usage variations ***\n";69 // loop through each element of $inputs to check the behaviour of escapeshellarg()73 var_dump(escapeshellarg($input));79 *** Testing escapeshellarg() : usage variations ***
2 Test escapeshellarg() function : usage variations - different data types as $y arg11 /* Prototype : string escapeshellarg ( string $arg )16 echo "*** Testing escapeshellarg() : usage variations ***\n";69 // loop through each element of $inputs to check the behaviour of escapeshellarg()73 var_dump(escapeshellarg($input));79 *** Testing escapeshellarg() : usage variations ***
2 Bug #44564 (escapeshellarg removes UTF-8 multi-byte characters)13 var_dump(escapeshellarg('f~|;*Þ?'));15 var_dump(escapeshellarg('aŊł€'));
27 $proc = proc_open("$php -n " . escapeshellarg($test_file), $desc, $pipes);
56 $code = escapeshellarg($code);
27 PHP_FUNCTION(escapeshellarg);
501 PHP_FUNCTION(escapeshellarg) in PHP_FUNCTION() argument
2860 PHP_FE(escapeshellarg, arginfo_escapeshellarg)
16 exec('lsof -p ' . escapeshellarg(getmypid()) . ' 2> /dev/null', $out);
31 passthru( "$php -n -q " . escapeshellarg( $test_file ) );
18 $cmd .= ' -n -dreport_zend_debug=0 -dhtml_errors=0 ' . escapeshellarg($GLOBALS['f']);
23 passthru("rm -f " . escapeshellarg(__FILE__ . "_link1"));
46 $pass_options .= " -d ".escapeshellarg($argv[++$i]);
55 …exec(get_icacls() . ' ' . __DIR__ . ' /setowner ' . escapeshellarg($user) . ' /T /L /Q /C > nul 2>…
821 $pass_options .= " -c " . escapeshellarg($conf_passed);
Completed in 52 milliseconds