Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Compared to some languages, PHP s syntax is a little bit long (e.g. in java calling the method of an an object is done with a period ( . ) instead of phps (->) ).
I have always wanted to write my own language but I m only a first year bachelors student and am in no way knowledgeable enough to write a parser that converts something to byte code for the Java VM or something.
So instead I m thinking of writing a parser in PHP that converts my syntax into PHP code then runs that using regex and stuff.
Reasons for that being: PHP is a stable language for web sites (my syntax will be suited towards web developers) I already know PHP at a professional level (or at least I think I do) I have already seen an implementation of something similar: http://tetraboy.com/lolcode/lol_core.phps This converts LolCode into PHP. And I know its just a joke but still it has been done
So since I have proof that its possible. My question is: Could I actually make something that I could use for future projects? e.g. Can I get it to be as fast or almost as fast as PHP is?
I m going to give it a try either way just for the purposes of learning a little bit more about PHP and how languages are put together, but I m wondering if I could actually turn the end result into something worth a damn.