Blogger Information
Blog 57
fans 0
comment 0
visits 46960
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
字符串的转意输出
藍錄的博客
Original
555 people have browsed it

实例

<?php
/**
 *
 */

// nl2br(): 让\n产生换行的效果,实际上就是在\n后面插入了一个<br>
$str1 = "2018年世界杯, \n 中国除了足球队没去,其它都去了";
echo nl2br($str1), '<br>';

//htmlspecialchars()
$str2 = '<h1>他是\'一个 有"故事"的人</h1>';
echo $str2, '<br>';
// 正常转义输出: ', ", &,<,>
echo htmlspecialchars($str2), '<hr>';

$str3 = "<h1>他是'一个&nbsp;有"故事"的人</h1>";
echo htmlspecialchars_decode($str3),'<hr>';

// htmlentities()
echo '<br>';
$str4 = "<p>中&美贸\$易战,'中国'必胜</p>";
echo htmlentities($str4),'<br>';

// strip_tags()
$str5 = '<p>php是世界上<span style="color:red">最好</span>的编程语言吗?</p>';
echo $str5;
echo strip_tags($str5);
// 保留<span>
echo strip_tags($str5,'<span>');
//php是世界上<span style="color:red">最好</span>的编程语言吗?

运行实例 »

点击 "运行实例" 按钮查看在线实例

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post