Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7003547
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T21:05:00+00:00 2026-05-27T21:05:00+00:00

It seems like the following from the PHP manual regarding for loops is incorrect.

  • 0

It seems like the following from the PHP manual regarding for loops is incorrect.

They behave like their C counterparts.

This is my understanding of for loops.
In C
for (i = foo; i < 10; i++) { /* body */ }
is equivalent to

if ( i = foo )  
{   while (i < 10)  
    {    /* body */
         i++;
    }
}

In PHP the comparable loop
for ($i = $foo; $i < 10; $i++) { /* body */ }
becomes

$i = $foo;
while ($i < 10)
{   /* body */
    $i++;
}

The difference is that in PHP $i = $foo is not a condition but rather a convenient place for a statement. Suppose we change the single = to ==. The distinction becomes significant. Is this correct? If so, then PHP and C loops behave differently and the manual is incorrect, right?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T21:05:01+00:00Added an answer on May 27, 2026 at 9:05 pm

    They are exactly the same, but your understanding of C’s for loops is wrong. They are the same as in PHP.

     for (x; y; z) { /* body */ }
    

    is almost like

     x;
    
     while (y) {
         /* body */
         z;
     }
    

    Though the for and while examples in C are not exactly the same because of scopes and things.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Following up to this question , it seems like Select-Object sets its input to
Possible Duplicate: PHP EOF shows only one result from loop Hello Seems like I
From the documentation I've read regarding LOBs and the OCI8 PHP extension, it seems
It seems like EasyMock tests tend to follow the following pattern: @Test public void
I have the following code that seems like it should set my insertParameter but
I have the following line of jQuery but it seems like overkill to use
Why won't the following C code compile? It seems like it should just change
So I want to be able to do the following in PHP. From the
I am trying to rewrite url from www.xxx.com/test.com to www.xxx.com/my.php?d=test.com using the following directive:
doeas anybody use the Query\Builder from Doctrine as Standalone Tool ? It seems like

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.