私は現在phpとpythonで悩んでいます。私は、文字通りあるシンプルなPythonスクリプトを作った - 次のように(私のindex.phpメインページ内にある)print "Hello World"
php配列からウェブページへの変数のみを返します
私のPHPスクリプトは次のとおりです。
<?php
$output = null;
exec('C:\\Python27\\python.exe py\\test.py', $output, $return);
print_r($output);
?>
私の問題は、それがこれを返すことです:
配列([0] =>のHello World)
は誰もが唯一の私のウェブページにHello World
を返す方法を知っていますか? ご協力いただければ幸いです。
読むhttp://php.net/manual/en/function.exec.php –
パススルー()おそらくhttp://www.php.net/manual/en/function.passthru.php –
Yeesh私は愚か者のように感じるのですか...ありがとうございます。 – Meh