3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait setData { static function setData( $data ) { DataCollector::collectedData( 'set', $data ); } } trait dataHandler { use setData; static function getCollectedData() { DataCollector::collectedData( 'get' ); } } class DataCollector { use dataHandler; private static $CollectionData = array(); private static function collectedData( $type, $value = NULL ) { if( strtolower( $type ) === 'set' ) { $CollectionData[] = $value; var_dump($CollectionData); } elseif( strtolower( $type ) === 'get' ) return self::$CollectionData; } } class Form { use setData {} } class Field extends Form { public function __construct( $type, $text = NULL ) { DataCollector::setData( $type ); } } class A { use setData{} public function __construct( $type, $text = NULL ) { self::setData( $type ); } } $Field1 = new Field( '1' ); $Field2 = new Field( '2' ); $A = new A( '3' ); DataCollector::setData('4'); dataHandler::setData('5'); var_dump( dataHandler::getCollectedData() );
Output for git.master, git.master_jit, rfc.property-hooks
array(1) { [0]=> string(1) "1" } array(1) { [0]=> string(1) "2" } Fatal error: Uncaught Error: Call to private method DataCollector::collectedData() from scope A in /in/LKsiK:4 Stack trace: #0 /in/LKsiK(42): A::setData('3') #1 /in/LKsiK(48): A->__construct('3') #2 {main} thrown in /in/LKsiK on line 4
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
36.5 ms | 401 KiB | 8 Q