Home
last modified time | relevance | path

Searched refs:iconv (Results 1 – 25 of 45) sorted by last modified time

12

/plugin/aichat/vendor/mehrab-wj/tiktoken-php/
H A Dcomposer.lock3796 "ext-iconv": "*",
3803 "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
/plugin/imapmarkers/syntax/
H A Dimapmarkers_simple_html_dom.php1084 $converted_text = iconv($sourceCharset, $targetCharset, $text);
1775 if (!@iconv('CP1252', 'UTF-8', $this->doc)) {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DMpdf.php13178 $success = iconv($this->charset_in, 'UTF-8//TRANSLIT', $html);
26032 $a = @iconv('UTF-8', 'UTF-8', $html);
26034 if ($error && $error['message'] === 'iconv(): Detected an illegal character in input string') {
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php15 * Partial mbstring implementation in PHP, iconv based, UTF-8 centric.
105 $s = \iconv($fromEncoding, 'UTF-8//IGNORE', $s);
116 return \iconv($fromEncoding, $toEncoding.'//IGNORE', $s);
169 $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s);
172 $s = \iconv($encoding, 'UTF-8//IGNORE', $s);
198 return \iconv('UTF-8', $encoding.'//IGNORE', $s);
235 $s = @\iconv('UTF-8', 'UTF-8//IGNORE', $s);
238 $s = \iconv($encoding, 'UTF-8//IGNORE', $s);
268 return \iconv('UTF-8', $encoding.'//IGNORE', $result);
283 $s = @\iconv('UT
[all...]
/plugin/combo/
H A Dyarn.lock112 iconv-lite@0.6.3:
114 resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
271 iconv-lite "0.6.3"
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DZip.php736 * Tries iconv with the correct encoding first, falls back to mbstring with CP850 which is
740 * On some systems iconv is available, but the codepage is not. We also check for that.
747 if (function_exists('iconv') && @iconv_strlen('', 'CP437') !== false) {
748 return iconv('CP437', 'UTF-8', $string);
766 // try iconv first
767 if (function_exists('iconv')) {
768 $conv = @iconv('UTF-8', 'CP437//IGNORE', $string);
772 // still here? iconv failed to convert the string. Try another method
773 // see http://php.net/manual/en/function.iconv.php#108643
/plugin/upgrade/
H A Dcomposer.lock34 "ext-iconv": "Used for proper filename encode handling",
/plugin/tablelayout/
H A Dyarn.lock180 iconv-lite "0.4.13"
725 iconv-lite "^0.4.17"
1108 iconv-lite "~0.4.13"
1203 iconv-lite@0.4.13:
1205 …resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.13.tgz#1f88aba4ab0b1508e8312acc…
1207 iconv-lite@^0.4.17, iconv-lite@^0.4.4, iconv-lite@~0.4.13:
1209 …resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.21.tgz#c47f8733d02171189ebc4a40…
1683 iconv-lite "^0.4.4"
1969 iconv-lite "0.4.13"
/plugin/pureldap/classes/
H A DClient.php99 if (function_exists('iconv')) {
100 $user = iconv($this->config['sso_charset'], 'UTF-8', $user);
/plugin/webdav/
H A Dcomposer.lock74 "ext-iconv": "*",
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dgetid3.lib.php1236 if ($converted_string = @iconv($in_charset, $out_charset.'//TRANSLIT', $string)) {
H A Dmodule.tag.id3v1.php81 …} elseif (function_exists('iconv') && @iconv($id3v1_bad_encoding, $id3v1_bad_encoding, $value) ===…
/plugin/jplayer/vendor/james-heinrich/getid3/
H A Dchangelog.txt182 * bugfix: iconv problems on musl with //TRANSLIT
396 * Bugfix: (#1152) add error-suppression to iconv() calls
694 * Bugfix: ID3v2 LINK frames iconv error.
854 not available. This means that iconv() is no longer required
916 WMA/ASF file if iconv is not present.
1032 partially without iconv() support enabled in PHP
1213 * Bugfix: 'UNICODE' iconv() charset changed to 'UTF-16LE' or
1244 Added instructions for enabling iconv() support under Windows
1268 » Made getID3() depend on iconv library: compile PHP --with-iconv
1316 module with iconv(). id3v2 module also reads
[all …]
/plugin/jplayer/
H A Dcomposer.lock94 …"ext-iconv": "iconv extension is required to work with different character sets (when `ext-mbstrin…
/plugin/dropfiles/
H A Dyarn.lock978 iconv-lite "^0.4.17"
1312 iconv-lite@^0.4.17:
1314 …resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.19.tgz#f7468f60135f5e5dad3399c0…
/plugin/datatables/assets/pdfmake/build/
H A Dpdfmake.min.js
/plugin/findologicxmlexport/vendor/hoa/ustring/
H A DCHANGELOG.md23 * `ext/iconv` is suggested, no longer required. (Ivan Enderlin, 2015-08-03T07:06:46+02:00)
H A DUstring.php1019 return iconv($from, $to, $string);
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DParserTest.php545 iconv('UTF-8', 'ISO-8859-1', "foo: 'äöüß'"),
546 iconv('UTF-8', 'ISO-8859-15', "euro: '€'"),
547 iconv('UTF-8', 'CP1252', "cp1252: '©ÉÇáñ'"),
/plugin/findologicxmlexport/vendor/twig/twig/src/Extension/
H A DCoreExtension.php1161 return iconv($from, $to, $string);
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DREADME.md495 `zlib.*`, `bzip2.*`, `convert.iconv.*` etc. The
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Fixtures/filters/
H A Dconvert_encoding.test4 function_exists('iconv') || function_exists('mb_convert_encoding')
/plugin/findologicxmlexport/vendor/twig/twig/
H A DCHANGELOG568 … use mbstring whenever possible instead of iconv (you might need to update your encoding as mbstri…
/plugin/findologicxmlexport/vendor/twig/twig/doc/filters/
H A Dconvert_encoding.rst17 This filter relies on the `iconv`_ or `mbstring`_ extension, so one of
19 default (Twig before 1.8.1 uses `iconv`_ by default).
27 .. _`iconv`: https://secure.php.net/iconv target
/plugin/authfacebook/
H A Dauth.php152 …er = preg_replace("/[^a-z0-9]/","_",strtolower(trim(basename(stripslashes(iconv("utf8","ascii//tra…

12