008——php字符串中的处理函数(七)

<?php
/**
 *字符串处理函数(六)get_magic_quotes_runtime set_magic_quotes_runtime strip_tags
 *get_magic_quotes_runtime()  获得外部文件及数据库资料时是否进行转义
 * set_magic_quotes_runtime(1); 设置获得外部文件及数据资料时是否进行转义
 *
 * strip_tags()去除html.xml中的标签
 *
 * phpinfo();
 */



//echo "<br/>";
//$mysqli=new mysqli('localhost','root','','edu');
//$mysqli->query('set names gbk');
//$sql="select * from user";
//$result=$mysqli->query($sql);
//while ($row=$result->fetch_assoc()){
//    echo "<pre>";
//    print_r($row);
//}
//$file = fopen('28_1.txt',r);
//$con = fread($file, filesize('28_1.txt'));
//echo $con;

$str="<div style='background-color: aquamarine; height: 50px; width: 300px;'>
<span style='color: blueviolet'>百度网</span><b>PHP课程</b>
</div>";
echo $str;
echo strip_tags($str,'<span>');

  

posted @ 2017-11-03 06:56  生如逆旅,一苇以航  阅读(140)  评论(0编辑  收藏  举报