>백엔드 개발 >PHP 튜토리얼 >请问这段内容怎么用正则 进行匹配

请问这段内容怎么用正则 进行匹配

WBOY
WBOY원래의
2016-06-13 10:24:12782검색

请教这段内容如何用正则 进行匹配


 
Username

 

 
Password

 

   

 
请问这段内容怎么用正则 进行匹配

<script>function captchareload2(){<br />$("#captchaimglogin").attr('src','modules/captcha/captcha.php?r=login&x=34&y=75&z=119&?newtime=' + (new Date()).getTime());<br />}</script>

 

   
 

 


===========================================
上面这段内容:

1、把
请问这段内容怎么用正则 进行匹配

<script>function captchareload2(){<br />$("#captchaimglogin").attr('src','modules/captcha/captcha.php?r=login&x=34&y=75&z=119&?newtime=' + (new Date()).getTime());<br />}</script>
,取出来,用正则匹配

2、匹配 在
里是否包含 第1点 的内容,有包含 输出真,没包含输出假

=======================================

我是在搞不懂了,请帮帮忙

------解决方案--------------------
PHP code
 $s=  <div style="padding-bottom:5px">Username</div>  <div style="padding-bottom:5px"><input type="text" name="username" style="width:180px"></div>  <div style="padding-bottom:5px">Password</div>  <div style="padding-bottom:5px"><input type="password" name="password" style="width:180px"></div>      <div style="padding-bottom:5px">
<div style="padding:5px 0px"><a href="javascript:void(0);" onclick="captchareload2();"><img  src="modules/captcha/captcha.php?r=login" id="captchaimglogin" border="0" alt="请问这段内容怎么用正则 进行匹配" ></a></div>
<script>function captchareload2(){$("#captchaimglogin").attr('src','modules/captcha/captcha.php?r=login&x=34&y=75&z=119&?newtime=' + (new Date()).getTime());}</script>
</div>  <div style="padding-bottom:5px"><input type="text" name="captcha" id="captcha_login" style="width:180px"></div>      <div style="padding-bottom:5px"><input type="submit" name="login" value="Login" class="orange"></div>  html;preg_match('/<div style="padding-bottom:5px"><div style="padding:5px 0px">.+(?=javascript:void\(0\)).+/s',$s,$m);print_r($m);<div class="clear">
                 
              
              
        
            </div>
</div></div>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.