0
我想在用戶註冊時手動創建一個Sqlite文件。我用如何在Laravel 5.2框架中創建sqlite文件?
new SQLite3($file_path)
但Laravel不斷告訴我
Class 'App\Http\Controllers\Sqlite3' not found
請幫助我。非常感謝您的幫助。
我想在用戶註冊時手動創建一個Sqlite文件。我用如何在Laravel 5.2框架中創建sqlite文件?
new SQLite3($file_path)
但Laravel不斷告訴我
Class 'App\Http\Controllers\Sqlite3' not found
請幫助我。非常感謝您的幫助。
你應該使用:
new \SQLite3($file_path)
或把
use SqlLite3;
下面
namespace App\Http\Controllers;
現在你要使用SqLite3
從當前的命名空間。
您可能也有興趣看How to use objects from other namespaces and how to import namespaces in PHP
非常感謝您! – user3547548