testsafeshellstring.php.svn-base

来自「PHP 知识管理系统(基于树结构的知识管理系统), 英文原版的PHP源码。」· SVN-BASE 代码 · 共 35 行

SVN-BASE
35
字号
<?phprequire_once("../../../config/dmsDefaults.php");require_once(KT_LIB_DIR . "/util/ktutil.inc");$aSource = array(    array('unzip', "-q", "-j", "-n", "-d", '/tmp', '5 July 2005 Pricelist - Rectron(cpt).zip'),    array('unzip', "-q", "-j", "-n", "-d", '/tmp', "5'th July 2005 Pricelist - Rectron(cpt).zip"),    array('echo', ''),    array('echo', ' '),);$aExpectedResults = array(  "'unzip' '-q' '-j' '-n' '-d' '/tmp' '5 July 2005 Pricelist - Rectron(cpt).zip'",  "'unzip' '-q' '-j' '-n' '-d' '/tmp' '5'\''th July 2005 Pricelist - Rectron(cpt).zip'",  "'echo' ''",  "'echo' ' '",);$aResults = array();foreach ($aSource as $aArgs) {    $aResults[] = KTUtil::safeShellString($aArgs);}if ($aResults === $aExpectedResults) {    print "Success!\n";} else {    print "Failure!\n";    print "Received: " . print_r($aResults, true) . "\n";    print "Expected: " . print_r($aExpectedResults, true) . "\n";}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?