#!/usr/bin/env php // +---------------------------------------------------------------------- namespace think; // 加载基础文件 require __DIR__ . '/vendor/autoload.php'; // 显式指定应用根目录,确保 .env 正确加载(避免 getDefaultRootPath 返回上级目录) $rootPath = __DIR__ . DIRECTORY_SEPARATOR; (new App($rootPath))->console->run();