PDO drivers no value in Windows

后端 未结 16 1490
盖世英雄少女心
盖世英雄少女心 2020-11-29 07:31

The php_pdo_mysql.dll can\'t be enabled in machine. I have set extension=php_pdo.dll and extension=php_pdo_mysql.dll enabled in php.in

16条回答
  •  臣服心动
    2020-11-29 08:02

    PHP error PDO not exist on 5.4

    Fatal error: Class 'DigitalToolBox\PDO' not found in C:\SERVER\www\MyAPP\DigitalToolBox\MysqlConnectionTool.php on line 19

    you can see pdo is loaded because is in list with this comand:

    print_r(get_loaded_extensions()); 
    

    this error happens for the use of namespaces, we need to add at the beginning of our code the instruction:

    use PDO;
    

    IF ($this->works) $voteForThis++;

提交回复
热议问题