PHP ? rawurlencode()
???????????????????????? URL ????,????????? %
???????????? PHP ???????????,???????,???????
??,???????? URL ?????,????????????????????????,????????????? URL ????:
function custom_rawurlencode($string) {
$result = '';
$length = mb_strlen($string, 'UTF-8');
for ($i = 0; $i < $length; $i++) {
$char = mb_substr($string, $i, 1, 'UTF-8');
$encodedChar = rawurlencode($char);
// ???,??????????????
// ??,????????????
if ($char === ' ') {
$encodedChar = '+';
}
$result .= $encodedChar;
}
return $result;
}
$input = 'Hello, ??!';
$encoded = custom_rawurlencode($input);
echo $encoded; // ??: Hello,+世界!
??????,????????? custom_rawurlencode()
???,?????????????,???? rawurlencode()
????????????,???????????????????