代码如下,urlencode或rawurlencode函数为什么没有对输入的内容生效?
比如输入中文或其他特殊字符,应该输出编码字符串才对吧??但是没有生效
感谢测试,我要输出的是编码格式,不是原文格式,就像@黑白码农第一张截图的data里的编码格式
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>test</title>
</head>
<body>
<input type="text" id="txt" name="txt" value="">
<button type="button" onclick="test();">点击</button>
<?
$test = "<script type=text/javascript>function test(){var txt= document.getElementById('txt').value;var data = ".rawurlencode('txt').";document.write(data);}</script>";
echo $test;
?>
</body>
</html>