/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
sapi/cgi/tests/apache_response_headers.phpt
46 строк
879 B
Fabien Villepinte
Clean DONE tags from tests
07 ноя 2019, 23:31
07 ноя 2019, 23:31
a555cc0
Код
Авторство
О чём код?
--TEST-- apache_response_headers() --SKIPIF-- <?php include "skipif.inc"; ?> --FILE-- <?php include "include.inc"; $php = get_cgi_path(); reset_env_vars(); $test_file = __DIR__ . DIRECTORY_SEPARATOR ."apache_response_headers.test.php"; $code = '<?php'; $code .= ' header( "X-Robots-Tag : noindex,nofollow,noarchive" ); header( "Content-type: text/html; charset=UTF-8" ); header( "Bad-header" ); header( " : " ); header( ":" ); flush(); var_dump( apache_response_headers() ); ?> '; file_put_contents( $test_file, $code ); passthru( "$php -n -q " . escapeshellarg( $test_file ) ); ?> --CLEAN-- <?php @unlink( __DIR__ . DIRECTORY_SEPARATOR ."apache_response_headers.test.php" ); ?> --EXPECTF-- array(3) { ["X-Powered-By"]=> string(%d) "PHP/%s" ["X-Robots-Tag"]=> string(26) "noindex,nofollow,noarchive" ["Content-type"]=> string(24) "text/html; charset=UTF-8" }