使用has判断是否存在(是否为空)如果存在则打印1,has返回的是布尔值(boolean)所用只能用打印的方式
例如:
echo Env::has('database.hostname');
使用Env之前需要加载进来
use think\facade\Env;