mirror of
https://github.com/MrUnknownDE/linux-script.git
synced 2026-04-07 17:03:44 +02:00
10 lines
183 B
PHP
10 lines
183 B
PHP
<?php
|
|
|
|
// Zeigt alle Informationen (Standardwert ist INFO_ALL)
|
|
phpinfo();
|
|
|
|
// Zeigt nur die Modul-Informationen.
|
|
// phpinfo(8) führt zum gleichen Ergebnis.
|
|
phpinfo(INFO_MODULES);
|
|
|
|
?>
|