php: add German translation (#10857)

pull/23/head
theBulaDev 2023-10-09 05:51:15 +02:00 committed by GitHub
parent e217a74172
commit 1d6fa3c194
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

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}}`