3v4l.org

run code in 300+ PHP versions simultaneously
<?php class DataCollector { use dataHandler; private static $CollectionData = array(); static function collectedData( $type, $value = NULL ) { if( strtolower( $type ) === 'set' ) { $CollectionData[] = $value; var_dump($CollectionData); } elseif( strtolower( $type ) === 'get' ) return self::$CollectionData; } } trait setData { static function setData( $data ) { DataCollector::collectedData( 'set', $data ); } } trait dataHandler { use setData static function getCollectedData() { DataCollector::collectedData( 'get' ); } } 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 5.4.0 - 5.4.17
Parse error: syntax error, unexpected 'static' (T_STATIC), expecting ',' or ';' or '{' in /in/oBuGr on line 25
Process exited with code 255.
Output for 5.3.0 - 5.3.27
Parse error: syntax error, unexpected T_USE, expecting T_FUNCTION in /in/oBuGr on line 3
Process exited with code 255.

preferences:
168.45 ms | 1395 KiB | 53 Q