CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 30 Aug 2025 13:46:35 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100527082155
location: https://web.archive.org/web/20100527082155/https://github.com/apinstein/iphp
server-timing: captures_list;dur=0.854526, exclusion.robots;dur=0.029409, exclusion.robots.policy;dur=0.014616, esindex;dur=0.017628, cdx.remote;dur=28.404882, LoadShardBlock;dur=336.283604, PetaboxLoader3.datanode;dur=125.150118, PetaboxLoader3.resolve;dur=86.938238
x-app-server: wwwb-app214
x-ts: 302
x-tr: 408
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app214; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sat, 30 Aug 2025 13:46:36 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Thu, 27 May 2010 08:21:55 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "4375de7fc2310de55f98fbf59ae002e4"
x-archive-orig-x-runtime: 66ms
x-archive-orig-content-length: 21332
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 27 May 2010 08:21:55 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 12 Dec 2009 23:05:51 GMT", ; rel="prev memento"; datetime="Mon, 12 Apr 2010 13:48:18 GMT", ; rel="memento"; datetime="Thu, 27 May 2010 08:21:55 GMT", ; rel="next memento"; datetime="Sun, 11 Dec 2011 01:59:50 GMT", ; rel="last memento"; datetime="Mon, 27 Mar 2023 13:28:45 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_16_20100527075407_crawl102-c/51_16_20100527082018_crawl101.arc.gz
server-timing: captures_list;dur=0.508271, exclusion.robots;dur=0.020444, exclusion.robots.policy;dur=0.009203, esindex;dur=0.012407, cdx.remote;dur=19.623321, LoadShardBlock;dur=198.328253, PetaboxLoader3.datanode;dur=189.079473, PetaboxLoader3.resolve;dur=159.709901, load_resource;dur=209.106844
x-app-server: wwwb-app214
x-ts: 200
x-tr: 480
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
apinstein's iphp at master - GitHub
apinstein / iphp
- Source
- Commits
- Network (7)
- Issues (3)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
Sending Request…
An interactive php shell (REPL) with support for readline, autocomplete, include/require, and fatal-error tolerance. — Read more
iphp /
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Sun Dec 20 22:25:30 -0800 2009 | fix up require so it works for dev and pear [apinstein] |
![]() |
README.markdown | Sat Jan 02 12:09:12 -0800 2010 | first pearfarm package [apinstein] |
![]() |
iphp | Sun Dec 20 22:25:30 -0800 2009 | fix up require so it works for dev and pear [apinstein] |
![]() |
iphp.php | Sat Dec 19 09:37:07 -0800 2009 | add commandEscapeChar to help [apinstein] |
![]() |
iphp_commands.php | Sat Dec 12 21:54:34 -0800 2009 | Fix duplicate bug in printHelp. Add help string... [Alan Pinstein] |
![]() |
pearfarm.spec | Sat Jan 02 12:09:12 -0800 2010 | first pearfarm package [apinstein] |
README.markdown
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
INSTALLATION
pear install apinstein.pearfarm.org/iphp
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.