ylsunyuan技术论坛
标题:
正则匹配查找 preg_match 函数的应用
[打印本页]
作者:
sun
时间:
2015-4-25 10:48
标题:
正则匹配查找 preg_match 函数的应用
<?php
error_reporting(0);
header("Content-type: text/html; charset=utf-8");
//header("Content-type: text/html; charset=utf-8");
$weather = "天气 文本";
preg_match("/^天气 (.*)/", $weather, $res);
var_dump($res);
echo "<br>";
var_dump($res[1]);
复制代码
preg_match("/^天气 (.*)/", $weather, $res); //$res 返回的是括号括起来的部分值
返回的是“文本”
欢迎光临 ylsunyuan技术论坛 (http://bbs.ylsunyuan.com/)
Powered by Discuz! X3.2