Created
September 27, 2013 03:29
-
-
Save dshafik/6723774 to your computer and use it in GitHub Desktop.
A script to tokenize a given PHP script and display the list of tokens.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env php | |
<?php | |
if (!isset($_SERVER['argv'][1])) { | |
echo "Usage: {$_SERVER['argv'][0]} <filename>" . PHP_EOL; | |
exit; | |
} | |
$tokens = token_get_all(file_get_contents($_SERVER['argv'][1])); | |
foreach ($tokens as $token) { | |
if (is_integer($token[0])) { | |
echo str_pad(token_name($token[0]), 28); | |
echo trim($token[1]); | |
} else { | |
echo str_repeat(" ", 28); | |
echo $token[0]; | |
} | |
echo PHP_EOL; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment