【php】ちょっとしたphpをコマンドラインからさくっと実行する at softelメモ
$ php -r "echo '123';"
123 ← 実行結果
ちょとちがう。
-
<?php
-
/* python 実行 exec : 長くなってしまいましたが無視 */
-
exec("C:/pleiades/xampp/python/python C:/pleiades/xampp/htdocs/dev/test.py", $output, $return_var) ;
-
if($return_var === 0) {
-
foreach($output as $key => $val) {
-
echo $val."<br />" ;
-
}
-
} else {
-
echo "exec error : ".$return_var ;
-
}
|
<? php $ results = exec ('wc -w *.txt | head -5'); echo $results; #would print out just the last line or results, i.e.: #3847 myfile.txt ?> |
exec()を使う。
【php】exec()で実行したコマンドが正常に終了し成功したか確認する at softelメモ
exec - PHP return_var codes? - Stack Overflow
http://tldp.org/LDP/abs/html/exitcodes.html#EXITCODESREF
execの$return_varのエラーコード一覧