Hudzilla.org - the homepage of Paul Hudson
Contents > Alternative PHP uses > Making your own language Wish List | Report Bug | About Me ]

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.





<< 21.5.9 Finally, execution   21.5.11 Operator precedence >>
Table of Contents
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!



Top-right shadow
 
Bottom-left shadow Bottom shadow

Comments from other readers
Be the first to add a comment to this chapter!



Add comment
Please note that by posting a comment here you are committing it to the public domain. This is important so that others can make use of your code themselves, and also so that I can incorporate helpful notes directly into the main text. Comments are limited to 2000 characters in length.

If you are reporting an error in the content, please tell me directly.

Your name/email address:
Your comment:
 
Now, in order to verify that you're a real person, please answer this simple question: what is six plus three?
The answer is:
(please write in
numbers, eg 19)


Top-right shadow
 
Bottom-left shadow Bottom shadow