diff options
| author | wn_ <invalid@email.com> | 2024-12-09 17:58:28 +0000 |
|---|---|---|
| committer | wn_ <invalid@email.com> | 2024-12-09 17:58:28 +0000 |
| commit | f6a8facfd4bfc40025c069eebc37094d826aff58 (patch) | |
| tree | 871aab0d8adafe736d954cae1783c260699c0ec3 /vendor/thecodingmachine/safe/generated/iconv.php | |
| parent | cd2c10f9f71409df24fc74c1bbd7d5ddbf48d991 (diff) | |
Bump 'spomky-labs/otphp' to 11.3.x.
This is mainly for PHP 8.4 compatibility.
Diffstat (limited to 'vendor/thecodingmachine/safe/generated/iconv.php')
| -rw-r--r-- | vendor/thecodingmachine/safe/generated/iconv.php | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/vendor/thecodingmachine/safe/generated/iconv.php b/vendor/thecodingmachine/safe/generated/iconv.php deleted file mode 100644 index 7b28b4965..000000000 --- a/vendor/thecodingmachine/safe/generated/iconv.php +++ /dev/null @@ -1,95 +0,0 @@ -<?php - -namespace Safe; - -use Safe\Exceptions\IconvException; - -/** - * Retrieve internal configuration variables of iconv extension. - * - * @param string $type The value of the optional type can be: - * - * all - * input_encoding - * output_encoding - * internal_encoding - * - * @return mixed Returns the current value of the internal configuration variable if - * successful. - * - * If type is omitted or set to "all", - * iconv_get_encoding returns an array that - * stores all these variables. - * @throws IconvException - * - */ -function iconv_get_encoding(string $type = "all") -{ - error_clear_last(); - $result = \iconv_get_encoding($type); - if ($result === false) { - throw IconvException::createFromPhpError(); - } - return $result; -} - - -/** - * Changes the value of the internal configuration variable specified by - * type to encoding. - * - * @param string $type The value of type can be any one of these: - * - * input_encoding - * output_encoding - * internal_encoding - * - * @param string $encoding The character set. - * @throws IconvException - * - */ -function iconv_set_encoding(string $type, string $encoding): void -{ - error_clear_last(); - $result = \iconv_set_encoding($type, $encoding); - if ($result === false) { - throw IconvException::createFromPhpError(); - } -} - - -/** - * Converts string from from_encoding - * to to_encoding. - * - * @param string $from_encoding The current encoding used to interpret string. - * @param string $to_encoding The desired encoding of the result. - * - * If the string //TRANSLIT is appended to - * to_encoding, then transliteration is activated. This - * means that when a character can't be represented in the target charset, - * it may be approximated through one or several similarly looking - * characters. If the string //IGNORE is appended, - * characters that cannot be represented in the target charset are silently - * discarded. Otherwise, E_NOTICE is generated and the function - * will return FALSE. - * - * If and how //TRANSLIT works exactly depends on the - * system's iconv() implementation (cf. ICONV_IMPL). - * Some implementations are known to ignore //TRANSLIT, - * so the conversion is likely to fail for characters which are illegal for - * the to_encoding. - * @param string $string The string to be converted. - * @return string Returns the converted string. - * @throws IconvException - * - */ -function iconv(string $from_encoding, string $to_encoding, string $string): string -{ - error_clear_last(); - $result = \iconv($from_encoding, $to_encoding, $string); - if ($result === false) { - throw IconvException::createFromPhpError(); - } - return $result; -} |