/
niceSOFT
/
cups
Обзор
Документация
Войти
/
niceSOFT
/
cups
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
doc/test.php
20 строк
462 B
Michael R Sweet
Update CGI documentation and add testable examples for CGI support (Apple #5940)
09 сен 2021, 18:03
Не верифицирован
09 сен 2021, 18:03
3318d9f
Код
Авторство
О чём код?
#!/usr/bin/php -nf <?php print("Content-Type: text/html\n\n"); print("<!DOCTYPE html>\n" ."<html>\n" ." <head>\n" ." <title>PHP script CGI test page</title>\n" ." </head>\n" ." <body>\n" ." <h1>PHP script CGI test page</h1>\n" ." <pre><kbd>ps ax</kbd>\n"); $fp = popen("ps ax", "r"); while ($line = fgets($fp, 1024)) { print(htmlspecialchars($line)); } print("</pre>\n" ." </body>\n" ."</html>\n"); ?>