* nicer MINFO
[m6w6/ext-http] / tests / 021_redirect.phpt
1 --TEST--
2 http_redirect() with session
3 --SKIPIF--
4 <?php
5 extension_loaded('http') or die('ext/http not available');
6 strncasecmp(PHP_SAPI, 'CLI', 3) or die('cannot run tests with CLI');
7 ?>
8 --FILE--
9 <?php
10 session_start();
11 http_redirect('redirect', array('a' => 1), true);
12 ?>
13 --EXPECTF--
14 Status: 302
15 Content-type: text/html
16 X-Powered-By: PHP/%s
17 Set-Cookie: PHPSESSID=%s; path=/
18 Expires: %s
19 Cache-Control: %s
20 Pragma: %s
21 Location: http://localhost/redirect?a=1&PHPSESSID=%s