Fatal error: 'break' not in the 'loop' or 'switch' context in

前端 未结 3 1796
伪装坚强ぢ
伪装坚强ぢ 2020-12-14 06:37

I\'ve setup a wordpress blog (I imported the db) and it\'s throwing this error

Fatal error: \'break\' not in the \'loop\' or \'switc

3条回答
  •  醉话见心
    2020-12-14 07:15

    Removing break fixed it

    function adodb_tz_offset($gmt,$isphp5)
    {
       $zhrs = abs($gmt)/3600;
        $hrs = floor($zhrs);
    if ($isphp5) 
        return sprintf('%s%02d%02d',($gmt<=0)?'+':'-',floor($zhrs),($zhrs-$hrs)*60); 
    else
        return sprintf('%s%02d%02d',($gmt<0)?'+':'-',floor($zhrs),($zhrs-$hrs)*60); 
    }
    

提交回复
热议问题