Skip to content

A small library for converting tokenized PHP source code into XML (and potentially other formats)

License

Notifications You must be signed in to change notification settings

staabm/tokenizer

Repository files navigation

Tokenizer

A small library for converting tokenized PHP source code into XML.

Test

Installation

You can add this library as a local, per-project dependency to your project using Composer:

composer require theseer/tokenizer 

If you only need this library during development, for instance to run your project's test suite, then you should add it as a development-time dependency:

composer require --dev theseer/tokenizer 

Usage examples

$tokenizer = newTheSeer\Tokenizer\Tokenizer(); $tokens = $tokenizer->parse(file_get_contents(__DIR__ . '/src/XMLSerializer.php')); $serializer = newTheSeer\Tokenizer\XMLSerializer(); $xml = $serializer->toXML($tokens); echo$xml;

The generated XML structure looks something like this:

<?xml version="1.0"?> <sourcexmlns="https://github.com/theseer/tokenizer"> <lineno="1"> <tokenname="T_OPEN_TAG">&lt;?php </token> <tokenname="T_DECLARE">declare</token> <tokenname="T_OPEN_BRACKET">(</token> <tokenname="T_STRING">strict_types</token> <tokenname="T_WHITESPACE"> </token> <tokenname="T_EQUAL">=</token> <tokenname="T_WHITESPACE"> </token> <tokenname="T_LNUMBER">1</token> <tokenname="T_CLOSE_BRACKET">)</token> <tokenname="T_SEMICOLON"></token> </line> </source>

About

A small library for converting tokenized PHP source code into XML (and potentially other formats)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP100.0%