猿问

PHP怎么把字符串里变成转义字符

PHP怎么把字符串里变成转义字符


偶然的你
浏览 877回答 1
1回答

万千封印

编码$new = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);echo $new; // <a href='test'>Test</a>解码$str = '<p>this -> "</p>';echo htmlspecialchars_decode($str);// note that here the quotes aren't convertedecho htmlspecialchars_decode($str, ENT_NOQUOTES);
随时随地看视频慕课网APP
我要回答