为什么PHP中会出现“无法打破/继续1级”?
2022-08-30 19:09:43
我有时会在生产中遇到此错误:
if( true == $objWebsite ) {
$arrobjProperties = (array) $objWebsite->fetchProperties( );
if( false == array_key_exists( $Id, $Properties ) ) {
break;
}
$strBaseName = $strPortalSuffix . '/';
return $strBaseName;
}
$strBaseName = $strSuffix ;
return $strBaseName;
我已尝试重现此问题。但没有取得任何进展。$Id,$Properties收到价值。
有谁知道PHP中“无法打破/继续1级”何时出现?
我看到这篇文章PHP致命错误:无法中断/继续。但没有得到任何帮助。