php

位置:IT落伍者 >> php >> 浏览文章

PHP系统命令函数使用分析


发布日期:2022年04月07日
 
PHP系统命令函数使用分析
本篇文章是对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);
}
@pclose($f);
}
}
return $res;
}

上一篇:微博短链接算法PHP版本

下一篇:nginx php空白页 fastcgi