Update cheatsheets

This commit is contained in:
ivuorinen
2025-10-17 00:19:47 +00:00
parent b18a761896
commit aa594e72af
88 changed files with 444 additions and 114 deletions

View File

@@ -6,7 +6,7 @@ source: https://github.com/tldr-pages/tldr.git
# php
> PHP command-line interface.
> More information: <https://php.net>.
> More information: <https://www.php.net/manual/en/features.commandline.options.php>.
- Parse and execute a PHP script:
@@ -20,11 +20,11 @@ source: https://github.com/tldr-pages/tldr.git
`php {{[-a|--interactive]}}`
- Run PHP code (Notes: Don't use <? ?> tags; escape double quotes with backslash):
- Run PHP code (Notes: Don't use `<? ?>` tags; escape double quotes with backslash):
`php {{[-r|--run]}} "{{code}}"`
- Start a PHP built-in web [S]erver in the current directory:
- Start a PHP built-in web server in the current directory:
`php {{[-S|--server]}} {{host}}:{{port}}`