break ends execution of the current for, foreach, while, do-while or switch structure.
break accepts an optional numeric argument which tells it how many nested enclosing structures are to be broken out of.
<?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<br />\n";
}
/* Using the optional argument. */
$i = 0;
while (++$i) {
switch ($i) {
case 5:
echo "At 5<br />\n";
break 1; /* Exit only the switch. */
case 10:
echo "At 10; quitting<br />\n";
break 2; /* Exit the switch and the while. */
default:
break;
}
}
?>
Blogger templates
Blogger news
Blogroll
Archives
-
▼
2012
(231)
-
▼
April
(22)
- array reduce with array_splice() in php
- session_destroy() or delete or destroy all session...
- Add alias to apache, use your home directory folde...
- Membuat Advanced Paging dengan PHP
- IMPROVE YOUR SKILLS IN MATCH RACING.As James SPITH...
- Separación de instrucciones en PHP
- Dog Training Solutions: when Whining isn't Cute
- Control structures in Php: break
- stringify using jquery
- a reliable password hacking site
- Folders created
- Prototype-based programming
- Eight Secrets to Ultimate Success!
- Assingment #3
- Types of connection
- Six Rules to keep in mind when you are beginning a...
- Formatting Numbers (Working and Tested)
- Upgrade from Joomla 1.0 to 1.5
- Calculating the difference between two dates
- Create Nested Categories using PHP and Dreamweaver
- Basic level Interview Questions - PHP
- PHP Manual - Always to keep handy
-
▼
April
(22)