I am writing an app that runs from the browser. However, some model functions are also called from the Yii2 console. Therefore, I am getting errors when trying to access variabl
Pure PHP:
global $argv; if (empty($argv)) { // Browser mode } else { // Cli mode }