bug75193.phpt 214 B

123456789101112
  1. --TEST--
  2. Bug #75193 segfault in collator_convert_object_to_string
  3. --EXTENSIONS--
  4. intl
  5. --FILE--
  6. <?php
  7. $a = new \Collator('en_US');
  8. $b = [new stdclass, new stdclass];
  9. var_dump($a->sort($b));
  10. ?>
  11. --EXPECT--
  12. bool(true)