3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Token { function __construct($type = null, $content, $line = null){ $this->type = $type; $this->content = $content; $this->line = $line; } } $tokens = token_get_all('<?php ( ) '); foreach($tokens as $offset => $token){ $tokens[$offset] = is_array($token) ? new Token($token[0], $token[1], $token[2]) : new Token(null, $token, null); } print_r($tokens);
Output for git.master, git.master_jit
Deprecated: Optional parameter $type declared before required parameter $content is implicitly treated as a required parameter in /in/lg590 on line 5 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Array ( [0] => Token Object ( [type] => 394 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 397 [content] => [line] => 1 ) [2] => Token Object ( [type] => [content] => ( [line] => ) [3] => Token Object ( [type] => 397 [content] => [line] => 3 ) [4] => Token Object ( [type] => [content] => ) [line] => ) [5] => Token Object ( [type] => 397 [content] => [line] => 3 ) )
Output for rfc.property-hooks
Deprecated: Optional parameter $type declared before required parameter $content is implicitly treated as a required parameter in /in/lg590 on line 5 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/lg590 on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/lg590 on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/lg590 on line 8 Array ( [0] => Token Object ( [type] => 396 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 399 [content] => [line] => 1 ) [2] => Token Object ( [type] => [content] => ( [line] => ) [3] => Token Object ( [type] => 399 [content] => [line] => 3 ) [4] => Token Object ( [type] => [content] => ) [line] => ) [5] => Token Object ( [type] => 399 [content] => [line] => 3 ) )

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:
46.95 ms | 408 KiB | 8 Q