PHP: Call to undefined function: simplexml_load_string()

前端 未结 7 565
名媛妹妹
名媛妹妹 2020-12-13 23:02

I am implementing facebook count function using cron file. In which cron runs every 10 minutes and counts the total likes of a page.

for($i=0;$i<3;$i++){
         


        
相关标签:
7条回答
  • 2020-12-13 23:40

    For PHP 7 and Ubuntu 14.04 the procedure is follows. Since PHP 7 is not in the official Ubuntu PPAs you likely installed it through Ondřej Surý's PPA (sudo add-apt-repository ppa:ondrej/php). Go to /etc/php/7.0/fpm and edit php.ini, uncomment to following line:

    extension=php_xmlrpc.dll
    

    Then simply install php7.0-xml:

    sudo apt-get install php7.0-xml
    

    And restart PHP:

    sudo service php7.0-fpm restart
    

    And restart Apache:

    sudo service apache2 restart
    

    If you are on a later Ubuntu version where PHP 7 is included, the procedure is most likely the same as well (except adding any 3rd party repository).

    0 讨论(0)
提交回复
热议问题