ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
~~~ //修改composer.json文件: { "require": { "illuminate/container": "^5.2" }, "autoload": { "psr-4": { "App\\": "app/" } } } #composer install // app/Test/Test.php文件 namespace App\Test; class Test { public function index() { echo "This is a custom class which will be autoload by composer\n"; } } //index.php require_once __DIR__.'/vendor/autoload.php'; $test = new App\Test\Test(); $test->index(); ~~~