我有时会在生产中遇到此错误:
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 具有收到的价值。
有谁知道“不能中断/继续 1 级”何时出现在 PHP 中?
我看过这篇文章PHP Fatal error: Cannot break/continue。但没有得到任何帮助。