| | |
Any keyword to break or continue a LOOP like as in C "break","continue" keawords??
Please support our PHP advertiser: PostgreSQL or MySQL? Compare and contrast the two most popular open source databases
![]() |
•
•
Join Date: Sep 2004
Posts: 25
Reputation:
Solved Threads: 0
Any keyword to break or continue a LOOP like as in C "break","continue" keawords??
0
#1 Oct 22nd, 2004
•
•
Join Date: Feb 2003
Posts: 282
Reputation:
Solved Threads: 6
Re: Any keyword to break or continue a LOOP like as in C "break","continue" keawords??
0
#2 Oct 25th, 2004
In a loop, the break and continue keyworks work as in C; however, for IF I am not certain. Best to try them out and see what works, or check www.php.net
•
•
Join Date: Mar 2008
Posts: 1
Reputation:
Solved Threads: 0
Re: Any keyword to break or continue a LOOP like as in C "break","continue" keawords??
0
#3 Mar 1st, 2008
Re: Any keyword to break or continue a LOOP like as in C "break","continue" keawords??
0
#4 Mar 1st, 2008
•
•
•
•
Is there anything or keawords in PHP from which I can break or continue from a LOOP in PHP??
in C
for(i=0;i<=100;i++){
statement1....;
statement2....;
if(condition1)
break;
else
continue;
statement3....;
statement4....;
statement5....;
}
I need something like this in PHP..
Can anybody Help me?
php Syntax (Toggle Plain Text)
<?php for($i=0; $i < 50; $i++) { //skip numbers 4 if($i == 4) { continue; } //exit early if($i == 25) { break; } //print each result echo $i; } ?>
Last edited by johnsquibb; Mar 1st, 2008 at 10:27 am. Reason: fixed a comment
The End
![]() |
Similar Threads
- " multiple definition of `game' ", " first defined here ", " ld returned 1 exit (C++)
- stopping a "for" loop (PHP)
- Student with a "C" question (C)
- missing ";" before "." ---- (C++)
- help with my for loop (C++)
- not your usual request for help (C++)
Other Threads in the PHP Forum
- Previous Thread: Covert Cvs To Mysql
- Next Thread: building graph with swf flash
| Thread Tools | Search this Thread |
.htaccess alexa apache api array beginner beneath binary broadband broken cakephp checkbox class cms code convert cron curl database date display dynamic echo email emptydisplayvalue encode error fcc file files folder form forms function functions google howtowriteathesis href htaccess html image images include insert ip javascript joomla key keywords limit link login mail mail() memberships menu mlm multiple multipletables mysql mysql_real_escape_string network oop open passwords paypal pdf php provider query radio random redirect remote rss script search securephp server sessions smtp source space sql strip_tags syntax system table template tutorial update upload url user validator variable video voteup web youtube





