How to solve “Call to undefined function dbase_open() ” error in windows

前端 未结 4 1925
北恋
北恋 2020-12-21 04:51

Hi i want to load DBF file to mysql, am using xampp,php version 5.5.6

i had write the below code,

But am getting Error ---

Fatal error

4条回答
  •  时光说笑
    2020-12-21 05:48

    dBase is moved to PECL for now

    yum install php-pear
    pecl install dbase
    

    After successful execution, you'll need to add "extension=dbase.so" to your php.ini

    Or create dbase.ini in /etc/php.d with

    extension=dbase.so
    

    fliber.net uses this

提交回复
热议问题