mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 00:53:08 +02:00
php: add German translation (#10857)
This commit is contained in:
parent
e217a74172
commit
1d6fa3c194
1 changed files with 36 additions and 0 deletions
36
pages.de/common/php.md
Normal file
36
pages.de/common/php.md
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# php
|
||||||
|
|
||||||
|
> PHP Befehlszeilenschnittstelle.
|
||||||
|
> Mehr 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}}`
|
Loading…
Add table
Reference in a new issue