国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 開(kāi)發(fā) > PHP > 正文

PHP系統(tǒng)命令函數(shù)使用分析

2024-05-04 23:11:57
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

復(fù)制代碼 代碼如下:


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;
 }

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 合江县| 绥德县| 淮滨县| 天门市| 开阳县| 金湖县| 平安县| 讷河市| 威远县| 吉水县| 彝良县| 历史| 嘉兴市| 米泉市| 荆门市| 岳池县| 南木林县| 衡山县| 城口县| 云南省| 绍兴县| 安徽省| 谷城县| 子长县| 广汉市| 高碑店市| 偃师市| 贡觉县| 衡山县| 剑川县| 兰州市| 昂仁县| 综艺| 儋州市| 明光市| 大荔县| 西乡县| 沂南县| 博爱县| 桐梓县| 临泽县|