PHP 系统命令函数 PHP系统命令函数使用分析
人气:0想了解PHP系统命令函数使用分析的相关内容吗,在本文为您仔细讲解PHP 系统命令函数的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:PHP,系统命令,函数,下面大家一起来学习吧。
复制代码 代码如下:
function execute($cmd) {
$res = '';
if ($cmd) {
if(function_exists('system')) {
@ob_start();
@system($cmd);
$res = @ob_get_contents();
@ob_end_clean();
} elseif(function_exists('passthru')) {
@ob_start();
@passthru($cmd);
$res = @ob_get_contents();
@ob_end_clean();
} elseif(function_exists('shell_exec')) {
$res = @shell_exec($cmd);
} elseif(function_exists('exec')) {
@exec($cmd,$res);
$res = join(“\n",$res);
} elseif(@is_resource($f = @popen($cmd,"r"))) {
$res = '';
while(!@feof($f)) {
$res .= @fread($f,1024);
}
@pclose($f);
}
}
return $res;
}
加载全部内容