Arquivos
hhvm/hphp/test/vm/zend_indirect_method_call_001.php
T
2013-03-05 22:07:56 -08:00

15 linhas
198 B
PHP

<?php
class foo {
public function __construct() {
throw new Exception('foobar');
}
}
try {
$X = (new foo)->Inexistent(3);
} catch (Exception $e) {
var_dump($e->getMessage()); // foobar
}
?>