Skip to content

scottdavis/iphp

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

iphp - Interactive PHP Shell

iphp is an interactive php shell that solves a number of painful problems with normal php shells:

  • Fatal Error handling - iphp doesn't die even if your code does.
  • optional readline support
  • readline support includes: autocomplete, history, line editing
  • support ctags tags files
  • implemented as a class for integration with your framework
  • support for require/include; you can load php files within iphp
  • extensible command system

Example:

php> new ArrayObject(array(1,2))

=> ArrayObject Object
(
    [0] => 1
    [1] => 2
)

php> $_[0] + 1
=> 2

php> \help 
alias(es)                     <help>
-------------------------------------------------------
exit,die,bye,quit             Quit the shell.
reload                        Re-initialize the iphp state so it's just as if you quit and re-started.
help,?                        View a list of all installed commands.

About

An interactive php shell with support for readline, autocomplete, and fatal-error tolerance.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%