Skip to content

Instantly share code, notes, and snippets.

@dshafik
Created September 27, 2013 03:29
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dshafik/6723774 to your computer and use it in GitHub Desktop.
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.
#!/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