2011-10-19 35 views

回答

0

不看你的代碼,或知道是否有一個實際的問題,瓦特/您的SSL證書(你不應該忽視),嘗試這樣的事情作爲一種解決方法:

<?php 

$retry=False; 

do { 

    try { 
    //your code goes here 
    $retry=False; 
    } 

    catch (Exception $e) { 
    echo $e->getMessage(), "\n"; 
    $retry=True; 
    } 
    } 
    while ($retry); 

?> 
相關問題