Jump to content

if help


davelearning

Recommended Posts

Thanks for the replies

Are they the same including spelling, capitalization, and white space? 'Hello World' does not equal 'Hello world', or 'Hello World ' . . .

 

Yup exactly the same :(

if it's an integer i am pretty sure you don't need those " " around it either.

if ($x == 1) {
  echo 'x is 1';
}

 

I wasnt sure, it works with them in!

 

Link to comment
Share on other sites

They can't be the same. What does var_dump($variable); return?

 

As far as quoting numbers, a number can also be a string. When using the == comparison, PHP's type-juggling will show 10 and "10" to be the same. If you compare them with the identical comparison === operator, it will not.

 

$str = '10'
if( $str == 10 ) { // returns TRUE
if( $str === 10 ) { returns FALSE

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.