What is the equivalent of JavaScript's encodeURIcomponent in PHP?
feedback
|
|
Try
This function works exactly how
| |||||||||||||
feedback
|
|
Did you try | |||
feedback
|
function encodeURIComponent($string) {
$result = "";
for ($i = 0; $i < strlen($string); $i++) {
$result .= encodeURIComponentbycharacter(urlencode($string[$i]));
}
return $result;
}
| |||
|
feedback
|