Heim > Backend-Entwicklung > PHP-Tutorial > 一段PHP代码有关问题

一段PHP代码有关问题

WBOY
Freigeben: 2016-06-13 13:41:30
Original
973 Leute haben es durchsucht

一段PHP代码问题

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->

$url = "http://localhost/index.php/"."$string1";
   
    $contents = file_get_contents($url);

print_r($contents);    


Nach dem Login kopieren


PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->

    $url = "http://localhost/index.php/"."$string1";
   
    $contents = file_get_contents($url);

//print_r($contents);    
       
   if((preg_match_all('/(<h1.>)/iUs', $contents, $match))){
        $contents = $match[1][0];
    }
print_r($contents);


</h1.>
Nach dem Login kopieren



为什么这2段代码打印出的结果是一样的啊,这个网页是

...结构的啊,其他类似的能成功截取,就是这个网页打印出的结果和没截取是一样的。。。

------解决方案--------------------
给出你的页面内容才行呀,这样子你让人怎么猜? 有问题的肯定就是在正则咯
------解决方案--------------------
第二段正则的地方输出看下
PHP code
  

 if((preg_match_all('/(<h1.>)/iUs', $contents, $match))){
         echo '333';                   //测试下是否正则匹配到
        $contents = $match[1][0];
        var_dump($contents);           //打印输出看下
    }
<br><font color="#e78608">------解决方案--------------------</font><br>网页是<h1>...结构。而 preg_match_all('/(<h1.>)/iUs 等于是匹配全部结构。<br>又 $contents = $match[1][0]; //如果页面仅有一个<h1>... 结构。<br><br>那么。跟file_get_contents()得出的结果不是一样。是什么?
<br><font color="#e78608">------解决方案--------------------</font><br>正则表达式有错误,改成:<br>preg_match_all('/<h1>.*/sU', $contents, $match)
<br><font color="#e78608">------解决方案--------------------</font><br>
preg_match('/<h1.>/is',$str,$m);<br>echo $m[0];
<br><font color="#e78608">------解决方案--------------------</font><br>
'">3,3'-二氯联苯胺<a ...></a>你入库的数据没有做转义处理,所以出错<br><br>mediumtext类型最大可存放 16M 字符,应该足够了
<br><font color="#e78608">------解决方案--------------------</font><br>
$content=mysql_real_escape_string($contents[0]);<br>$SQL="INSERT INTO pagecontents (old_title,old_text) VALUES('{$string}','{$content}')"; <div class="clear">
                 
              
              
        
            </div></h1.>
</h1>
</h1></h1.>
</h1></h1.>
Nach dem Login kopieren

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage