PHP判断并处理被urlencode过的字符串

问题描述:

给你一个字符串如何判断是被urlencode过的字符串,如果是则解码,输出编码前的内容。

举例:

$content_1="这是一段汉字文本";
$content_2="%E8%BF%99%E6%98%AF%E4%B8%80%E6%AE%B5%E8%A2%ABurlencode%E8%BF%87%E7%9A%84%E6%96%87%E5%AD%97%E3%80%82";

如何判断$content_2 是被urlencode编码过的字符串呢?正则匹配?不是不可以,可以根据特殊字符%有规律的出现。只是感觉有点lower。


解决办法:

使用 函数 urldecode就可以很好的解决。

urldecode() 解码 URL 字符串函数。

此函数用于解码给出的已编码字符串中的任何 %##以及中文等被编码的内容。 (加号(’+’)被解码成一个空格字符)。

该函数经常被使用于php解码URL中的中文字符串。

可以把上面的$content_1$content_2 使用下面的方法进行测试,看看输出结果。

if(urldecode($content)==$content){
	echo "字符串未被编码";
}else{
	echo "字符串被编码"; 
	$content=urldecode($content)
}
echo $content;

或者:

$content=urldecode($content)==$content?$content:urldecode($content);
echo $content;


END


如有问题请在下方留言。

或关注我的公众号“孙三苗”,输入“联系方式”。获得进一步帮助。

在这里插入图片描述

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
PHP字符串函数可以分为以下几类: 1. 字符串操作函数:用于对字符串进行操作,如拼接、替换、截取等。常用函数有:strlen、substr、str_replace、str_pad等。 示例: 获取字符串长度: ``` $str = "hello world"; $length = strlen($str); // $length = 11 ``` 截取字符串: ``` $str = "hello world"; $sub_str = substr($str, 0, 5); // $sub_str = "hello" ``` 替换字符串: ``` $str = "hello world"; $new_str = str_replace("world", "php", $str); // $new_str = "hello php" ``` 2. 字符串格式化函数:用于对字符串进行格式化,如大小写转换、去除空格等。常用函数有:strtolower、strtoupper、trim等。 示例: 将字符串转换为大写: ``` $str = "hello world"; $new_str = strtoupper($str); // $new_str = "HELLO WORLD" ``` 去除字符串中的空格: ``` $str = " hello world "; $new_str = trim($str); // $new_str = "hello world" ``` 3. 字符串查询函数:用于查询字符串是否包含某个子串或者某个字符的位置。常用函数有:strpos、strrpos、strstr等。 示例: 查询字符串是否包含某个子串: ``` $str = "hello world"; $pos = strpos($str, "world"); // $pos = 6 ``` 查询字符在字符串中最后一次出现的位置: ``` $str = "hello world"; $pos = strrpos($str, "o"); // $pos = 7 ``` 4. 字符串编码函数:用于对字符串进行编码和解码。常用函数有:urlencodeurldecode、base64_encode、base64_decode等。 示例: 将字符串进行 URL 编码: ``` $str = "hello world"; $new_str = urlencode($str); // $new_str = "hello+world" ``` 将字符串进行 Base64 编码: ``` $str = "hello world"; $new_str = base64_encode($str); // $new_str = "aGVsbG8gd29ybGQ=" ```

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值