* renaming tests
[m6w6/ext-http] / tests / redirect_001.phpt
1 --TEST--
2 http_redirect() with params
3 --SKIPIF--
4 <?php
5 include 'skip.inc';
6 ?>
7 --FILE--
8 <?php
9 http_redirect('redirect', array('a' => 1, 'b' => 2));
10 ?>
11 --EXPECTF--
12 Status: 302
13 Content-type: text/html
14 X-Powered-By: PHP/%s
15 Location: http://localhost/redirect?a=1&b=2
16
17 Redirecting to <a href="http://localhost/redirect?a=1&b=2">http://localhost/redirect?a=1&b=2</a>.
18