ircmaxell/php-c-parser

Parse C when using PHP

Installs: 13 409

Dependents: 3

Suggesters: 0

Security: 0

Stars: 43

Watchers: 4

Forks: 7

Open Issues: 4

pkg:composer/ircmaxell/php-c-parser

v0.1.0 2019-10-24 15:56 UTC

This package is auto-updated.

Last update: 2025-09-14 20:25:23 UTC


README

This is a library to parse C code into an AST. Using PHP.

Yes, this is an extraordinarily bad idea...

Example

$parser = new PHPCParser\CParser;

$ast = $parser->parse('path/to/file');

Note that pre-processor directives are all correctly resolved.

If you need to set a pre-processor define, you can use a context;

$parser = new PHPCParser\CParser;

$context = new PHPCParser\Context;
// #define A 42
$context->defineInt('A', 42);
// #define B "testing"
$context->defineString('B', "testing");
// #define C testing
$context->defineIdentifier('C', 'testing');
// etc... 

$ast = $parser->parse('path/to/file', $context);

And that's all there is to it (until it is working that is...)...

Generating AST from clang

$ clang -cc1 -ast-dump test.c