tldr/pages/common/php.md

19 lines
271 B
Markdown
Raw Normal View History

2014-02-27 19:20:14 +00:00
# php
> PHP Command Line Interface 'CLI'
- Parse and execute a file
`php {{file}}`
2014-02-27 19:30:03 +00:00
- Check syntax (lint)
`php -l {{file}}`
2014-02-27 19:20:14 +00:00
- Run PHP interactively
`php -a`
- Run PHP code. Notes: a) Don't use <? ?> tags; b) Escape double quotes with backslash
`php -r "{{code}}"`