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 foo > bar isset($var)'); 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 8.2.0 - 8.2.18, 8.3.1, 8.3.3, 8.3.6
Deprecated: Optional parameter $type declared before required parameter $content is implicitly treated as a required parameter in /in/52KSG on line 5 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Array ( [0] => Token Object ( [type] => 389 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 262 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 392 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 392 [content] => [line] => 1 ) [5] => Token Object ( [type] => 262 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 392 [content] => [line] => 1 ) [7] => Token Object ( [type] => 330 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 266 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Deprecated: Optional parameter $type declared before required parameter $content is implicitly treated as a required parameter in /in/52KSG on line 5 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Array ( [0] => Token Object ( [type] => 389 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 262 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 392 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 392 [content] => [line] => 1 ) [5] => Token Object ( [type] => 262 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 392 [content] => [line] => 1 ) [7] => Token Object ( [type] => 330 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 266 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )
Output for 8.3.0, 8.3.2, 8.3.4
Deprecated: Optional parameter $type declared before required parameter $content is implicitly treated as a required parameter in /in/52KSG on line 5 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Deprecated: Creation of dynamic property Token::$type is deprecated in /in/52KSG on line 6 Deprecated: Creation of dynamic property Token::$content is deprecated in /in/52KSG on line 7 Deprecated: Creation of dynamic property Token::$line is deprecated in /in/52KSG on line 8 Array ( [0] => Token Object ( [type] => 394 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 313 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 397 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 397 [content] => [line] => 1 ) [5] => Token Object ( [type] => 313 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 397 [content] => [line] => 1 ) [7] => Token Object ( [type] => 366 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 317 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )
Output for 8.1.0 - 8.1.27
Deprecated: Optional parameter $type declared before required parameter $content is implicitly treated as a required parameter in /in/52KSG on line 5 Array ( [0] => Token Object ( [type] => 389 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 262 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 392 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 392 [content] => [line] => 1 ) [5] => Token Object ( [type] => 262 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 392 [content] => [line] => 1 ) [7] => Token Object ( [type] => 330 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 266 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )
Output for 8.0.30
Deprecated: Required parameter $content follows optional parameter $type in /in/52KSG on line 5 Array ( [0] => Token Object ( [type] => 387 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 262 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 390 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 390 [content] => [line] => 1 ) [5] => Token Object ( [type] => 262 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 390 [content] => [line] => 1 ) [7] => Token Object ( [type] => 329 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 266 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )
Output for 8.0.0 - 8.0.29
Deprecated: Required parameter $content follows optional parameter $type in /in/52KSG on line 5 Array ( [0] => Token Object ( [type] => 390 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 311 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 393 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 393 [content] => [line] => 1 ) [5] => Token Object ( [type] => 311 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 393 [content] => [line] => 1 ) [7] => Token Object ( [type] => 363 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 315 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )
Output for 7.4.0 - 7.4.33
Array ( [0] => Token Object ( [type] => 382 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 311 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 385 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 385 [content] => [line] => 1 ) [5] => Token Object ( [type] => 311 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 385 [content] => [line] => 1 ) [7] => Token Object ( [type] => 361 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 312 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33
Array ( [0] => Token Object ( [type] => 379 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 319 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 382 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 382 [content] => [line] => 1 ) [5] => Token Object ( [type] => 319 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 382 [content] => [line] => 1 ) [7] => Token Object ( [type] => 358 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 320 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )
Output for 5.6.0 - 5.6.40
Array ( [0] => Token Object ( [type] => 376 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 310 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 379 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 379 [content] => [line] => 1 ) [5] => Token Object ( [type] => 310 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 379 [content] => [line] => 1 ) [7] => Token Object ( [type] => 355 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 312 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )
Output for 5.5.0 - 5.5.38
Array ( [0] => Token Object ( [type] => 374 [content] => <?php [line] => 1 ) [1] => Token Object ( [type] => 308 [content] => foo [line] => 1 ) [2] => Token Object ( [type] => 377 [content] => [line] => 1 ) [3] => Token Object ( [type] => [content] => > [line] => ) [4] => Token Object ( [type] => 377 [content] => [line] => 1 ) [5] => Token Object ( [type] => 308 [content] => bar [line] => 1 ) [6] => Token Object ( [type] => 377 [content] => [line] => 1 ) [7] => Token Object ( [type] => 353 [content] => isset [line] => 1 ) [8] => Token Object ( [type] => [content] => ( [line] => ) [9] => Token Object ( [type] => 310 [content] => $var [line] => 1 ) [10] => Token Object ( [type] => [content] => ) [line] => ) )

preferences:
260.95 ms | 404 KiB | 329 Q