标签: php shell stdout
我想将以下命令的输出保存到变量:
#!/bin/bash php -f myFile.php
我该怎么办?
答案 0 :(得分:0)
你可以这样做。
OUTPUT=`php -f myFile.php` echo $OUTPUT