Use of undefined constant CURLOPT_IPRESOLVE - assumed 'CURLOPT_IPRESOLVE'

后端 未结 2 379
遥遥无期
遥遥无期 2021-01-26 17:09

i have http://www.idiotminds.com/login-with-facebook-in-codeigniter/ but i have error

> A PHP Error was encountered
> 
> Severity: Notice
> 
> Me         


        
2条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-26 17:38

    CURLOPT_IPRESOLVE is available only >= CURL version 7.10.8 and your CURL version is 7.24.0. Need to update CURL in order for that CONSTANT to be available. And support for this constant is only available for PHP>=5.3

    Reference: http://gcov.php.net/PHP_5_3/lcov_html/curl/interface.c.gcov.php

提交回复
热议问题