chillerlan-QRCode-Common-ECICharset.html 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Documentation</title>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <base href="../">
  8. <link rel="icon" href="images/favicon.ico"/>
  9. <link rel="stylesheet" href="css/normalize.css">
  10. <link rel="stylesheet" href="css/base.css">
  11. <link rel="preconnect" href="https://fonts.gstatic.com">
  12. <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
  13. <link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;600;700&display=swap" rel="stylesheet">
  14. <link rel="stylesheet" href="css/template.css">
  15. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0/css/all.min.css" integrity="sha256-ybRkN9dBjhcS2qrW1z+hfCxq+1aBdwyQM5wlQoQVt/0=" crossorigin="anonymous" />
  16. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/themes/prism-okaidia.css">
  17. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-numbers/prism-line-numbers.css">
  18. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-highlight/prism-line-highlight.css">
  19. <script src="https://cdn.jsdelivr.net/npm/fuse.js@3.4.6"></script>
  20. <script src="https://cdn.jsdelivr.net/npm/css-vars-ponyfill@2"></script>
  21. <script src="js/template.js"></script>
  22. <script src="js/search.js"></script>
  23. <script defer src="js/searchIndex.js"></script>
  24. </head>
  25. <body id="top">
  26. <header class="phpdocumentor-header phpdocumentor-section">
  27. <h1 class="phpdocumentor-title"><a href="" class="phpdocumentor-title__link">Documentation</a></h1>
  28. <input class="phpdocumentor-header__menu-button" type="checkbox" id="menu-button" name="menu-button" />
  29. <label class="phpdocumentor-header__menu-icon" for="menu-button">
  30. <i class="fas fa-bars"></i>
  31. </label>
  32. <section data-search-form class="phpdocumentor-search">
  33. <label>
  34. <span class="visually-hidden">Search for</span>
  35. <svg class="phpdocumentor-search__icon" width="21" height="20" viewBox="0 0 21 20" fill="none" xmlns="http://www.w3.org/2000/svg">
  36. <circle cx="7.5" cy="7.5" r="6.5" stroke="currentColor" stroke-width="2"/>
  37. <line x1="12.4892" y1="12.2727" x2="19.1559" y2="18.9393" stroke="currentColor" stroke-width="3"/>
  38. </svg>
  39. <input type="search" class="phpdocumentor-field phpdocumentor-search__field" placeholder="Loading .." disabled />
  40. </label>
  41. </section>
  42. <nav class="phpdocumentor-topnav">
  43. <ul class="phpdocumentor-topnav__menu">
  44. <li class="phpdocumentor-topnav__menu-item -menu">
  45. <a href="https://php-qrcode.readthedocs.io">
  46. <span>
  47. User Manual
  48. </span>
  49. </a>
  50. </li>
  51. <li class="phpdocumentor-topnav__menu-item -social">
  52. <a href="https://github.com/chillerlan/php-qrcode">
  53. <span>
  54. <i class="fab fa-github"></i>
  55. </span>
  56. </a>
  57. </li>
  58. <li class="phpdocumentor-topnav__menu-item -social">
  59. <a href="https://github.com/chillerlan/php-qrcode/discussions">
  60. <span>
  61. <i class="fas fa-envelope-open-text"></i>
  62. </span>
  63. </a>
  64. </li>
  65. </ul>
  66. </nav>
  67. </header>
  68. <main class="phpdocumentor">
  69. <div class="phpdocumentor-section">
  70. <input class="phpdocumentor-sidebar__menu-button" type="checkbox" id="sidebar-button" name="sidebar-button" />
  71. <label class="phpdocumentor-sidebar__menu-icon" for="sidebar-button">
  72. Menu
  73. </label>
  74. <aside class="phpdocumentor-column -three phpdocumentor-sidebar">
  75. <section class="phpdocumentor-sidebar__category -namespaces">
  76. <h2 class="phpdocumentor-sidebar__category-header">Namespaces</h2>
  77. <h4 class="phpdocumentor-sidebar__root-namespace">
  78. <a href="namespaces/chillerlan.html" class="">chillerlan</a>
  79. </h4>
  80. <ul class="phpdocumentor-list">
  81. <li>
  82. <a href="namespaces/chillerlan-qrcode.html" class="">QRCode</a>
  83. </li>
  84. <li>
  85. <a href="namespaces/chillerlan-qrcodetest.html" class="">QRCodeTest</a>
  86. </li>
  87. </ul>
  88. </section>
  89. <section class="phpdocumentor-sidebar__category -packages">
  90. <h2 class="phpdocumentor-sidebar__category-header">Packages</h2>
  91. <h4 class="phpdocumentor-sidebar__root-namespace">
  92. <a href="packages/Application.html" class="">Application</a>
  93. </h4>
  94. </section>
  95. <section class="phpdocumentor-sidebar__category -reports">
  96. <h2 class="phpdocumentor-sidebar__category-header">Reports</h2>
  97. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/deprecated.html">Deprecated</a></h3>
  98. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/errors.html">Errors</a></h3>
  99. <h3 class="phpdocumentor-sidebar__root-package"><a href="reports/markers.html">Markers</a></h3>
  100. </section>
  101. <section class="phpdocumentor-sidebar__category -indices">
  102. <h2 class="phpdocumentor-sidebar__category-header">Indices</h2>
  103. <h3 class="phpdocumentor-sidebar__root-package"><a href="indices/files.html">Files</a></h3>
  104. </section>
  105. </aside>
  106. <div class="phpdocumentor-column -nine phpdocumentor-content">
  107. <section>
  108. <ul class="phpdocumentor-breadcrumbs">
  109. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan.html">chillerlan</a></li>
  110. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan-qrcode.html">QRCode</a></li>
  111. <li class="phpdocumentor-breadcrumb"><a href="namespaces/chillerlan-qrcode-common.html">Common</a></li>
  112. </ul>
  113. <article class="phpdocumentor-element -class">
  114. <h2 class="phpdocumentor-content__title">
  115. ECICharset
  116. <div class="phpdocumentor-element__package">
  117. in package
  118. <ul class="phpdocumentor-breadcrumbs">
  119. <li class="phpdocumentor-breadcrumb"><a href="packages/Application.html">Application</a></li>
  120. </ul>
  121. </div>
  122. </h2>
  123. <div class="phpdocumentor-label-line">
  124. <div class="phpdocumentor-label phpdocumentor-label--success"><span>Final</span><span>Yes</span></div>
  125. </div>
  126. <aside class="phpdocumentor-element-found-in">
  127. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  128. :
  129. <span class="phpdocumentor-element-found-in__line">21</span>
  130. </aside>
  131. <p class="phpdocumentor-summary">ISO/IEC 18004:2000 - 8.4.1 Extended Channel Interpretation (ECI) Mode</p>
  132. <h3 id="toc">
  133. Table of Contents
  134. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#toc" class="headerlink"><i class="fas fa-link"></i></a>
  135. </h3>
  136. <h4 id="toc-constants">
  137. Constants
  138. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#toc-constants" class="headerlink"><i class="fas fa-link"></i></a>
  139. </h4>
  140. <dl class="phpdocumentor-table-of-contents">
  141. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  142. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_BIG5">BIG5</a>
  143. <span>
  144. &nbsp;= 28 </span>
  145. </dt>
  146. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  147. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_CP437">CP437</a>
  148. <span>
  149. &nbsp;= 0 </span>
  150. </dt>
  151. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  152. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_CP437_WO_GLI">CP437_WO_GLI</a>
  153. <span>
  154. &nbsp;= 2 </span>
  155. </dt>
  156. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  157. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_EUC_KR">EUC_KR</a>
  158. <span>
  159. &nbsp;= 30 </span>
  160. </dt>
  161. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  162. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_GB18030">GB18030</a>
  163. <span>
  164. &nbsp;= 29 </span>
  165. </dt>
  166. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  167. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_10646_UCS_2">ISO_IEC_10646_UCS_2</a>
  168. <span>
  169. &nbsp;= 25 </span>
  170. </dt>
  171. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  172. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_10646_UTF_8">ISO_IEC_10646_UTF_8</a>
  173. <span>
  174. &nbsp;= 26 </span>
  175. </dt>
  176. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  177. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_646_1991">ISO_IEC_646_1991</a>
  178. <span>
  179. &nbsp;= 27 </span>
  180. </dt>
  181. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  182. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_1">ISO_IEC_8859_1</a>
  183. <span>
  184. &nbsp;= 3 </span>
  185. </dt>
  186. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  187. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_10">ISO_IEC_8859_10</a>
  188. <span>
  189. &nbsp;= 12 </span>
  190. </dt>
  191. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  192. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_11">ISO_IEC_8859_11</a>
  193. <span>
  194. &nbsp;= 13 </span>
  195. </dt>
  196. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  197. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_13">ISO_IEC_8859_13</a>
  198. <span>
  199. &nbsp;= 15 </span>
  200. </dt>
  201. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  202. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_14">ISO_IEC_8859_14</a>
  203. <span>
  204. &nbsp;= 16 </span>
  205. </dt>
  206. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  207. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_15">ISO_IEC_8859_15</a>
  208. <span>
  209. &nbsp;= 17 </span>
  210. </dt>
  211. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  212. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_16">ISO_IEC_8859_16</a>
  213. <span>
  214. &nbsp;= 18 </span>
  215. </dt>
  216. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  217. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_1_GLI">ISO_IEC_8859_1_GLI</a>
  218. <span>
  219. &nbsp;= 1 </span>
  220. </dt>
  221. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  222. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_2">ISO_IEC_8859_2</a>
  223. <span>
  224. &nbsp;= 4 </span>
  225. </dt>
  226. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  227. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_3">ISO_IEC_8859_3</a>
  228. <span>
  229. &nbsp;= 5 </span>
  230. </dt>
  231. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  232. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_4">ISO_IEC_8859_4</a>
  233. <span>
  234. &nbsp;= 6 </span>
  235. </dt>
  236. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  237. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_5">ISO_IEC_8859_5</a>
  238. <span>
  239. &nbsp;= 7 </span>
  240. </dt>
  241. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  242. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_6">ISO_IEC_8859_6</a>
  243. <span>
  244. &nbsp;= 8 </span>
  245. </dt>
  246. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  247. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_7">ISO_IEC_8859_7</a>
  248. <span>
  249. &nbsp;= 9 </span>
  250. </dt>
  251. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  252. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_8">ISO_IEC_8859_8</a>
  253. <span>
  254. &nbsp;= 10 </span>
  255. </dt>
  256. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  257. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_9">ISO_IEC_8859_9</a>
  258. <span>
  259. &nbsp;= 11 </span>
  260. </dt>
  261. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  262. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_MB_ENCODINGS">MB_ENCODINGS</a>
  263. <span>
  264. &nbsp;= [
  265. self::CP437 =&gt; null,
  266. self::ISO_IEC_8859_1_GLI =&gt; null,
  267. self::CP437_WO_GLI =&gt; null,
  268. self::ISO_IEC_8859_1 =&gt; &#039;ISO-8859-1&#039;,
  269. self::ISO_IEC_8859_2 =&gt; &#039;ISO-8859-2&#039;,
  270. self::ISO_IEC_8859_3 =&gt; &#039;ISO-8859-3&#039;,
  271. self::ISO_IEC_8859_4 =&gt; &#039;ISO-8859-4&#039;,
  272. self::ISO_IEC_8859_5 =&gt; &#039;ISO-8859-5&#039;,
  273. self::ISO_IEC_8859_6 =&gt; &#039;ISO-8859-6&#039;,
  274. self::ISO_IEC_8859_7 =&gt; &#039;ISO-8859-7&#039;,
  275. self::ISO_IEC_8859_8 =&gt; &#039;ISO-8859-8&#039;,
  276. self::ISO_IEC_8859_9 =&gt; &#039;ISO-8859-9&#039;,
  277. self::ISO_IEC_8859_10 =&gt; &#039;ISO-8859-10&#039;,
  278. self::ISO_IEC_8859_11 =&gt; null,
  279. self::ISO_IEC_8859_13 =&gt; &#039;ISO-8859-13&#039;,
  280. self::ISO_IEC_8859_14 =&gt; &#039;ISO-8859-14&#039;,
  281. self::ISO_IEC_8859_15 =&gt; &#039;ISO-8859-15&#039;,
  282. self::ISO_IEC_8859_16 =&gt; &#039;ISO-8859-16&#039;,
  283. self::SHIFT_JIS =&gt; &#039;SJIS&#039;,
  284. self::WINDOWS_1250_LATIN_2 =&gt; null,
  285. // @see https://www.php.net/manual/en/function.mb-convert-encoding.php#112547
  286. self::WINDOWS_1251_CYRILLIC =&gt; &#039;Windows-1251&#039;,
  287. self::WINDOWS_1252_LATIN_1 =&gt; &#039;Windows-1252&#039;,
  288. self::WINDOWS_1256_ARABIC =&gt; null,
  289. // @see https://stackoverflow.com/a/8592995
  290. self::ISO_IEC_10646_UCS_2 =&gt; &#039;UTF-16BE&#039;,
  291. self::ISO_IEC_10646_UTF_8 =&gt; &#039;UTF-8&#039;,
  292. self::ISO_IEC_646_1991 =&gt; &#039;ASCII&#039;,
  293. self::BIG5 =&gt; &#039;BIG-5&#039;,
  294. self::GB18030 =&gt; &#039;GB18030&#039;,
  295. self::EUC_KR =&gt; &#039;EUC-KR&#039;,
  296. ] </span>
  297. </dt>
  298. <dd>map of charset id -&gt; name</dd>
  299. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  300. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_SHIFT_JIS">SHIFT_JIS</a>
  301. <span>
  302. &nbsp;= 20 </span>
  303. </dt>
  304. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  305. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1250_LATIN_2">WINDOWS_1250_LATIN_2</a>
  306. <span>
  307. &nbsp;= 21 </span>
  308. </dt>
  309. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  310. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1251_CYRILLIC">WINDOWS_1251_CYRILLIC</a>
  311. <span>
  312. &nbsp;= 22 </span>
  313. </dt>
  314. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  315. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1252_LATIN_1">WINDOWS_1252_LATIN_1</a>
  316. <span>
  317. &nbsp;= 23 </span>
  318. </dt>
  319. <dt class="phpdocumentor-table-of-contents__entry -constant -public">
  320. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1256_ARABIC">WINDOWS_1256_ARABIC</a>
  321. <span>
  322. &nbsp;= 24 </span>
  323. </dt>
  324. </dl>
  325. <h4 id="toc-properties">
  326. Properties
  327. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#toc-properties" class="headerlink"><i class="fas fa-link"></i></a>
  328. </h4>
  329. <dl class="phpdocumentor-table-of-contents">
  330. <dt class="phpdocumentor-table-of-contents__entry -property -private">
  331. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#property_charsetID">$charsetID</a>
  332. <span>
  333. &nbsp;: int </span>
  334. </dt>
  335. <dd>The current ECI character set ID</dd>
  336. </dl>
  337. <h4 id="toc-methods">
  338. Methods
  339. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#toc-methods" class="headerlink"><i class="fas fa-link"></i></a>
  340. </h4>
  341. <dl class="phpdocumentor-table-of-contents">
  342. <dt class="phpdocumentor-table-of-contents__entry -method -public">
  343. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#method___construct">__construct()</a>
  344. <span>
  345. &nbsp;: mixed </span>
  346. </dt>
  347. <dt class="phpdocumentor-table-of-contents__entry -method -public">
  348. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#method_getID">getID()</a>
  349. <span>
  350. &nbsp;: int </span>
  351. </dt>
  352. <dd>Returns the current character set ID</dd>
  353. <dt class="phpdocumentor-table-of-contents__entry -method -public">
  354. <a class="" href="classes/chillerlan-QRCode-Common-ECICharset.html#method_getName">getName()</a>
  355. <span>
  356. &nbsp;: string|null </span>
  357. </dt>
  358. <dd>Returns the name of the current character set or null if no name is available</dd>
  359. </dl>
  360. <section class="phpdocumentor-constants">
  361. <h3 class="phpdocumentor-elements__header" id="constants">
  362. Constants
  363. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constants" class="headerlink"><i class="fas fa-link"></i></a>
  364. </h3>
  365. <article class="phpdocumentor-element -constant -public ">
  366. <h4 class="phpdocumentor-element__name" id="constant_BIG5">
  367. BIG5
  368. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_BIG5" class="headerlink"><i class="fas fa-link"></i></a>
  369. </h4>
  370. <aside class="phpdocumentor-element-found-in">
  371. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  372. :
  373. <span class="phpdocumentor-element-found-in__line">51</span>
  374. </aside>
  375. <code class="phpdocumentor-signature phpdocumentor-code ">
  376. <span class="phpdocumentor-signature__visibility">public</span>
  377. <span class="phpdocumentor-signature__type">mixed</span>
  378. <span class="phpdocumentor-signature__name">BIG5</span>
  379. = <span class="phpdocumentor-signature__default-value">28</span>
  380. </code>
  381. </article>
  382. <article class="phpdocumentor-element -constant -public ">
  383. <h4 class="phpdocumentor-element__name" id="constant_CP437">
  384. CP437
  385. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_CP437" class="headerlink"><i class="fas fa-link"></i></a>
  386. </h4>
  387. <aside class="phpdocumentor-element-found-in">
  388. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  389. :
  390. <span class="phpdocumentor-element-found-in__line">23</span>
  391. </aside>
  392. <code class="phpdocumentor-signature phpdocumentor-code ">
  393. <span class="phpdocumentor-signature__visibility">public</span>
  394. <span class="phpdocumentor-signature__type">mixed</span>
  395. <span class="phpdocumentor-signature__name">CP437</span>
  396. = <span class="phpdocumentor-signature__default-value">0</span>
  397. </code>
  398. </article>
  399. <article class="phpdocumentor-element -constant -public ">
  400. <h4 class="phpdocumentor-element__name" id="constant_CP437_WO_GLI">
  401. CP437_WO_GLI
  402. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_CP437_WO_GLI" class="headerlink"><i class="fas fa-link"></i></a>
  403. </h4>
  404. <aside class="phpdocumentor-element-found-in">
  405. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  406. :
  407. <span class="phpdocumentor-element-found-in__line">25</span>
  408. </aside>
  409. <code class="phpdocumentor-signature phpdocumentor-code ">
  410. <span class="phpdocumentor-signature__visibility">public</span>
  411. <span class="phpdocumentor-signature__type">mixed</span>
  412. <span class="phpdocumentor-signature__name">CP437_WO_GLI</span>
  413. = <span class="phpdocumentor-signature__default-value">2</span>
  414. </code>
  415. </article>
  416. <article class="phpdocumentor-element -constant -public ">
  417. <h4 class="phpdocumentor-element__name" id="constant_EUC_KR">
  418. EUC_KR
  419. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_EUC_KR" class="headerlink"><i class="fas fa-link"></i></a>
  420. </h4>
  421. <aside class="phpdocumentor-element-found-in">
  422. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  423. :
  424. <span class="phpdocumentor-element-found-in__line">53</span>
  425. </aside>
  426. <code class="phpdocumentor-signature phpdocumentor-code ">
  427. <span class="phpdocumentor-signature__visibility">public</span>
  428. <span class="phpdocumentor-signature__type">mixed</span>
  429. <span class="phpdocumentor-signature__name">EUC_KR</span>
  430. = <span class="phpdocumentor-signature__default-value">30</span>
  431. </code>
  432. </article>
  433. <article class="phpdocumentor-element -constant -public ">
  434. <h4 class="phpdocumentor-element__name" id="constant_GB18030">
  435. GB18030
  436. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_GB18030" class="headerlink"><i class="fas fa-link"></i></a>
  437. </h4>
  438. <aside class="phpdocumentor-element-found-in">
  439. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  440. :
  441. <span class="phpdocumentor-element-found-in__line">52</span>
  442. </aside>
  443. <code class="phpdocumentor-signature phpdocumentor-code ">
  444. <span class="phpdocumentor-signature__visibility">public</span>
  445. <span class="phpdocumentor-signature__type">mixed</span>
  446. <span class="phpdocumentor-signature__name">GB18030</span>
  447. = <span class="phpdocumentor-signature__default-value">29</span>
  448. </code>
  449. </article>
  450. <article class="phpdocumentor-element -constant -public ">
  451. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_10646_UCS_2">
  452. ISO_IEC_10646_UCS_2
  453. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_10646_UCS_2" class="headerlink"><i class="fas fa-link"></i></a>
  454. </h4>
  455. <aside class="phpdocumentor-element-found-in">
  456. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  457. :
  458. <span class="phpdocumentor-element-found-in__line">48</span>
  459. </aside>
  460. <code class="phpdocumentor-signature phpdocumentor-code ">
  461. <span class="phpdocumentor-signature__visibility">public</span>
  462. <span class="phpdocumentor-signature__type">mixed</span>
  463. <span class="phpdocumentor-signature__name">ISO_IEC_10646_UCS_2</span>
  464. = <span class="phpdocumentor-signature__default-value">25</span>
  465. </code>
  466. </article>
  467. <article class="phpdocumentor-element -constant -public ">
  468. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_10646_UTF_8">
  469. ISO_IEC_10646_UTF_8
  470. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_10646_UTF_8" class="headerlink"><i class="fas fa-link"></i></a>
  471. </h4>
  472. <aside class="phpdocumentor-element-found-in">
  473. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  474. :
  475. <span class="phpdocumentor-element-found-in__line">49</span>
  476. </aside>
  477. <code class="phpdocumentor-signature phpdocumentor-code ">
  478. <span class="phpdocumentor-signature__visibility">public</span>
  479. <span class="phpdocumentor-signature__type">mixed</span>
  480. <span class="phpdocumentor-signature__name">ISO_IEC_10646_UTF_8</span>
  481. = <span class="phpdocumentor-signature__default-value">26</span>
  482. </code>
  483. </article>
  484. <article class="phpdocumentor-element -constant -public ">
  485. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_646_1991">
  486. ISO_IEC_646_1991
  487. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_646_1991" class="headerlink"><i class="fas fa-link"></i></a>
  488. </h4>
  489. <aside class="phpdocumentor-element-found-in">
  490. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  491. :
  492. <span class="phpdocumentor-element-found-in__line">50</span>
  493. </aside>
  494. <code class="phpdocumentor-signature phpdocumentor-code ">
  495. <span class="phpdocumentor-signature__visibility">public</span>
  496. <span class="phpdocumentor-signature__type">mixed</span>
  497. <span class="phpdocumentor-signature__name">ISO_IEC_646_1991</span>
  498. = <span class="phpdocumentor-signature__default-value">27</span>
  499. </code>
  500. </article>
  501. <article class="phpdocumentor-element -constant -public ">
  502. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_1">
  503. ISO_IEC_8859_1
  504. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_1" class="headerlink"><i class="fas fa-link"></i></a>
  505. </h4>
  506. <aside class="phpdocumentor-element-found-in">
  507. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  508. :
  509. <span class="phpdocumentor-element-found-in__line">26</span>
  510. </aside>
  511. <code class="phpdocumentor-signature phpdocumentor-code ">
  512. <span class="phpdocumentor-signature__visibility">public</span>
  513. <span class="phpdocumentor-signature__type">mixed</span>
  514. <span class="phpdocumentor-signature__name">ISO_IEC_8859_1</span>
  515. = <span class="phpdocumentor-signature__default-value">3</span>
  516. </code>
  517. </article>
  518. <article class="phpdocumentor-element -constant -public ">
  519. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_10">
  520. ISO_IEC_8859_10
  521. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_10" class="headerlink"><i class="fas fa-link"></i></a>
  522. </h4>
  523. <aside class="phpdocumentor-element-found-in">
  524. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  525. :
  526. <span class="phpdocumentor-element-found-in__line">35</span>
  527. </aside>
  528. <code class="phpdocumentor-signature phpdocumentor-code ">
  529. <span class="phpdocumentor-signature__visibility">public</span>
  530. <span class="phpdocumentor-signature__type">mixed</span>
  531. <span class="phpdocumentor-signature__name">ISO_IEC_8859_10</span>
  532. = <span class="phpdocumentor-signature__default-value">12</span>
  533. </code>
  534. </article>
  535. <article class="phpdocumentor-element -constant -public ">
  536. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_11">
  537. ISO_IEC_8859_11
  538. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_11" class="headerlink"><i class="fas fa-link"></i></a>
  539. </h4>
  540. <aside class="phpdocumentor-element-found-in">
  541. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  542. :
  543. <span class="phpdocumentor-element-found-in__line">36</span>
  544. </aside>
  545. <code class="phpdocumentor-signature phpdocumentor-code ">
  546. <span class="phpdocumentor-signature__visibility">public</span>
  547. <span class="phpdocumentor-signature__type">mixed</span>
  548. <span class="phpdocumentor-signature__name">ISO_IEC_8859_11</span>
  549. = <span class="phpdocumentor-signature__default-value">13</span>
  550. </code>
  551. </article>
  552. <article class="phpdocumentor-element -constant -public ">
  553. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_13">
  554. ISO_IEC_8859_13
  555. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_13" class="headerlink"><i class="fas fa-link"></i></a>
  556. </h4>
  557. <aside class="phpdocumentor-element-found-in">
  558. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  559. :
  560. <span class="phpdocumentor-element-found-in__line">38</span>
  561. </aside>
  562. <code class="phpdocumentor-signature phpdocumentor-code ">
  563. <span class="phpdocumentor-signature__visibility">public</span>
  564. <span class="phpdocumentor-signature__type">mixed</span>
  565. <span class="phpdocumentor-signature__name">ISO_IEC_8859_13</span>
  566. = <span class="phpdocumentor-signature__default-value">15</span>
  567. </code>
  568. </article>
  569. <article class="phpdocumentor-element -constant -public ">
  570. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_14">
  571. ISO_IEC_8859_14
  572. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_14" class="headerlink"><i class="fas fa-link"></i></a>
  573. </h4>
  574. <aside class="phpdocumentor-element-found-in">
  575. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  576. :
  577. <span class="phpdocumentor-element-found-in__line">39</span>
  578. </aside>
  579. <code class="phpdocumentor-signature phpdocumentor-code ">
  580. <span class="phpdocumentor-signature__visibility">public</span>
  581. <span class="phpdocumentor-signature__type">mixed</span>
  582. <span class="phpdocumentor-signature__name">ISO_IEC_8859_14</span>
  583. = <span class="phpdocumentor-signature__default-value">16</span>
  584. </code>
  585. </article>
  586. <article class="phpdocumentor-element -constant -public ">
  587. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_15">
  588. ISO_IEC_8859_15
  589. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_15" class="headerlink"><i class="fas fa-link"></i></a>
  590. </h4>
  591. <aside class="phpdocumentor-element-found-in">
  592. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  593. :
  594. <span class="phpdocumentor-element-found-in__line">40</span>
  595. </aside>
  596. <code class="phpdocumentor-signature phpdocumentor-code ">
  597. <span class="phpdocumentor-signature__visibility">public</span>
  598. <span class="phpdocumentor-signature__type">mixed</span>
  599. <span class="phpdocumentor-signature__name">ISO_IEC_8859_15</span>
  600. = <span class="phpdocumentor-signature__default-value">17</span>
  601. </code>
  602. </article>
  603. <article class="phpdocumentor-element -constant -public ">
  604. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_16">
  605. ISO_IEC_8859_16
  606. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_16" class="headerlink"><i class="fas fa-link"></i></a>
  607. </h4>
  608. <aside class="phpdocumentor-element-found-in">
  609. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  610. :
  611. <span class="phpdocumentor-element-found-in__line">41</span>
  612. </aside>
  613. <code class="phpdocumentor-signature phpdocumentor-code ">
  614. <span class="phpdocumentor-signature__visibility">public</span>
  615. <span class="phpdocumentor-signature__type">mixed</span>
  616. <span class="phpdocumentor-signature__name">ISO_IEC_8859_16</span>
  617. = <span class="phpdocumentor-signature__default-value">18</span>
  618. </code>
  619. </article>
  620. <article class="phpdocumentor-element -constant -public ">
  621. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_1_GLI">
  622. ISO_IEC_8859_1_GLI
  623. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_1_GLI" class="headerlink"><i class="fas fa-link"></i></a>
  624. </h4>
  625. <aside class="phpdocumentor-element-found-in">
  626. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  627. :
  628. <span class="phpdocumentor-element-found-in__line">24</span>
  629. </aside>
  630. <code class="phpdocumentor-signature phpdocumentor-code ">
  631. <span class="phpdocumentor-signature__visibility">public</span>
  632. <span class="phpdocumentor-signature__type">mixed</span>
  633. <span class="phpdocumentor-signature__name">ISO_IEC_8859_1_GLI</span>
  634. = <span class="phpdocumentor-signature__default-value">1</span>
  635. </code>
  636. </article>
  637. <article class="phpdocumentor-element -constant -public ">
  638. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_2">
  639. ISO_IEC_8859_2
  640. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_2" class="headerlink"><i class="fas fa-link"></i></a>
  641. </h4>
  642. <aside class="phpdocumentor-element-found-in">
  643. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  644. :
  645. <span class="phpdocumentor-element-found-in__line">27</span>
  646. </aside>
  647. <code class="phpdocumentor-signature phpdocumentor-code ">
  648. <span class="phpdocumentor-signature__visibility">public</span>
  649. <span class="phpdocumentor-signature__type">mixed</span>
  650. <span class="phpdocumentor-signature__name">ISO_IEC_8859_2</span>
  651. = <span class="phpdocumentor-signature__default-value">4</span>
  652. </code>
  653. </article>
  654. <article class="phpdocumentor-element -constant -public ">
  655. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_3">
  656. ISO_IEC_8859_3
  657. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_3" class="headerlink"><i class="fas fa-link"></i></a>
  658. </h4>
  659. <aside class="phpdocumentor-element-found-in">
  660. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  661. :
  662. <span class="phpdocumentor-element-found-in__line">28</span>
  663. </aside>
  664. <code class="phpdocumentor-signature phpdocumentor-code ">
  665. <span class="phpdocumentor-signature__visibility">public</span>
  666. <span class="phpdocumentor-signature__type">mixed</span>
  667. <span class="phpdocumentor-signature__name">ISO_IEC_8859_3</span>
  668. = <span class="phpdocumentor-signature__default-value">5</span>
  669. </code>
  670. </article>
  671. <article class="phpdocumentor-element -constant -public ">
  672. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_4">
  673. ISO_IEC_8859_4
  674. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_4" class="headerlink"><i class="fas fa-link"></i></a>
  675. </h4>
  676. <aside class="phpdocumentor-element-found-in">
  677. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  678. :
  679. <span class="phpdocumentor-element-found-in__line">29</span>
  680. </aside>
  681. <code class="phpdocumentor-signature phpdocumentor-code ">
  682. <span class="phpdocumentor-signature__visibility">public</span>
  683. <span class="phpdocumentor-signature__type">mixed</span>
  684. <span class="phpdocumentor-signature__name">ISO_IEC_8859_4</span>
  685. = <span class="phpdocumentor-signature__default-value">6</span>
  686. </code>
  687. </article>
  688. <article class="phpdocumentor-element -constant -public ">
  689. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_5">
  690. ISO_IEC_8859_5
  691. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_5" class="headerlink"><i class="fas fa-link"></i></a>
  692. </h4>
  693. <aside class="phpdocumentor-element-found-in">
  694. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  695. :
  696. <span class="phpdocumentor-element-found-in__line">30</span>
  697. </aside>
  698. <code class="phpdocumentor-signature phpdocumentor-code ">
  699. <span class="phpdocumentor-signature__visibility">public</span>
  700. <span class="phpdocumentor-signature__type">mixed</span>
  701. <span class="phpdocumentor-signature__name">ISO_IEC_8859_5</span>
  702. = <span class="phpdocumentor-signature__default-value">7</span>
  703. </code>
  704. </article>
  705. <article class="phpdocumentor-element -constant -public ">
  706. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_6">
  707. ISO_IEC_8859_6
  708. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_6" class="headerlink"><i class="fas fa-link"></i></a>
  709. </h4>
  710. <aside class="phpdocumentor-element-found-in">
  711. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  712. :
  713. <span class="phpdocumentor-element-found-in__line">31</span>
  714. </aside>
  715. <code class="phpdocumentor-signature phpdocumentor-code ">
  716. <span class="phpdocumentor-signature__visibility">public</span>
  717. <span class="phpdocumentor-signature__type">mixed</span>
  718. <span class="phpdocumentor-signature__name">ISO_IEC_8859_6</span>
  719. = <span class="phpdocumentor-signature__default-value">8</span>
  720. </code>
  721. </article>
  722. <article class="phpdocumentor-element -constant -public ">
  723. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_7">
  724. ISO_IEC_8859_7
  725. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_7" class="headerlink"><i class="fas fa-link"></i></a>
  726. </h4>
  727. <aside class="phpdocumentor-element-found-in">
  728. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  729. :
  730. <span class="phpdocumentor-element-found-in__line">32</span>
  731. </aside>
  732. <code class="phpdocumentor-signature phpdocumentor-code ">
  733. <span class="phpdocumentor-signature__visibility">public</span>
  734. <span class="phpdocumentor-signature__type">mixed</span>
  735. <span class="phpdocumentor-signature__name">ISO_IEC_8859_7</span>
  736. = <span class="phpdocumentor-signature__default-value">9</span>
  737. </code>
  738. </article>
  739. <article class="phpdocumentor-element -constant -public ">
  740. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_8">
  741. ISO_IEC_8859_8
  742. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_8" class="headerlink"><i class="fas fa-link"></i></a>
  743. </h4>
  744. <aside class="phpdocumentor-element-found-in">
  745. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  746. :
  747. <span class="phpdocumentor-element-found-in__line">33</span>
  748. </aside>
  749. <code class="phpdocumentor-signature phpdocumentor-code ">
  750. <span class="phpdocumentor-signature__visibility">public</span>
  751. <span class="phpdocumentor-signature__type">mixed</span>
  752. <span class="phpdocumentor-signature__name">ISO_IEC_8859_8</span>
  753. = <span class="phpdocumentor-signature__default-value">10</span>
  754. </code>
  755. </article>
  756. <article class="phpdocumentor-element -constant -public ">
  757. <h4 class="phpdocumentor-element__name" id="constant_ISO_IEC_8859_9">
  758. ISO_IEC_8859_9
  759. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_9" class="headerlink"><i class="fas fa-link"></i></a>
  760. </h4>
  761. <aside class="phpdocumentor-element-found-in">
  762. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  763. :
  764. <span class="phpdocumentor-element-found-in__line">34</span>
  765. </aside>
  766. <code class="phpdocumentor-signature phpdocumentor-code ">
  767. <span class="phpdocumentor-signature__visibility">public</span>
  768. <span class="phpdocumentor-signature__type">mixed</span>
  769. <span class="phpdocumentor-signature__name">ISO_IEC_8859_9</span>
  770. = <span class="phpdocumentor-signature__default-value">11</span>
  771. </code>
  772. </article>
  773. <article class="phpdocumentor-element -constant -public ">
  774. <h4 class="phpdocumentor-element__name" id="constant_MB_ENCODINGS">
  775. MB_ENCODINGS
  776. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_MB_ENCODINGS" class="headerlink"><i class="fas fa-link"></i></a>
  777. </h4>
  778. <aside class="phpdocumentor-element-found-in">
  779. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  780. :
  781. <span class="phpdocumentor-element-found-in__line">60</span>
  782. </aside>
  783. <p class="phpdocumentor-summary">map of charset id -&gt; name</p>
  784. <code class="phpdocumentor-signature phpdocumentor-code ">
  785. <span class="phpdocumentor-signature__visibility">public</span>
  786. <span class="phpdocumentor-signature__type">mixed</span>
  787. <span class="phpdocumentor-signature__name">MB_ENCODINGS</span>
  788. = <span class="phpdocumentor-signature__default-value">[
  789. self::CP437 =&gt; null,
  790. self::ISO_IEC_8859_1_GLI =&gt; null,
  791. self::CP437_WO_GLI =&gt; null,
  792. self::ISO_IEC_8859_1 =&gt; &#039;ISO-8859-1&#039;,
  793. self::ISO_IEC_8859_2 =&gt; &#039;ISO-8859-2&#039;,
  794. self::ISO_IEC_8859_3 =&gt; &#039;ISO-8859-3&#039;,
  795. self::ISO_IEC_8859_4 =&gt; &#039;ISO-8859-4&#039;,
  796. self::ISO_IEC_8859_5 =&gt; &#039;ISO-8859-5&#039;,
  797. self::ISO_IEC_8859_6 =&gt; &#039;ISO-8859-6&#039;,
  798. self::ISO_IEC_8859_7 =&gt; &#039;ISO-8859-7&#039;,
  799. self::ISO_IEC_8859_8 =&gt; &#039;ISO-8859-8&#039;,
  800. self::ISO_IEC_8859_9 =&gt; &#039;ISO-8859-9&#039;,
  801. self::ISO_IEC_8859_10 =&gt; &#039;ISO-8859-10&#039;,
  802. self::ISO_IEC_8859_11 =&gt; null,
  803. self::ISO_IEC_8859_13 =&gt; &#039;ISO-8859-13&#039;,
  804. self::ISO_IEC_8859_14 =&gt; &#039;ISO-8859-14&#039;,
  805. self::ISO_IEC_8859_15 =&gt; &#039;ISO-8859-15&#039;,
  806. self::ISO_IEC_8859_16 =&gt; &#039;ISO-8859-16&#039;,
  807. self::SHIFT_JIS =&gt; &#039;SJIS&#039;,
  808. self::WINDOWS_1250_LATIN_2 =&gt; null,
  809. // @see https://www.php.net/manual/en/function.mb-convert-encoding.php#112547
  810. self::WINDOWS_1251_CYRILLIC =&gt; &#039;Windows-1251&#039;,
  811. self::WINDOWS_1252_LATIN_1 =&gt; &#039;Windows-1252&#039;,
  812. self::WINDOWS_1256_ARABIC =&gt; null,
  813. // @see https://stackoverflow.com/a/8592995
  814. self::ISO_IEC_10646_UCS_2 =&gt; &#039;UTF-16BE&#039;,
  815. self::ISO_IEC_10646_UTF_8 =&gt; &#039;UTF-8&#039;,
  816. self::ISO_IEC_646_1991 =&gt; &#039;ASCII&#039;,
  817. self::BIG5 =&gt; &#039;BIG-5&#039;,
  818. self::GB18030 =&gt; &#039;GB18030&#039;,
  819. self::EUC_KR =&gt; &#039;EUC-KR&#039;,
  820. ]</span>
  821. </code>
  822. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  823. Tags
  824. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_MB_ENCODINGS#tags" class="headerlink"><i class="fas fa-link"></i></a>
  825. </h5>
  826. <dl class="phpdocumentor-tag-list">
  827. <dt class="phpdocumentor-tag-list__entry">
  828. <span class="phpdocumentor-tag__name">see</span>
  829. </dt>
  830. <dd class="phpdocumentor-tag-list__definition">
  831. <span class="phpdocumentor-tag-link"><abbr title="\mb_list_encodings()">mb_list_encodings()</abbr></span>
  832. </dd>
  833. </dl>
  834. </article>
  835. <article class="phpdocumentor-element -constant -public ">
  836. <h4 class="phpdocumentor-element__name" id="constant_SHIFT_JIS">
  837. SHIFT_JIS
  838. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_SHIFT_JIS" class="headerlink"><i class="fas fa-link"></i></a>
  839. </h4>
  840. <aside class="phpdocumentor-element-found-in">
  841. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  842. :
  843. <span class="phpdocumentor-element-found-in__line">43</span>
  844. </aside>
  845. <code class="phpdocumentor-signature phpdocumentor-code ">
  846. <span class="phpdocumentor-signature__visibility">public</span>
  847. <span class="phpdocumentor-signature__type">mixed</span>
  848. <span class="phpdocumentor-signature__name">SHIFT_JIS</span>
  849. = <span class="phpdocumentor-signature__default-value">20</span>
  850. </code>
  851. </article>
  852. <article class="phpdocumentor-element -constant -public ">
  853. <h4 class="phpdocumentor-element__name" id="constant_WINDOWS_1250_LATIN_2">
  854. WINDOWS_1250_LATIN_2
  855. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1250_LATIN_2" class="headerlink"><i class="fas fa-link"></i></a>
  856. </h4>
  857. <aside class="phpdocumentor-element-found-in">
  858. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  859. :
  860. <span class="phpdocumentor-element-found-in__line">44</span>
  861. </aside>
  862. <code class="phpdocumentor-signature phpdocumentor-code ">
  863. <span class="phpdocumentor-signature__visibility">public</span>
  864. <span class="phpdocumentor-signature__type">mixed</span>
  865. <span class="phpdocumentor-signature__name">WINDOWS_1250_LATIN_2</span>
  866. = <span class="phpdocumentor-signature__default-value">21</span>
  867. </code>
  868. </article>
  869. <article class="phpdocumentor-element -constant -public ">
  870. <h4 class="phpdocumentor-element__name" id="constant_WINDOWS_1251_CYRILLIC">
  871. WINDOWS_1251_CYRILLIC
  872. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1251_CYRILLIC" class="headerlink"><i class="fas fa-link"></i></a>
  873. </h4>
  874. <aside class="phpdocumentor-element-found-in">
  875. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  876. :
  877. <span class="phpdocumentor-element-found-in__line">45</span>
  878. </aside>
  879. <code class="phpdocumentor-signature phpdocumentor-code ">
  880. <span class="phpdocumentor-signature__visibility">public</span>
  881. <span class="phpdocumentor-signature__type">mixed</span>
  882. <span class="phpdocumentor-signature__name">WINDOWS_1251_CYRILLIC</span>
  883. = <span class="phpdocumentor-signature__default-value">22</span>
  884. </code>
  885. </article>
  886. <article class="phpdocumentor-element -constant -public ">
  887. <h4 class="phpdocumentor-element__name" id="constant_WINDOWS_1252_LATIN_1">
  888. WINDOWS_1252_LATIN_1
  889. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1252_LATIN_1" class="headerlink"><i class="fas fa-link"></i></a>
  890. </h4>
  891. <aside class="phpdocumentor-element-found-in">
  892. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  893. :
  894. <span class="phpdocumentor-element-found-in__line">46</span>
  895. </aside>
  896. <code class="phpdocumentor-signature phpdocumentor-code ">
  897. <span class="phpdocumentor-signature__visibility">public</span>
  898. <span class="phpdocumentor-signature__type">mixed</span>
  899. <span class="phpdocumentor-signature__name">WINDOWS_1252_LATIN_1</span>
  900. = <span class="phpdocumentor-signature__default-value">23</span>
  901. </code>
  902. </article>
  903. <article class="phpdocumentor-element -constant -public ">
  904. <h4 class="phpdocumentor-element__name" id="constant_WINDOWS_1256_ARABIC">
  905. WINDOWS_1256_ARABIC
  906. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1256_ARABIC" class="headerlink"><i class="fas fa-link"></i></a>
  907. </h4>
  908. <aside class="phpdocumentor-element-found-in">
  909. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  910. :
  911. <span class="phpdocumentor-element-found-in__line">47</span>
  912. </aside>
  913. <code class="phpdocumentor-signature phpdocumentor-code ">
  914. <span class="phpdocumentor-signature__visibility">public</span>
  915. <span class="phpdocumentor-signature__type">mixed</span>
  916. <span class="phpdocumentor-signature__name">WINDOWS_1256_ARABIC</span>
  917. = <span class="phpdocumentor-signature__default-value">24</span>
  918. </code>
  919. </article>
  920. </section>
  921. <section class="phpdocumentor-properties">
  922. <h3 class="phpdocumentor-elements__header" id="properties">
  923. Properties
  924. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#properties" class="headerlink"><i class="fas fa-link"></i></a>
  925. </h3>
  926. <article
  927. class="
  928. phpdocumentor-element
  929. -property
  930. -private
  931. "
  932. >
  933. <h4 class="phpdocumentor-element__name" id="property_charsetID">
  934. $charsetID
  935. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#property_charsetID" class="headerlink"><i class="fas fa-link"></i></a>
  936. <span class="phpdocumentor-element__modifiers">
  937. </span>
  938. </h4>
  939. <aside class="phpdocumentor-element-found-in">
  940. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  941. :
  942. <span class="phpdocumentor-element-found-in__line">95</span>
  943. </aside>
  944. <p class="phpdocumentor-summary">The current ECI character set ID</p>
  945. <code class="phpdocumentor-code phpdocumentor-signature ">
  946. <span class="phpdocumentor-signature__visibility">private</span>
  947. <span class="phpdocumentor-signature__type">int</span>
  948. <span class="phpdocumentor-signature__name">$charsetID</span>
  949. </code>
  950. </article>
  951. </section>
  952. <section class="phpdocumentor-methods">
  953. <h3 class="phpdocumentor-elements__header" id="methods">
  954. Methods
  955. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#methods" class="headerlink"><i class="fas fa-link"></i></a>
  956. </h3>
  957. <article
  958. class="phpdocumentor-element
  959. -method
  960. -public
  961. "
  962. >
  963. <h4 class="phpdocumentor-element__name" id="method___construct">
  964. __construct()
  965. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#method___construct" class="headerlink"><i class="fas fa-link"></i></a>
  966. </h4>
  967. <aside class="phpdocumentor-element-found-in">
  968. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  969. :
  970. <span class="phpdocumentor-element-found-in__line">100</span>
  971. </aside>
  972. <code class="phpdocumentor-code phpdocumentor-signature ">
  973. <span class="phpdocumentor-signature__visibility">public</span>
  974. <span class="phpdocumentor-signature__name">__construct</span><span>(</span><span class="phpdocumentor-signature__argument"><span class="phpdocumentor-signature__argument__return-type">int&nbsp;</span><span class="phpdocumentor-signature__argument__name">$charsetID</span></span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">mixed</span></code>
  975. <div class="phpdocumentor-label-line">
  976. </div>
  977. <h5 class="phpdocumentor-argument-list__heading">Parameters</h5>
  978. <dl class="phpdocumentor-argument-list">
  979. <dt class="phpdocumentor-argument-list__entry">
  980. <span class="phpdocumentor-signature__argument__name">$charsetID</span>
  981. : <span class="phpdocumentor-signature__argument__return-type">int</span>
  982. </dt>
  983. <dd class="phpdocumentor-argument-list__definition">
  984. </dd>
  985. </dl>
  986. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  987. Tags
  988. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#method___construct#tags" class="headerlink"><i class="fas fa-link"></i></a>
  989. </h5>
  990. <dl class="phpdocumentor-tag-list">
  991. <dt class="phpdocumentor-tag-list__entry">
  992. <span class="phpdocumentor-tag__name">throws</span>
  993. </dt>
  994. <dd class="phpdocumentor-tag-list__definition">
  995. <span class="phpdocumentor-tag-link"><a href="classes/chillerlan-QRCode-QRCodeException.html"><abbr title="\chillerlan\QRCode\QRCodeException">QRCodeException</abbr></a></span>
  996. </dd>
  997. </dl>
  998. </article>
  999. <article
  1000. class="phpdocumentor-element
  1001. -method
  1002. -public
  1003. "
  1004. >
  1005. <h4 class="phpdocumentor-element__name" id="method_getID">
  1006. getID()
  1007. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#method_getID" class="headerlink"><i class="fas fa-link"></i></a>
  1008. </h4>
  1009. <aside class="phpdocumentor-element-found-in">
  1010. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  1011. :
  1012. <span class="phpdocumentor-element-found-in__line">112</span>
  1013. </aside>
  1014. <p class="phpdocumentor-summary">Returns the current character set ID</p>
  1015. <code class="phpdocumentor-code phpdocumentor-signature ">
  1016. <span class="phpdocumentor-signature__visibility">public</span>
  1017. <span class="phpdocumentor-signature__name">getID</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">int</span></code>
  1018. <div class="phpdocumentor-label-line">
  1019. </div>
  1020. <section>
  1021. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  1022. <span class="phpdocumentor-signature__response_type">int</span>
  1023. </section>
  1024. </article>
  1025. <article
  1026. class="phpdocumentor-element
  1027. -method
  1028. -public
  1029. "
  1030. >
  1031. <h4 class="phpdocumentor-element__name" id="method_getName">
  1032. getName()
  1033. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#method_getName" class="headerlink"><i class="fas fa-link"></i></a>
  1034. </h4>
  1035. <aside class="phpdocumentor-element-found-in">
  1036. <abbr class="phpdocumentor-element-found-in__file" title="src/Common/ECICharset.php"><a href="files/src-common-ecicharset.html"><abbr title="src/Common/ECICharset.php">ECICharset.php</abbr></a></abbr>
  1037. :
  1038. <span class="phpdocumentor-element-found-in__line">122</span>
  1039. </aside>
  1040. <p class="phpdocumentor-summary">Returns the name of the current character set or null if no name is available</p>
  1041. <code class="phpdocumentor-code phpdocumentor-signature ">
  1042. <span class="phpdocumentor-signature__visibility">public</span>
  1043. <span class="phpdocumentor-signature__name">getName</span><span>(</span><span>)</span><span> : </span><span class="phpdocumentor-signature__response_type">string|null</span></code>
  1044. <div class="phpdocumentor-label-line">
  1045. </div>
  1046. <h5 class="phpdocumentor-tag-list__heading" id="tags">
  1047. Tags
  1048. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#method_getName#tags" class="headerlink"><i class="fas fa-link"></i></a>
  1049. </h5>
  1050. <dl class="phpdocumentor-tag-list">
  1051. <dt class="phpdocumentor-tag-list__entry">
  1052. <span class="phpdocumentor-tag__name">see</span>
  1053. </dt>
  1054. <dd class="phpdocumentor-tag-list__definition">
  1055. <span class="phpdocumentor-tag-link"><abbr title="\mb_convert_encoding()">mb_convert_encoding()</abbr></span>
  1056. </dd>
  1057. <dt class="phpdocumentor-tag-list__entry">
  1058. <span class="phpdocumentor-tag__name">see</span>
  1059. </dt>
  1060. <dd class="phpdocumentor-tag-list__definition">
  1061. <span class="phpdocumentor-tag-link"><abbr title="\iconv()">iconv()</abbr></span>
  1062. </dd>
  1063. </dl>
  1064. <section>
  1065. <h5 class="phpdocumentor-return-value__heading">Return values</h5>
  1066. <span class="phpdocumentor-signature__response_type">string|null</span>
  1067. </section>
  1068. </article>
  1069. </section>
  1070. <div class="phpdocumentor-modal" id="source-view">
  1071. <div class="phpdocumentor-modal-bg" data-exit-button></div>
  1072. <div class="phpdocumentor-modal-container">
  1073. <div class="phpdocumentor-modal-content">
  1074. <pre style="max-height: 500px; overflow-y: scroll" data-src="files/src/Common/ECICharset.php.txt" class="language-php line-numbers linkable-line-numbers"></pre>
  1075. </div>
  1076. <button data-exit-button class="phpdocumentor-modal__close">&times;</button>
  1077. </div>
  1078. </div>
  1079. <script type="text/javascript">
  1080. (function () {
  1081. function loadExternalCodeSnippet(el, url, line) {
  1082. Array.prototype.slice.call(el.querySelectorAll('pre[data-src]')).forEach((pre) => {
  1083. const src = url || pre.getAttribute('data-src').replace(/\\/g, '/');
  1084. const language = 'php';
  1085. const code = document.createElement('code');
  1086. code.className = 'language-' + language;
  1087. pre.textContent = '';
  1088. pre.setAttribute('data-line', line)
  1089. code.textContent = 'Loading…';
  1090. pre.appendChild(code);
  1091. var xhr = new XMLHttpRequest();
  1092. xhr.open('GET', src, true);
  1093. xhr.onreadystatechange = function () {
  1094. if (xhr.readyState !== 4) {
  1095. return;
  1096. }
  1097. if (xhr.status < 400 && xhr.responseText) {
  1098. code.textContent = xhr.responseText;
  1099. Prism.highlightElement(code);
  1100. return;
  1101. }
  1102. if (xhr.status === 404) {
  1103. code.textContent = '✖ Error: File could not be found';
  1104. return;
  1105. }
  1106. if (xhr.status >= 400) {
  1107. code.textContent = '✖ Error ' + xhr.status + ' while fetching file: ' + xhr.statusText;
  1108. return;
  1109. }
  1110. code.textContent = '✖ Error: An unknown error occurred';
  1111. };
  1112. xhr.send(null);
  1113. });
  1114. }
  1115. const modalButtons = document.querySelectorAll("[data-modal]");
  1116. const openedAsLocalFile = window.location.protocol === 'file:';
  1117. if (modalButtons.length > 0 && openedAsLocalFile) {
  1118. console.warn(
  1119. 'Viewing the source code is unavailable because you are opening this page from the file:// scheme; ' +
  1120. 'browsers block XHR requests when a page is opened this way'
  1121. );
  1122. }
  1123. modalButtons.forEach(function (trigger) {
  1124. if (openedAsLocalFile) {
  1125. trigger.setAttribute("hidden", "hidden");
  1126. }
  1127. trigger.addEventListener("click", function (event) {
  1128. event.preventDefault();
  1129. const modal = document.getElementById(trigger.dataset.modal);
  1130. if (!modal) {
  1131. console.error(`Modal with id "${trigger.dataset.modal}" could not be found`);
  1132. return;
  1133. }
  1134. modal.classList.add("phpdocumentor-modal__open");
  1135. loadExternalCodeSnippet(modal, trigger.dataset.src || null, trigger.dataset.line)
  1136. const exits = modal.querySelectorAll("[data-exit-button]");
  1137. exits.forEach(function (exit) {
  1138. exit.addEventListener("click", function (event) {
  1139. event.preventDefault();
  1140. modal.classList.remove("phpdocumentor-modal__open");
  1141. });
  1142. });
  1143. });
  1144. });
  1145. })();
  1146. </script>
  1147. </article>
  1148. </section>
  1149. <section class="phpdocumentor-on-this-page__sidebar">
  1150. <section class="phpdocumentor-on-this-page__content">
  1151. <strong class="phpdocumentor-on-this-page__title">On this page</strong>
  1152. <ul class="phpdocumentor-list -clean">
  1153. <li class="phpdocumentor-on-this-page-section__title">Table Of Contents</li>
  1154. <li>
  1155. <ul class="phpdocumentor-list -clean">
  1156. <li><a href="classes/chillerlan-QRCode-Common-ECICharset.html#toc-constants">Constants</a></li>
  1157. <li><a href="classes/chillerlan-QRCode-Common-ECICharset.html#toc-properties">Properties</a></li>
  1158. <li><a href="classes/chillerlan-QRCode-Common-ECICharset.html#toc-methods">Methods</a></li>
  1159. </ul>
  1160. </li>
  1161. <li class="phpdocumentor-on-this-page-section__title">Constants</li>
  1162. <li>
  1163. <ul class="phpdocumentor-list -clean">
  1164. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_BIG5">BIG5</a></li>
  1165. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_CP437">CP437</a></li>
  1166. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_CP437_WO_GLI">CP437_WO_GLI</a></li>
  1167. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_EUC_KR">EUC_KR</a></li>
  1168. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_GB18030">GB18030</a></li>
  1169. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_10646_UCS_2">ISO_IEC_10646_UCS_2</a></li>
  1170. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_10646_UTF_8">ISO_IEC_10646_UTF_8</a></li>
  1171. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_646_1991">ISO_IEC_646_1991</a></li>
  1172. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_1">ISO_IEC_8859_1</a></li>
  1173. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_10">ISO_IEC_8859_10</a></li>
  1174. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_11">ISO_IEC_8859_11</a></li>
  1175. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_13">ISO_IEC_8859_13</a></li>
  1176. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_14">ISO_IEC_8859_14</a></li>
  1177. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_15">ISO_IEC_8859_15</a></li>
  1178. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_16">ISO_IEC_8859_16</a></li>
  1179. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_1_GLI">ISO_IEC_8859_1_GLI</a></li>
  1180. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_2">ISO_IEC_8859_2</a></li>
  1181. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_3">ISO_IEC_8859_3</a></li>
  1182. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_4">ISO_IEC_8859_4</a></li>
  1183. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_5">ISO_IEC_8859_5</a></li>
  1184. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_6">ISO_IEC_8859_6</a></li>
  1185. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_7">ISO_IEC_8859_7</a></li>
  1186. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_8">ISO_IEC_8859_8</a></li>
  1187. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_ISO_IEC_8859_9">ISO_IEC_8859_9</a></li>
  1188. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_MB_ENCODINGS">MB_ENCODINGS</a></li>
  1189. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_SHIFT_JIS">SHIFT_JIS</a></li>
  1190. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1250_LATIN_2">WINDOWS_1250_LATIN_2</a></li>
  1191. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1251_CYRILLIC">WINDOWS_1251_CYRILLIC</a></li>
  1192. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1252_LATIN_1">WINDOWS_1252_LATIN_1</a></li>
  1193. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#constant_WINDOWS_1256_ARABIC">WINDOWS_1256_ARABIC</a></li>
  1194. </ul>
  1195. </li>
  1196. <li class="phpdocumentor-on-this-page-section__title">Properties</li>
  1197. <li>
  1198. <ul class="phpdocumentor-list -clean">
  1199. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#property_charsetID">$charsetID</a></li>
  1200. </ul>
  1201. </li>
  1202. <li class="phpdocumentor-on-this-page-section__title">Methods</li>
  1203. <li>
  1204. <ul class="phpdocumentor-list -clean">
  1205. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#method___construct">__construct()</a></li>
  1206. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#method_getID">getID()</a></li>
  1207. <li class=""><a href="classes/chillerlan-QRCode-Common-ECICharset.html#method_getName">getName()</a></li>
  1208. </ul>
  1209. </li>
  1210. </ul>
  1211. </section>
  1212. </section>
  1213. </div>
  1214. <section data-search-results class="phpdocumentor-search-results phpdocumentor-search-results--hidden">
  1215. <section class="phpdocumentor-search-results__dialog">
  1216. <header class="phpdocumentor-search-results__header">
  1217. <h2 class="phpdocumentor-search-results__title">Search results</h2>
  1218. <button class="phpdocumentor-search-results__close"><i class="fas fa-times"></i></button>
  1219. </header>
  1220. <section class="phpdocumentor-search-results__body">
  1221. <ul class="phpdocumentor-search-results__entries"></ul>
  1222. </section>
  1223. </section>
  1224. </section>
  1225. </div>
  1226. <a href="classes/chillerlan-QRCode-Common-ECICharset.html#top" class="phpdocumentor-back-to-top"><i class="fas fa-chevron-circle-up"></i></a>
  1227. </main>
  1228. <script>
  1229. cssVars({});
  1230. </script>
  1231. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/prism.min.js"></script>
  1232. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/autoloader/prism-autoloader.min.js"></script>
  1233. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
  1234. <script src="https://cdn.jsdelivr.net/npm/prismjs@1.23.0/plugins/line-highlight/prism-line-highlight.min.js"></script>
  1235. </body>
  1236. </html>