|
PHP复制代码
$headers = "content-type: text/html; charset=UTF-8\r\n".
"Server: Funky/1.0\r\n".
"Set-Cookie: foo=bar\r\n".
"Set-Cookie: baz=quux\r\n".
"Folded: works\r\n\ttoo\r\n";
print_r(http_parse_headers($headers));
复制代码
为何找不到 http_parse_headers() 这个函数?? 我看PHP文档中有这个函数的介绍啊! |
|