4

私は奇妙な問題に直面している共有サーバー Linux を使用しています。PHPで次のコマンドを実行しようとしていますが、正常に実行されます。PHP インストール パスを返します/usr/bin/php

exec('which php');// This runs so exec is not disabled

しかし、私が実行しようとするコマンドはexec('php ...');失敗し、98から114の要素の配列がランダムに返され、ほとんどゴミが残っています。私が実行したコマンドの例は...

exec('php -v');
exec('php -i');
exec('/usr/bin/php -v');

上記のどれも賢明なものを返しませんでした。php で実行されたコマンドが実行されない理由はありますか?

以下は、返されvar_dump()たデータ配列です。exec()

編集(もう少しRNDの後)

実行できました

exec('php -h')

そして、次の配列を読み取り可能な形式で返しました。

string(9) "php -help"
string(47) "Usage: php [-q] [-h] [-s] [-v] [-i] [-f ]"
string(27) "       php  [args...]"
string(36) "  -a               Run interactively"
string(69) "  -b | Bind Path for external FASTCGI Server mode"
string(57) "  -C               Do not chdir to the script's directory"
string(58) "  -c | Look for php.ini file in this directory"
string(47) "  -n               No php.ini file will be used"
string(56) "  -d foo[=bar]     Define INI entry foo with value 'bar'"
string(70) "  -e               Generate extended information for debugger/profiler"
string(46) "  -f         Parse .  Implies `-q'"
string(28) "  -h               This help"
string(34) "  -i               PHP information"
string(43) "  -l               Syntax check only (lint)"
string(43) "  -m               Show compiled in modules"
string(60) "  -q               Quiet-mode.  Suppress HTTP Header output."
string(60) "  -s               Display colour syntax highlighted source."
string(33) "  -v               Version number"
string(72) "  -w               Display source with stripped comments and whitespace."
string(46) "  -z         Load Zend extension ."
string(75) "  -T        Measure execution time of script repeated  times."
This page was created in 0.055487155914307 seconds

ところで、テストに使用しているスクリプトは次のとおりです...

<?php
$mtime = microtime(); 
$mtime = explode(" ",$mtime); 
$mtime = $mtime[1] + $mtime[0]; 
$starttime = $mtime; 


if(!empty($_GET['p']) && $_GET['p'] == true){

    //$command = 'php -help'; //this works
    //$command = 'cat ' . getcwd() . '/dummy1.txt'; //this works echo's a simple text file

    //$command = 'php -q ' . getcwd() . '/dummy1.txt'; //NOT WORKING
    $command = 'php -m'; //NOT WORKING

    echo '<div><pre>';
    var_dump($command);
    echo '</pre></div>';

    exec($command, $output, $return);
    //passthru($command,$output);

    echo '<div><pre>';
    foreach($output as $key => $value){
        var_dump($output[$key]);
    }   
    echo '</pre></div>';
}


$mtime = microtime(); 
$mtime = explode(" ",$mtime); 
$mtime = $mtime[1] + $mtime[0]; 
$endtime = $mtime; 
$totaltime = ($endtime - $starttime); 
echo "This page was created in ".$totaltime." seconds";
?>

Pastebin.org リンク

画像

4

2 に答える 2

3

データが HTTP 応答のように見えContent-Encoding: gzip、そこにある場合、文字列を使用gzdecode()して「ガベージ」をデコードします。

于 2013-02-15T09:29:15.120 に答える