Skip to content

Instantly share code, notes, and snippets.

@simonwelsh
Created December 4, 2013 21:47
Show Gist options
  • Save simonwelsh/7796202 to your computer and use it in GitHub Desktop.
Save simonwelsh/7796202 to your computer and use it in GitHub Desktop.
<?php
class A {
protected $i = 0;
public function __toString() {
$this->i++;
return "$this->i";
}
}
$a = new A;
$b = ['100', $a];
var_dump(array_intersect($b, $b));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment