如何用正则表达式匹配到PHP多行注释?

/************123****************/如何用正则表达式匹配出来?... /************
1
2
3
****************/
如何用正则表达式匹配出来?
展开
 我来答
dispose
2014-06-23 · TA获得超过642个赞
知道小有建树答主
回答量:458
采纳率:0%
帮助的人:493万
展开全部
<?php
$str = '
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/';
preg_match_all('|/\*.*?\*/|is', $str, $matches);
print_r($matches);

exit;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
形单影只向谁去
2014-06-23 · TA获得超过211个赞
知道小有建树答主
回答量:242
采纳率:0%
帮助的人:207万
展开全部
/\/[*]{2,}[^*]+[*]{2,}\//g;
更多追问追答
追问
这个不能用啊
追答

这个我刚用javascript测试过的,正则表达式没有问题。


我这个正则是匹配 /** xxx **/这种多行注释。

本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
tsotsi
2014-06-23 · TA获得超过940个赞
知道小有建树答主
回答量:1367
采纳率:55%
帮助的人:694万
展开全部
正则
/\/\*[\s\S]\*\//U
更多追问追答
追问
也不能用啊
我想把那些注释用正则给找出来
追答
$str=  file_get_contents('./9.php');
preg_match_all('/\/\*[\s\S]*\*\//U',$str,$matches);
var_dump($matches);
下面是9.php文件内容
<?php

/* 
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式