3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Foo { public $str; public function __toString() { return $this->str; } } $a = new Foo();$a->str = '111'; $b = new Foo();$b->str = '1b'; $c = new Foo();$b->str = '1A'; $list = [$a, $b, $c]; natcasesort($list); print_r($list);

preferences:
57.94 ms | 402 KiB | 5 Q