iphp
iphp copied to clipboard
An interactive php shell (REPL) with support for readline, autocomplete, include/require, and fatal-error tolerance.
Maybe use the built-in PHP parser to see if we're in the middle of a statement and allow multi-line input until a ; or some other signal is entered on...
Status
@apinstein will you please give a status update Where is the project at? Where is the project going? How much time can you commit to this project? Known PHP version...
This was bugging me for awhile and i hacked away for about 2.5 hours trying to figure out a work about but example: > $foo = function() {return 'bar';} >...
This helps us solve gh-4, gh-5, gh-8, gh-9 If we run all input thru the tokenizer, we should be able to figure out where we're at in the current scope...
the readme file should list the requirements for running iphp. So far, I can see PHP 5 >= 5.1 is needed because of use of the readline_callback_handler_install function. and, php-cli...
I have an idea to use token_get_all() to parse the input and do lexical analysis on the code entered so far to improve the autocomplete list. So if you have...