gpt4 book ai didi

php - PHP 中 JavaScript 的 encodeURIcomponent 等价物是什么?

转载 作者:IT老高 更新时间:2023-10-28 11:55:31 25 4
gpt4 key购买 nike

PHP中JavaScript的encodeURIcomponent函数等价于什么?

最佳答案

试试 rawurlencode .或者更准确地说:

function encodeURIComponent($str) {
$revert = array('%21'=>'!', '%2A'=>'*', '%27'=>"'", '%28'=>'(', '%29'=>')');
return strtr(rawurlencode($str), $revert);
}

此功能完全有效how encodeURIComponent is defined :

encodeURIComponent escapes all characters except the following: alphabetic, decimal digits, - _ . ! ~ * ' ( )

关于php - PHP 中 JavaScript 的 encodeURIcomponent 等价物是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1734250/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com