This website requires JavaScript.
Explore
Help
Sign In
ctome
/
tldr
mirror of
https://github.com/CrimsonTome/tldr.git
Watch
1
Star
0
Fork
You've already forked tldr
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
7d5449e69d
tldr
/
pages
/
common
/
php.md
271 B
Raw
Blame
History
php
PHP Command Line Interface 'CLI'
Parse and execute a file
php {{file}}
Check syntax (lint)
php -l {{file}}
Run PHP interactively
php -a
Run PHP code. Notes: a) Don't use tags; b) Escape double quotes with backslash
php -r "{{code}}"