php parse sdk -> hello world error

后端 未结 1 623
南方客
南方客 2020-12-17 07:56

I am using the \"Hello World\" of Php Parse Sdk

My code:



        
相关标签:
1条回答
  • 2020-12-17 08:34

    option 1:

    You can follow the url http://curl.haxx.se/ca/cacert.pem to download cacert.pem file. Then go to php.ini set curl.cainfo = "c:/cacert.pem".

    option 2:

    try to find the code curl_setopt($c, CURLOPT_URL, $url); in your project then add this code curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, TRUE); before.

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