php: add German translation (#10857)

This commit is contained in:
theBulaDev
2023-10-09 05:51:15 +02:00
committed by GitHub
parent e217a74172
commit 1d6fa3c194

36
pages.de/common/php.md Normal file
View 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}}`