projects
/
m6w6
/
ext-http
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
|
github
history
|
raw
|
HEAD
- fix PHP4 build (has no only_exceptions INI setting
[m6w6/ext-http]
/
tests
/
allowed_methods_001.phpt
1
--TEST--
2
allowed methods
3
--SKIPIF--
4
<?php
5
include 'skip.inc';
6
checkcgi();
7
?>
8
--FILE--
9
<?php
10
ini_set('http.allowed_methods', 'POST');
11
echo "Done\n";
12
?>
13
--EXPECTF--
14
Status: 405
15
Content-type: %s
16
X-Powered-By: PHP/%s
17
Allow: POST
18