我正在从我的Facebook应用程序创建图像。我从Facebook收到以下错误。
CurlException:56:SSL读取:错误:00000000:lib(0):func(0):reason(0), errno 104
我的代码有什么问题吗?
答案 0 :(得分:0)
不看你的代码,或者知道你的SSL证书是否存在实际问题(你不应该忽略),试试这样的解决方法:
<?php
$retry=False;
do {
try {
//your code goes here
$retry=False;
}
catch (Exception $e) {
echo $e->getMessage(), "\n";
$retry=True;
}
}
while ($retry);
?>