获取“位置:”和“位置:”的位置标题

时间:2017-01-13 15:35:40

标签: php preg-match preg-match-all

如何使pregmatch与'location: ''Location: '匹配?

preg_match('#Location: (.*)#', $curl, $result)

1 个答案:

答案 0 :(得分:0)

只是让正则表达式不区分大小写:

preg_match('#Location: (.*)#i', $curl, $result)
//                   here __^