<?php urldecode(string $string): string
<?php '#' => '-', ]; $str = Stringy::create(urldecode($string))->toAscii(); foreach ($replacements as $from => $to) { $str = $str->replace($from, $to);
<?php public function urldecode($value) { return urldecode($value); }