万州区
html 表单提交过来的有些异常数据是这样的,怎么解密?
1
wangkun025 319 天前 ![]() 万州区
URL Encode and Decode |
![]() |
2
markgor 319 天前 ![]() 万州区
html 实体编码 |
![]() |
3
frozenway OP @markgor @wangkun025
php 怎么解密? ``` <?php echo htmlspecialchars_decode('万州区', ENT_QUOTES); ``` 解密不了 |
5
keepeye 319 天前 ![]() <?php
echo html_entity_decode('万州区'); |