Skip to content

Instantly share code, notes, and snippets.

@juzna
Created March 26, 2012 18:57
Show Gist options
  • Save juzna/2208688 to your computer and use it in GitHub Desktop.
Save juzna/2208688 to your computer and use it in GitHub Desktop.
PHP compare bug
<?php
$a = new ArrayObject(array(
'single' => "ahoj",
'double' => "lamo",
));
$b = new ArrayObject(array(
'single' => "zdar",
'double' => "vole",
));
var_dump($a == $b); // true in PHP < 5.4.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment