mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
27 lines
407 B
PHP
27 lines
407 B
PHP
--TEST--
|
|
ZE2 interfaces
|
|
--SKIPIF--
|
|
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
interface Throwable {
|
|
public function getMessage();
|
|
}
|
|
|
|
class Exception_foo implements Throwable {
|
|
public $foo = "foo";
|
|
|
|
public function getMessage() {
|
|
return $this->foo;
|
|
}
|
|
}
|
|
|
|
$foo = new Exception_foo;
|
|
echo $foo->getMessage() . "\n";
|
|
|
|
?>
|
|
--EXPECT--
|
|
foo
|
|
|