0

私はこれについて非常に混乱しています

Fatal error: Class 'PDO' not found in /home/itstec2/public_html/pard_config/class/Config.php on line 13

これは私のConfig.phpです

<?php

$dbhost=null;
$dbname=null;
$dbuser=null;
$dbpass=null;

$file = __DIR__ ."/config.json";

$array = file_get_contents($file);
$dbConfig=json_decode($array);

$pardConfig=new PDO('mysql:host='.$dbConfig[0].';'.'dbname='.$dbConfig[1],$dbConfig[2],$dbConfig[3]);

?> 

Config.php ファイルは他のすべてのインクルードで機能していますが、ドメインでは機能していません。その致命的なエラーがあります.なぜですか?

私のドメイン

4

1 に答える 1