我有时从命令行运行 php 脚本。使用 cron 或其他一次性脚本。
我想知道它是否可以在 php 脚本中确定它是否通过命令行运行?
<?php
$isRunFromCommandLine = // set to (true:false) -- not sure how to do this
if($isRunFromCommandLine){
echo 'You are running from command line';
}
else{
echo 'You are not running php via command line'
}
?>