Learning PHP: How can I make sure an integer 0 does not yield true in if comparison statement?
-
This yields false. <?php $a = 'a'; $b = 'b'; if ( $a == $b ) echo 'true'; else echo 'false'; However, this yields true. <?php $a = 0; $b = 'b'; if ( $a == $b ) echo 'true'; else echo 'false'; How can I make sure that when $a has the integer of 0, it yields false?
-
Answer:
It seems triple equals is the way to go. http://stackoverflow.com/questions/80646/how-do-the-equality-double-equals-and-identity-triple-equals-comparis if ( (string) $a === (string) $b ) echo 'true'; else echo 'false';
Anonymous at Quora Visit the source
Other answers
Casting a string that's non-numeric to int yields a 0, but you can use ===. <?php if ( $a === $b ) { echo "true"; } ?> Another case where you might want to use something other than implicit comparison: strpos returns an integer position of where a string is located in another, or false if there is no occurrence. Therefore, if you're using strpos to check if a string is located in another but discarding the actual location, it may be helpful to use !== false, otherwise nothing in the if block will execute because 0 is implicitly equal to false. <?php $text = "quora"; if ( strpos( $text, "qu" ) ) { // nothing happens here } if ( strpos( $text, "qu" ) !== false ) { // this does get executed! }
Lojjik Braughler
Lojjiik and Anonymous have the right answer. It's the type comparison operand you want: ===. It's a good question though. One of the faults of PHP is how it allows you to write code without first having to understand basic concepts like variable types and evaluations. Many programmers end up writing code that is full of assumptions simply because of loose typing. I am a proponent of loose typing as I think programming languages should not create more obstacles than necessary. But comparisons is such a basic tenet that I wish it was better taught.
Jakob Persson
Related Q & A:
- How can I make a dynamic web page in PHP?Best solution by Yahoo! Answers
- How can I be sure that Yahoo Mail Plus can be cancelled after a year?Best solution by answers.yahoo.com
- How can I be sure that the microsoft updates are real and safe?Best solution by howtogeek.com
- How do I make my Myspace 2.0 private?Best solution by Yahoo! Answers
- How can I make my dreams come true?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.