由於某種原因,當通過apache調用下面的php腳本時,沒有返回結果...在php.ini中是否有系統安全設置允許系統命令?php無法執行系統命令
<div style="background:#000;color:#fff">
<?php
$cmd = "/bin/date";
$output = system($cmd);
printf("System Output: $output\n");
exec($cmd, $results);
printf("Exec Output: {$results[0]}\n");
echo"<pre>";
echo system('/bin/ls');
echo"</pre>";
?>
</div>
我檢查了php.ini,disable_functions =是空白。 – Cmag
什麼不返回? 'system'或'exec'或兩者兼而有之? – hakre
既不.....系統也在plesk上...... :) – Cmag