Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我直接连接到 PDO。这在我的电脑上有效,但在我上传时不能在线。这是为什么?是否必须为它创建一个类。
$conn=new PDO("mysql:host=$dbhost;dbname=$dbname",$dbuser,$dbpass));
当我上网时,它给了我“致命错误:在...中找不到类 'PDO'”
请检查 php-pdo 扩展是否已安装且处于活动状态。您可以使用phpinfo或get_loaded_extensions为此。如果它没有激活,请检查它是否已安装并在您的 php.ini 中激活它;否则安装它。
phpinfo
get_loaded_extensions