php中执行系统命令的方法,php执行系统命令
本文实例讲述了php中执行系统命令的方法。分享给大家供大家参考。具体分析如下:
在php中执行系统命令,如LS
<?php // exec.php
$cmd = "dir"; // Windows
// $cmd = "ls"; // Linux, Unix & Mac
exec(escapeshellcmd($cmd), $output, $status);
if ($status) echo "Exec command failed";
else
{
echo "<b>";
foreach($output as $line) echo "$linen";
}
?>
希望本文所述对大家的php程序设计有所帮助。
http://www.bkjia.com/PHPjc/970975.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/970975.htmlTechArticlephp中执行系统命令的方法,php执行系统命令 本文实例讲述了php中执行系统命令的方法。分享给大家供大家参考。具体分析如下: 在php中执...
Stellungnahme:Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn