21.5.10 If you have made it this far...This is NOT the latest copy of this book; click here for the latest version.
If you have managed to make it this far and still understand what's going on, you are doing very well indeed. At this point we now have a full compiler that works with basic scripts, although it does not yet respect any form of operator precedence. If you are having trouble putting the script together in the right order (sorry, but I really didn't want to print out the entire script more than once, and it's printed out later at the end of this chapter), here's a guide:
<?php
define("FOO_NUMBER", 0);
...[snip]...
define("FOO_MULTIPLY", 7);
define("IS_OPERATOR", 0);
define("IS_OPERAND", 1);
class token { }
function getval($token) { }
function execute(&$stack) {}
function main() {}
function gettoken() {}
$script = fopen("script.foo", "r");
$characters = array_merge(range('a', 'z'), range('A', 'z'));
$characters[] = "_";
$variables = array();
function cleanup() {
GLOBAL $script;
fclose($script);
}
register_shutdown_function("cleanup");
main(); ?>
Note that I snuck in a little shutdown function just to make sure and close the file handle before the script terminates. If you have your script completed, you should now be able to execute it and have it parse script.foo.
Here's what I put in my script.foo file:
a = 45;
b = a;
print a;
d = a + b + a;
c = "Foo bar baz";
print "Baz bar foo";
print d;
print c;
If you've followed all the instructions carefully, you should get the following output:
45
Baz bar foo
135
Foo bar baz
It seems we have been quite successful! However, the compiler is not done just quite yet - there is one tweak left to make before it's perfect.
|
Want to see this stuff in print? PHP in a Nutshell takes the core topics covered here, adds in thousands of edits from the editorial team and myself, and combines them to make an unbeatable reference for PHP programmers at all levels.
My latest book has hundreds more tips on how to use PHP, Apache, and MySQL, plus Perl, Python, shell scripts, performance tuning, and more!
|