需要用到系统函数php_sapi_name() 或者 系统常量 PHP_SAPI,返回 cli 或 cli_server
1 /* 2 判断当前的运行环境是否是cli模式 3 */ 4 function is_cli(){ 5 return preg_match("/cli/i", php_sapi_name()) ? true : false; 6 }
时间: 2024-10-13 21:19:32
需要用到系统函数php_sapi_name() 或者 系统常量 PHP_SAPI,返回 cli 或 cli_server
1 /* 2 判断当前的运行环境是否是cli模式 3 */ 4 function is_cli(){ 5 return preg_match("/cli/i", php_sapi_name()) ? true : false; 6 }