mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* pages/*: add standard translation and links Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix1: false positives; standardize Bengali, Hindi, Nepali periods * fix: periods in recently added Bengali pages Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * fix: false positives in modified files Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: update to native period in Bengali l10n Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
36 lines
643 B
Markdown
36 lines
643 B
Markdown
# php
|
|
|
|
> PHP Befehlszeilenschnittstelle.
|
|
> Weitere Informationen: <https://php.net>.
|
|
|
|
- Analysiere ein PHP-Skript und führe es aus:
|
|
|
|
`php {{pfad/zu/datei}}`
|
|
|
|
- Überprüfe die Syntax eines PHP-Skripts:
|
|
|
|
`php -l {{pfad/zu/datei}}`
|
|
|
|
- Führen PHP interaktiv aus:
|
|
|
|
`php -a`
|
|
|
|
- Führe einen PHP-Befehl aus:
|
|
|
|
`php -r "{{befehl}}"`
|
|
|
|
- Starte den in PHP integrierten Webserver im aktuellen Verzeichnis:
|
|
|
|
`php -S {{host:port}}`
|
|
|
|
- Zeige eine Liste der installierten PHP-Erweiterungen:
|
|
|
|
`php -m`
|
|
|
|
- Zeige Informationen zur aktuellen PHP-Konfiguration an:
|
|
|
|
`php -i`
|
|
|
|
- Zeige Informationen zu einer bestimmten Funktion an:
|
|
|
|
`php --rf {{funktionsname}}`
|