Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions pages.de/common/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@

- Überprüfe die Syntax eines PHP-Skripts:

`php -l {{pfad/zu/datei}}`
`php {{[-l|--syntax-check]}} {{pfad/zu/datei}}`

- Führen PHP interaktiv aus:

`php -a`
`php {{[-a|--interactive]}}`

- Führe einen PHP-Befehl aus:

`php -r "{{befehl}}"`
`php {{[-r|--run]}} "{{befehl}}"`

- Starte den in PHP integrierten Webserver im aktuellen Verzeichnis:

`php -S {{host:port}}`
`php {{[-S|--server]}} {{host}}:{{port}}`

- Zeige eine Liste der installierten PHP-Erweiterungen:

`php -m`
`php {{[-m|--modules]}}`

- Zeige Informationen zur aktuellen PHP-Konfiguration an:

`php -i`
`php {{[-i|--info]}}`

- Zeige Informationen zu einer bestimmten Funktion an:

`php --rf {{funktionsname}}`
`php {{[--rf|--rfunction]}} {{funktionsname}}`
14 changes: 7 additions & 7 deletions pages.ko/common/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@

- PHP 스크립트의 문법 검사(즉, 린트):

`php -l {{경로/대상/파일}}`
`php {{[-l|--syntax-check]}} {{경로/대상/파일}}`

- PHP를 대화형으로 실행:

`php -a`
`php {{[-a|--interactive]}}`

- PHP 코드 실행(참고: `<? ?>` 태그를 사용하지 마세요; 큰따옴표는 백슬래시로 이스케이프하세요):

`php -r "{{코드}}"`
`php {{[-r|--run]}} "{{코드}}"`

- 현재 디렉토리에서 PHP 내장 웹 서버 시작:

`php -S {{호스트:포트}}`
`php {{[-S|--server]}} {{호스트}}:{{포트}}`

- 설치된 PHP 확장 목록:

`php -m`
`php {{[-m|--modules]}}`

- 현재 PHP 구성에 대한 정보 표시:

`php -i`
`php {{[-i|--info]}}`

- 특정 함수에 대한 정보 표시:

`php --rf {{함수_이름}}`
`php {{[--rf|--rfunction]}} {{함수_이름}}`
14 changes: 7 additions & 7 deletions pages.pl/common/php.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,28 +9,28 @@

- Sprawdź składnię skryptu PHP (np. lint):

`php -l {{plik}}`
`php {{[-l|--syntax-check]}} {{plik}}`

- Uruchom PHP interaktywnie:

`php -a`
`php {{[-a|--interactive]}}`

- Uruchom kod PHP (uwagi: nie używaj znaczników <? ?> ; unikaj podwójnych cudzysłowów z odwrotnym ukośnikiem):

`php -r "{{kod}}"`
`php {{[-r|--run]}} "{{kod}}"`

- Uruchom wbudowany serwer PHP w bieżącym katalogu:

`php -S {{host:port}}`
`php {{[-S|--server]}} {{host}}:{{port}}`

- Uzyskaj listę zainstalowanych rozszerzeń PHP:

`php -m`
`php {{[-m|--modules]}}`

- Wyświetl informacje o bieżącej konfiguracji PHP:

`php -i`
`php {{[-i|--info]}}`

- Wyświetl informacje o konkretnej funkcji:

`php --rf {{nazwa_funkcji}}`
`php {{[--rf|--rfunction]}} {{nazwa_funkcji}}`
Loading