1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 17:53:50 +02:00

php: tweak some descriptions

This commit is contained in:
Waldir Pimenta 2016-11-05 18:59:21 +00:00 committed by GitHub
parent 11f2cb2037
commit 39f27492c7

View file

@ -2,11 +2,11 @@
> PHP command line interface. > PHP command line interface.
- Parse and execute a file: - Parse and execute a php script:
`php {{file}}` `php {{file}}`
- Check syntax (lint): - Check syntax on (i.e. lint) a PHP script:
`php -l {{file}}` `php -l {{file}}`
@ -14,7 +14,7 @@
`php -a` `php -a`
- Run PHP code. Notes: a) Don't use <? ?> tags; b) Escape double quotes with backslash: - Run PHP code (Notes: Don't use <? ?> tags; escape double quotes with backslash):
`php -r "{{code}}"` `php -r "{{code}}"`