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