<?php strtr(string $string, string $from, string $to): string
<?php '%25' => '%', ]; return strtr(rawurlencode($url), $dont_encode); }
<?php $replacements['\\'.$from] = '['.$from.']'; } return strtr($format, $replacements); } public static function containsTime($format)