芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/chicxulubpuebloyucatan.gob.mx/libraries/vendor/joomla/uri/src/UriHelper.php
'!', '%2A' => '*', '%27' => "'", '%28' => '(', '%29' => ')', '%3B' => ';', '%3A' => ':', '%40' => '@', '%26' => '&', '%3D' => '=', '%24' => '$', '%2C' => ',', '%2F' => '/', '%3F' => '?', '%23' => '#', '%5B' => '[', '%5D' => ']', ]; // Encode the URL (so UTF-8 chars are encoded), revert the encoding in the reserved uri characters and parse the url. $parts = parse_url(strtr(urlencode($url), $reservedUriCharactersMap), $component); // With a well formed url decode the url (so UTF-8 chars are decoded). return $parts ? array_map('urldecode', $parts) : $parts; } }