IN Smarty 3 を使用しています
1 -{break}
壊れる; 続行します。キーワード
2- {continue}
はcontinue;
キーワードに使用されます。exit タグ用のカスタム プラグインを作成しました。break
<?php
/*
* Modified for exit tag
*/
function smarty_compiler_exit( $contents, &$smarty ) {
return 'exit;';
}
?>
しかし、使用すると、次{exit}
のように出力されます:- exit; only not working as php exit keyword