我運行shell腳本內的PHP腳本作爲
#! /bin/sh
php file.php
殼牌將要運行腳本並顯示PHP腳本的輸出,但我怎樣才能將在PHP腳本中定義的變量傳遞到shell腳本中以供在其中使用(用於由shell進一步處理)?
例如,考慮
<?php
$test = "something";
?>
php文件我怎樣才能的$test
值傳遞給shell腳本
#! /bin/sh
php config.php
echo $test
UPDATE:的建議是基於print
方法變量。我更喜歡不打印任何東西,因爲php腳本也有其他應用程序(在其他php腳本中爲include
d)。
看到這個問題:http://stackoverflow.com/questions/4747396/set-environment-variable-from-outside-bash – chiborg