We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1291a26 commit eb24f0dCopy full SHA for eb24f0d
test.php
@@ -0,0 +1,9 @@
1
+<?php
2
+include 'c.lex.php';
3
+error_reporting(E_ALL);
4
+$L = new CLexer(popen('gcc -E /usr/include/err.h', 'r'));;
5
+
6
+while ($t = $L->nextToken()) {
7
+ print_r($t);
8
+}
9
0 commit comments