1
0
mirror of https://github.com/php/php-src.git synced 2026-04-20 14:31:06 +02:00
Files
archived-php-src/Zend/tests/traits/interface_003.phpt
2020-02-03 22:52:20 +01:00

28 lines
431 B
PHP

--TEST--
Testing to implement Serializable interface by traits
--FILE--
<?php
trait foo {
public function serialize() {
return 'foobar';
}
public function unserialize($x) {
var_dump($x);
}
}
class bar implements Serializable {
use foo;
}
var_dump($o = serialize(new bar));
var_dump(unserialize($o));
?>
--EXPECTF--
string(20) "C:3:"bar":6:{foobar}"
string(6) "foobar"
object(bar)#%d (0) {
}