php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #14421 Numeric string comparsion fails
Submitted: 2001-12-11 05:21 UTC Modified: 2001-12-11 12:49 UTC
From: pauli dot ojanen at cencei dot fi Assigned:
Status: Not a bug Package: Strings related
PHP Version: 4.0.6 OS: Suse Linux, Apache web server
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
43 + 19 = ?
Subscribe to this entry?

 
 [2001-12-11 05:21 UTC] pauli dot ojanen at cencei dot fi
<?php
 
// Values are NOT the same and it should print out
// "It worked" but it prints "PHP bugs."
 
if("2000000011211132516" == "2000000011211132521") {
  print("PHP bugs.");
} 
else { 
  print("It worked.");
} 
  
?>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-12-11 12:49 UTC] sander@php.net
"2000000011211132516" is converted to a number, and so is "2000000011211132521". PHP can't handle numbers that large and therefor may work incorrect.
Use === to avoid that conversion.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Apr 27 01:01:30 2024 UTC