دستور break
سه شنبه, ۱۲ خرداد ۱۳۹۴، ۰۱:۱۱ ب.ظ
دستور break اجرای ساختار فعلی for, foreach, while, do-while, switch را خاتمه می دهد.
دستور break یک ورودی عددی اختیاری دارد که با استفاده از آن مشخص می کنیم چند ساختار تودرتو باید متوقف شوند.
<?php $arr = array('one', 'two', 'three', 'four', 'stop', 'five'); while (list(, $val) = each($arr)) { if ($val == 'stop') { break; /* You could also write 'break 1;' here. */ } echo "$val
\n"; } /* Using the optional argument. */ $i = 0; while (++$i) { switch ($i) { case 5: echo "At 5
\n"; break 1; /* Exit only the switch. */ case 10: echo "At 10; quitting
\n"; break 2; /* Exit the switch and the while. */ default: break; } } ?>
۹۴/۰۳/۱۲