ylsunyuan技术论坛

标题: 正则匹配查找 preg_match 函数的应用 [打印本页]

作者: sun    时间: 2015-4-25 10:48
标题: 正则匹配查找 preg_match 函数的应用
  1. <?php
  2. error_reporting(0);
  3. header("Content-type: text/html; charset=utf-8");
  4. //header("Content-type: text/html; charset=utf-8");
  5. $weather = "天气 文本";

  6. preg_match("/^天气 (.*)/", $weather, $res);
  7. var_dump($res);
  8. echo "<br>";
  9. var_dump($res[1]);
复制代码
preg_match("/^天气 (.*)/", $weather, $res);    //$res 返回的是括号括起来的部分值
返回的是“文本”






欢迎光临 ylsunyuan技术论坛 (http://bbs.ylsunyuan.com/) Powered by Discuz! X3.2