Answers for "php check if cli mode"

PHP
0

php check if cli mode

function is_cli()
{
    return php_sapi_name() === 'cli';
}
Posted by: Guest on August-12-2021

Browse Popular Code Answers by Language