<?php $shell = 'ls'; system($shell); 實例2 <?php $shell = 'ls'; system($shell, $s); echo $s //返回執行狀態, 成功則返回 0, 不成功則返回127
<?php $shell = "awk -F '{print $1,$3,$4,$6,$7}' /etc/passwd"; exec($shell, $arr); print_r($arr);