PHP Periksa apakah mode CLI

function is_cli()
{
    return php_sapi_name() === 'cli';
}
Super Dude