genindex.html 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935
  1. <!DOCTYPE html>
  2. <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
  3. <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
  4. <head>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Index &mdash; CodeIgniter 3.1.11 documentation</title>
  8. <link rel="shortcut icon" href="_static/ci-icon.ico"/>
  9. <link href='https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic|Roboto+Slab:400,700|Inconsolata:400,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'>
  10. <link rel="stylesheet" href="_static/css/citheme.css" type="text/css" />
  11. <link rel="index" title="Index"
  12. href="#"/>
  13. <link rel="search" title="Search" href="search.html"/>
  14. <link rel="top" title="CodeIgniter 3.1.11 documentation" href="index.html"/>
  15. <script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.6.2/modernizr.min.js"></script>
  16. </head>
  17. <body class="wy-body-for-nav" role="document">
  18. <div id="nav">
  19. <div id="nav_inner">
  20. <div id="pulldown-menu" class="ciNav">
  21. <ul>
  22. <li class="toctree-l1"><a class="reference internal" href="general/welcome.html">Welcome to CodeIgniter</a></li>
  23. </ul>
  24. <ul>
  25. <li class="toctree-l1"><a class="reference internal" href="installation/index.html">Installation Instructions</a><ul>
  26. <li class="toctree-l2"><a class="reference internal" href="installation/downloads.html">Downloading CodeIgniter</a></li>
  27. <li class="toctree-l2"><a class="reference internal" href="installation/index.html">Installation Instructions</a></li>
  28. <li class="toctree-l2"><a class="reference internal" href="installation/upgrading.html">Upgrading From a Previous Version</a></li>
  29. <li class="toctree-l2"><a class="reference internal" href="installation/troubleshooting.html">Troubleshooting</a></li>
  30. </ul>
  31. </li>
  32. </ul>
  33. <ul>
  34. <li class="toctree-l1"><a class="reference internal" href="overview/index.html">CodeIgniter Overview</a><ul>
  35. <li class="toctree-l2"><a class="reference internal" href="overview/getting_started.html">Getting Started</a></li>
  36. <li class="toctree-l2"><a class="reference internal" href="overview/at_a_glance.html">CodeIgniter at a Glance</a></li>
  37. <li class="toctree-l2"><a class="reference internal" href="overview/features.html">Supported Features</a></li>
  38. <li class="toctree-l2"><a class="reference internal" href="overview/appflow.html">Application Flow Chart</a></li>
  39. <li class="toctree-l2"><a class="reference internal" href="overview/mvc.html">Model-View-Controller</a></li>
  40. <li class="toctree-l2"><a class="reference internal" href="overview/goals.html">Architectural Goals</a></li>
  41. </ul>
  42. </li>
  43. </ul>
  44. <ul>
  45. <li class="toctree-l1"><a class="reference internal" href="tutorial/index.html">Tutorial</a><ul>
  46. <li class="toctree-l2"><a class="reference internal" href="tutorial/static_pages.html">Static pages</a></li>
  47. <li class="toctree-l2"><a class="reference internal" href="tutorial/news_section.html">News section</a></li>
  48. <li class="toctree-l2"><a class="reference internal" href="tutorial/create_news_items.html">Create news items</a></li>
  49. <li class="toctree-l2"><a class="reference internal" href="tutorial/conclusion.html">Conclusion</a></li>
  50. </ul>
  51. </li>
  52. </ul>
  53. <ul>
  54. <li class="toctree-l1"><a class="reference internal" href="contributing/index.html">Contributing to CodeIgniter</a><ul>
  55. <li class="toctree-l2"><a class="reference internal" href="documentation/index.html">Writing CodeIgniter Documentation</a></li>
  56. <li class="toctree-l2"><a class="reference internal" href="DCO.html">Developer’s Certificate of Origin 1.1</a></li>
  57. </ul>
  58. </li>
  59. </ul>
  60. <ul>
  61. <li class="toctree-l1"><a class="reference internal" href="general/index.html">General Topics</a><ul>
  62. <li class="toctree-l2"><a class="reference internal" href="general/urls.html">CodeIgniter URLs</a></li>
  63. <li class="toctree-l2"><a class="reference internal" href="general/controllers.html">Controllers</a></li>
  64. <li class="toctree-l2"><a class="reference internal" href="general/reserved_names.html">Reserved Names</a></li>
  65. <li class="toctree-l2"><a class="reference internal" href="general/views.html">Views</a></li>
  66. <li class="toctree-l2"><a class="reference internal" href="general/models.html">Models</a></li>
  67. <li class="toctree-l2"><a class="reference internal" href="general/helpers.html">Helpers</a></li>
  68. <li class="toctree-l2"><a class="reference internal" href="general/libraries.html">Using CodeIgniter Libraries</a></li>
  69. <li class="toctree-l2"><a class="reference internal" href="general/creating_libraries.html">Creating Libraries</a></li>
  70. <li class="toctree-l2"><a class="reference internal" href="general/drivers.html">Using CodeIgniter Drivers</a></li>
  71. <li class="toctree-l2"><a class="reference internal" href="general/creating_drivers.html">Creating Drivers</a></li>
  72. <li class="toctree-l2"><a class="reference internal" href="general/core_classes.html">Creating Core System Classes</a></li>
  73. <li class="toctree-l2"><a class="reference internal" href="general/ancillary_classes.html">Creating Ancillary Classes</a></li>
  74. <li class="toctree-l2"><a class="reference internal" href="general/hooks.html">Hooks - Extending the Framework Core</a></li>
  75. <li class="toctree-l2"><a class="reference internal" href="general/autoloader.html">Auto-loading Resources</a></li>
  76. <li class="toctree-l2"><a class="reference internal" href="general/common_functions.html">Common Functions</a></li>
  77. <li class="toctree-l2"><a class="reference internal" href="general/compatibility_functions.html">Compatibility Functions</a></li>
  78. <li class="toctree-l2"><a class="reference internal" href="general/routing.html">URI Routing</a></li>
  79. <li class="toctree-l2"><a class="reference internal" href="general/errors.html">Error Handling</a></li>
  80. <li class="toctree-l2"><a class="reference internal" href="general/caching.html">Caching</a></li>
  81. <li class="toctree-l2"><a class="reference internal" href="general/profiling.html">Profiling Your Application</a></li>
  82. <li class="toctree-l2"><a class="reference internal" href="general/cli.html">Running via the CLI</a></li>
  83. <li class="toctree-l2"><a class="reference internal" href="general/managing_apps.html">Managing your Applications</a></li>
  84. <li class="toctree-l2"><a class="reference internal" href="general/environments.html">Handling Multiple Environments</a></li>
  85. <li class="toctree-l2"><a class="reference internal" href="general/alternative_php.html">Alternate PHP Syntax for View Files</a></li>
  86. <li class="toctree-l2"><a class="reference internal" href="general/security.html">Security</a></li>
  87. <li class="toctree-l2"><a class="reference internal" href="general/styleguide.html">PHP Style Guide</a></li>
  88. </ul>
  89. </li>
  90. </ul>
  91. <ul>
  92. <li class="toctree-l1"><a class="reference internal" href="libraries/index.html">Libraries</a><ul>
  93. <li class="toctree-l2"><a class="reference internal" href="libraries/benchmark.html">Benchmarking Class</a></li>
  94. <li class="toctree-l2"><a class="reference internal" href="libraries/caching.html">Caching Driver</a></li>
  95. <li class="toctree-l2"><a class="reference internal" href="libraries/calendar.html">Calendaring Class</a></li>
  96. <li class="toctree-l2"><a class="reference internal" href="libraries/cart.html">Shopping Cart Class</a></li>
  97. <li class="toctree-l2"><a class="reference internal" href="libraries/config.html">Config Class</a></li>
  98. <li class="toctree-l2"><a class="reference internal" href="libraries/email.html">Email Class</a></li>
  99. <li class="toctree-l2"><a class="reference internal" href="libraries/encrypt.html">Encrypt Class</a></li>
  100. <li class="toctree-l2"><a class="reference internal" href="libraries/encryption.html">Encryption Library</a></li>
  101. <li class="toctree-l2"><a class="reference internal" href="libraries/file_uploading.html">File Uploading Class</a></li>
  102. <li class="toctree-l2"><a class="reference internal" href="libraries/form_validation.html">Form Validation</a></li>
  103. <li class="toctree-l2"><a class="reference internal" href="libraries/ftp.html">FTP Class</a></li>
  104. <li class="toctree-l2"><a class="reference internal" href="libraries/image_lib.html">Image Manipulation Class</a></li>
  105. <li class="toctree-l2"><a class="reference internal" href="libraries/input.html">Input Class</a></li>
  106. <li class="toctree-l2"><a class="reference internal" href="libraries/javascript.html">Javascript Class</a></li>
  107. <li class="toctree-l2"><a class="reference internal" href="libraries/language.html">Language Class</a></li>
  108. <li class="toctree-l2"><a class="reference internal" href="libraries/loader.html">Loader Class</a></li>
  109. <li class="toctree-l2"><a class="reference internal" href="libraries/migration.html">Migrations Class</a></li>
  110. <li class="toctree-l2"><a class="reference internal" href="libraries/output.html">Output Class</a></li>
  111. <li class="toctree-l2"><a class="reference internal" href="libraries/pagination.html">Pagination Class</a></li>
  112. <li class="toctree-l2"><a class="reference internal" href="libraries/parser.html">Template Parser Class</a></li>
  113. <li class="toctree-l2"><a class="reference internal" href="libraries/security.html">Security Class</a></li>
  114. <li class="toctree-l2"><a class="reference internal" href="libraries/sessions.html">Session Library</a></li>
  115. <li class="toctree-l2"><a class="reference internal" href="libraries/table.html">HTML Table Class</a></li>
  116. <li class="toctree-l2"><a class="reference internal" href="libraries/trackback.html">Trackback Class</a></li>
  117. <li class="toctree-l2"><a class="reference internal" href="libraries/typography.html">Typography Class</a></li>
  118. <li class="toctree-l2"><a class="reference internal" href="libraries/unit_testing.html">Unit Testing Class</a></li>
  119. <li class="toctree-l2"><a class="reference internal" href="libraries/uri.html">URI Class</a></li>
  120. <li class="toctree-l2"><a class="reference internal" href="libraries/user_agent.html">User Agent Class</a></li>
  121. <li class="toctree-l2"><a class="reference internal" href="libraries/xmlrpc.html">XML-RPC and XML-RPC Server Classes</a></li>
  122. <li class="toctree-l2"><a class="reference internal" href="libraries/zip.html">Zip Encoding Class</a></li>
  123. </ul>
  124. </li>
  125. </ul>
  126. <ul>
  127. <li class="toctree-l1"><a class="reference internal" href="database/index.html">Database Reference</a><ul>
  128. <li class="toctree-l2"><a class="reference internal" href="database/examples.html">Quick Start: Usage Examples</a></li>
  129. <li class="toctree-l2"><a class="reference internal" href="database/configuration.html">Database Configuration</a></li>
  130. <li class="toctree-l2"><a class="reference internal" href="database/connecting.html">Connecting to a Database</a></li>
  131. <li class="toctree-l2"><a class="reference internal" href="database/queries.html">Running Queries</a></li>
  132. <li class="toctree-l2"><a class="reference internal" href="database/results.html">Generating Query Results</a></li>
  133. <li class="toctree-l2"><a class="reference internal" href="database/helpers.html">Query Helper Functions</a></li>
  134. <li class="toctree-l2"><a class="reference internal" href="database/query_builder.html">Query Builder Class</a></li>
  135. <li class="toctree-l2"><a class="reference internal" href="database/transactions.html">Transactions</a></li>
  136. <li class="toctree-l2"><a class="reference internal" href="database/metadata.html">Getting MetaData</a></li>
  137. <li class="toctree-l2"><a class="reference internal" href="database/call_function.html">Custom Function Calls</a></li>
  138. <li class="toctree-l2"><a class="reference internal" href="database/caching.html">Query Caching</a></li>
  139. <li class="toctree-l2"><a class="reference internal" href="database/forge.html">Database Manipulation with Database Forge</a></li>
  140. <li class="toctree-l2"><a class="reference internal" href="database/utilities.html">Database Utilities Class</a></li>
  141. <li class="toctree-l2"><a class="reference internal" href="database/db_driver_reference.html">Database Driver Reference</a></li>
  142. </ul>
  143. </li>
  144. </ul>
  145. <ul>
  146. <li class="toctree-l1"><a class="reference internal" href="helpers/index.html">Helpers</a><ul>
  147. <li class="toctree-l2"><a class="reference internal" href="helpers/array_helper.html">Array Helper</a></li>
  148. <li class="toctree-l2"><a class="reference internal" href="helpers/captcha_helper.html">CAPTCHA Helper</a></li>
  149. <li class="toctree-l2"><a class="reference internal" href="helpers/cookie_helper.html">Cookie Helper</a></li>
  150. <li class="toctree-l2"><a class="reference internal" href="helpers/date_helper.html">Date Helper</a></li>
  151. <li class="toctree-l2"><a class="reference internal" href="helpers/directory_helper.html">Directory Helper</a></li>
  152. <li class="toctree-l2"><a class="reference internal" href="helpers/download_helper.html">Download Helper</a></li>
  153. <li class="toctree-l2"><a class="reference internal" href="helpers/email_helper.html">Email Helper</a></li>
  154. <li class="toctree-l2"><a class="reference internal" href="helpers/file_helper.html">File Helper</a></li>
  155. <li class="toctree-l2"><a class="reference internal" href="helpers/form_helper.html">Form Helper</a></li>
  156. <li class="toctree-l2"><a class="reference internal" href="helpers/html_helper.html">HTML Helper</a></li>
  157. <li class="toctree-l2"><a class="reference internal" href="helpers/inflector_helper.html">Inflector Helper</a></li>
  158. <li class="toctree-l2"><a class="reference internal" href="helpers/language_helper.html">Language Helper</a></li>
  159. <li class="toctree-l2"><a class="reference internal" href="helpers/number_helper.html">Number Helper</a></li>
  160. <li class="toctree-l2"><a class="reference internal" href="helpers/path_helper.html">Path Helper</a></li>
  161. <li class="toctree-l2"><a class="reference internal" href="helpers/security_helper.html">Security Helper</a></li>
  162. <li class="toctree-l2"><a class="reference internal" href="helpers/smiley_helper.html">Smiley Helper</a></li>
  163. <li class="toctree-l2"><a class="reference internal" href="helpers/string_helper.html">String Helper</a></li>
  164. <li class="toctree-l2"><a class="reference internal" href="helpers/text_helper.html">Text Helper</a></li>
  165. <li class="toctree-l2"><a class="reference internal" href="helpers/typography_helper.html">Typography Helper</a></li>
  166. <li class="toctree-l2"><a class="reference internal" href="helpers/url_helper.html">URL Helper</a></li>
  167. <li class="toctree-l2"><a class="reference internal" href="helpers/xml_helper.html">XML Helper</a></li>
  168. </ul>
  169. </li>
  170. </ul>
  171. </div>
  172. </div>
  173. </div>
  174. <div id="nav2">
  175. <a href="#" id="openToc">
  176. <img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAARgAA/+4ADkFkb2JlAGTAAAAAAf/bAIQABAMDAwMDBAMDBAYEAwQGBwUEBAUHCAYGBwYGCAoICQkJCQgKCgwMDAwMCgwMDQ0MDBERERERFBQUFBQUFBQUFAEEBQUIBwgPCgoPFA4ODhQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU/8AAEQgAKwCaAwERAAIRAQMRAf/EAHsAAQAABwEBAAAAAAAAAAAAAAABAwQFBgcIAgkBAQAAAAAAAAAAAAAAAAAAAAAQAAEDAwICBwYEAgsAAAAAAAIBAwQAEQUSBiEHkROTVNQWGDFBUVIUCHEiMtOUFWGBobHRQlMkZIRVEQEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAAIRAxEAPwDSC+ygkOOaUoKigUCgUCgUCgUCgUCgUCgUCgkuGguIP9FBMFb0Hqg7We+3jlmIqqYFf4ub+/QYlnOR/LqIBKGFUbf8qWv971BytQXXE7Y3Lnm3HsFhp2TaZJAdchRXpIgSpdEJWxJEW3xoKV7F5OMy7JkQn2o7D6w33XGjEAkoiqrJEqIiOIiKuhePCgqp22dyYyS3CyWHnQ5joG61HkRnmnTbaFSMhExRVQRRVJU9iUHjE7ez+fJ0MFipmUNhBV8YUd2SoIV9KkjQla9ltegttBdPLW4/qocL+UTfrMiHW4+P9M71shuyrqaHTcxsl7jegpsji8nh5ZwMvDfgTm0RTjSmjYdFCS6KoOIipdFunCgmNYTMv457MMY6U7iI6oMieDDhRm1VbIhuoOkbqtuK0Hpzb+eZcYZexUxt6UyUqK2cd0SdjtgrhOgijcgERUlJOCIl6CpgbP3blRI8XgMjNARAyKNDfeRBdFDBVUAXgQrqH4pxoJTu2NysY97LP4ac1io5q1InHFeGO24LnVKJuKOkSQ/yKir+rh7aCLG1dzypZQI2FnvTgccYOM3FeN0XWERXAUEFVQgQkUktdLpegm+Td3/Xli/L+S/mYNJIOF9G/wBeLKrZHFb0akG6W1WtQWSg3Dyg5e7V3fipE3O4/wCrktyzYA+ufas2LbZIlmnAT2kvuoN1wft95augilglX/tzP3qCu9O3LL/wV/i5v79BvmTADq14UGu91467Z6U9y0HzH/ncj/U/sT/CgynZG7I2NezpZGUjIycJkYkZSG+uQ81pbBNKLxJfjwoMqZ3/ALYHl35AJ7/cuwHcu5k7r1Q5pHetBjquqVVJWGxj9Zrtcl/Ggy3dHMvauR3HFZj5nHNxSyW5JISYDMoIwx8tFIGHZhPNaykGapr6rUAiicEoMG21lMRj8buPAz8xhJrr7uOeiPTCyAwXUaGR1mgozbTusOsFLEiJ7fbQa/h7gcjy2H3V6xppwDNtUSxCJIqp7valBuWVzJ22xuCROXNNZiJkMtms0DbjUkAZjzoDrTMd9dDRI44ZC2YsrYdKWP2WDT2S3N9dNdlRYrGMYc06IURXSYb0igrpWS485xVNS6nF4rwslkoMwnbpgZLB7bmt5uMweAhDEl4B5uSLzzqTnnyVpW2jaJHRMSIjdDiiotvy3DOE5rYTEbkl5yFn28k7JyG4c7AU2HtLH1uKfaiMPI40CdYbpNtmLdwTSn5rewLNld+7TLdeal4WarWBkbVKBjgdElMJJwAAY5fl4kB3b1fp4XvagsGS3FjJfLzDNtS8aeXx7LzT7TyzByQE5PccRGRC0ZRUDRV6y62vbjagzLmJzS2vuPK43JY6aP1TW6Jz+RIWyFtyC06y3EkiiinAo7YCqfq1AqqnGgsOH3lhZO8d1pmcpB8j5XIm9OYlBJSQ/FSS4427DKO0RC8AlcEMhFdViRR1WDWR5t3WXVuL1d106kG9vdeye2g60+1FDyW0shIcXVpyroXt8I8dfd+NB1vioAdWnD3UF1+gD4UFc6CEKpagxXN43rwJLUHz7yX2c8zokt9uHlsPIhA4aRnnHJTLptIS6CNsY7iASpxUUMkReGpfbQW0vtN5pitvrsN28rwtBD0nc0+/Yft5XhaB6TuaXfsP28rwtA9J3NPv2H7eV4Wgek7mn37D9vK8LQPSdzT79h+3leFoHpO5pd+w/byvC0D0nc0u/Yft5XhaB6TuaXfsP28rwtA9J3NLv2H7eV4Wgek7ml37D9vK8LQPSdzS79h+3leFoHpO5p9+w/byvC0E9r7Reazy2HIYVPxkS/CUHVn26cosxyv2g7h89LYmZSXOenvLEQ1YaQ222RATcQCP8rSGqqA8S02W2pQ6FhMoAIlqCtsnwoCpdKClejI4i3Sgtb+GBxVuNBSFt1pV/RQefLjPyUDy4z8lA8uM/JQPLjPyUDy4z8lA8uM/JQPLjPyUDy4z8lA8uM/JQPLjPyUDy4z8lA8utJ/koJ7WCbBU/LQXOPAFq1koK8B0pag90CggtBBf6qB0UDooHRQOigdFA6KB0UDooHRQOigdFA6KB0UDooI0EaBQf//Z" title="Toggle Table of Contents" alt="Toggle Table of Contents" />
  177. </a>
  178. </div>
  179. <div class="wy-grid-for-nav">
  180. <nav data-toggle="wy-nav-shift" class="wy-nav-side">
  181. <div class="wy-side-nav-search">
  182. <a href="index.html" class="fa fa-home"> CodeIgniter</a>
  183. <div role="search">
  184. <form id="rtd-search-form" class="wy-form" action="search.html" method="get">
  185. <input type="text" name="q" placeholder="Search docs" />
  186. <input type="hidden" name="check_keywords" value="yes" />
  187. <input type="hidden" name="area" value="default" />
  188. </form>
  189. </div>
  190. </div>
  191. <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
  192. <ul>
  193. <li class="toctree-l1"><a class="reference internal" href="general/welcome.html">Welcome to CodeIgniter</a></li>
  194. </ul>
  195. <ul>
  196. <li class="toctree-l1"><a class="reference internal" href="installation/index.html">Installation Instructions</a><ul>
  197. <li class="toctree-l2"><a class="reference internal" href="installation/downloads.html">Downloading CodeIgniter</a></li>
  198. <li class="toctree-l2"><a class="reference internal" href="installation/index.html">Installation Instructions</a></li>
  199. <li class="toctree-l2"><a class="reference internal" href="installation/upgrading.html">Upgrading From a Previous Version</a></li>
  200. <li class="toctree-l2"><a class="reference internal" href="installation/troubleshooting.html">Troubleshooting</a></li>
  201. </ul>
  202. </li>
  203. </ul>
  204. <ul>
  205. <li class="toctree-l1"><a class="reference internal" href="overview/index.html">CodeIgniter Overview</a><ul>
  206. <li class="toctree-l2"><a class="reference internal" href="overview/getting_started.html">Getting Started</a></li>
  207. <li class="toctree-l2"><a class="reference internal" href="overview/at_a_glance.html">CodeIgniter at a Glance</a></li>
  208. <li class="toctree-l2"><a class="reference internal" href="overview/features.html">Supported Features</a></li>
  209. <li class="toctree-l2"><a class="reference internal" href="overview/appflow.html">Application Flow Chart</a></li>
  210. <li class="toctree-l2"><a class="reference internal" href="overview/mvc.html">Model-View-Controller</a></li>
  211. <li class="toctree-l2"><a class="reference internal" href="overview/goals.html">Architectural Goals</a></li>
  212. </ul>
  213. </li>
  214. </ul>
  215. <ul>
  216. <li class="toctree-l1"><a class="reference internal" href="tutorial/index.html">Tutorial</a><ul>
  217. <li class="toctree-l2"><a class="reference internal" href="tutorial/static_pages.html">Static pages</a></li>
  218. <li class="toctree-l2"><a class="reference internal" href="tutorial/news_section.html">News section</a></li>
  219. <li class="toctree-l2"><a class="reference internal" href="tutorial/create_news_items.html">Create news items</a></li>
  220. <li class="toctree-l2"><a class="reference internal" href="tutorial/conclusion.html">Conclusion</a></li>
  221. </ul>
  222. </li>
  223. </ul>
  224. <ul>
  225. <li class="toctree-l1"><a class="reference internal" href="contributing/index.html">Contributing to CodeIgniter</a><ul>
  226. <li class="toctree-l2"><a class="reference internal" href="documentation/index.html">Writing CodeIgniter Documentation</a></li>
  227. <li class="toctree-l2"><a class="reference internal" href="DCO.html">Developer’s Certificate of Origin 1.1</a></li>
  228. </ul>
  229. </li>
  230. </ul>
  231. <ul>
  232. <li class="toctree-l1"><a class="reference internal" href="general/index.html">General Topics</a><ul>
  233. <li class="toctree-l2"><a class="reference internal" href="general/urls.html">CodeIgniter URLs</a></li>
  234. <li class="toctree-l2"><a class="reference internal" href="general/controllers.html">Controllers</a></li>
  235. <li class="toctree-l2"><a class="reference internal" href="general/reserved_names.html">Reserved Names</a></li>
  236. <li class="toctree-l2"><a class="reference internal" href="general/views.html">Views</a></li>
  237. <li class="toctree-l2"><a class="reference internal" href="general/models.html">Models</a></li>
  238. <li class="toctree-l2"><a class="reference internal" href="general/helpers.html">Helpers</a></li>
  239. <li class="toctree-l2"><a class="reference internal" href="general/libraries.html">Using CodeIgniter Libraries</a></li>
  240. <li class="toctree-l2"><a class="reference internal" href="general/creating_libraries.html">Creating Libraries</a></li>
  241. <li class="toctree-l2"><a class="reference internal" href="general/drivers.html">Using CodeIgniter Drivers</a></li>
  242. <li class="toctree-l2"><a class="reference internal" href="general/creating_drivers.html">Creating Drivers</a></li>
  243. <li class="toctree-l2"><a class="reference internal" href="general/core_classes.html">Creating Core System Classes</a></li>
  244. <li class="toctree-l2"><a class="reference internal" href="general/ancillary_classes.html">Creating Ancillary Classes</a></li>
  245. <li class="toctree-l2"><a class="reference internal" href="general/hooks.html">Hooks - Extending the Framework Core</a></li>
  246. <li class="toctree-l2"><a class="reference internal" href="general/autoloader.html">Auto-loading Resources</a></li>
  247. <li class="toctree-l2"><a class="reference internal" href="general/common_functions.html">Common Functions</a></li>
  248. <li class="toctree-l2"><a class="reference internal" href="general/compatibility_functions.html">Compatibility Functions</a></li>
  249. <li class="toctree-l2"><a class="reference internal" href="general/routing.html">URI Routing</a></li>
  250. <li class="toctree-l2"><a class="reference internal" href="general/errors.html">Error Handling</a></li>
  251. <li class="toctree-l2"><a class="reference internal" href="general/caching.html">Caching</a></li>
  252. <li class="toctree-l2"><a class="reference internal" href="general/profiling.html">Profiling Your Application</a></li>
  253. <li class="toctree-l2"><a class="reference internal" href="general/cli.html">Running via the CLI</a></li>
  254. <li class="toctree-l2"><a class="reference internal" href="general/managing_apps.html">Managing your Applications</a></li>
  255. <li class="toctree-l2"><a class="reference internal" href="general/environments.html">Handling Multiple Environments</a></li>
  256. <li class="toctree-l2"><a class="reference internal" href="general/alternative_php.html">Alternate PHP Syntax for View Files</a></li>
  257. <li class="toctree-l2"><a class="reference internal" href="general/security.html">Security</a></li>
  258. <li class="toctree-l2"><a class="reference internal" href="general/styleguide.html">PHP Style Guide</a></li>
  259. </ul>
  260. </li>
  261. </ul>
  262. <ul>
  263. <li class="toctree-l1"><a class="reference internal" href="libraries/index.html">Libraries</a><ul>
  264. <li class="toctree-l2"><a class="reference internal" href="libraries/benchmark.html">Benchmarking Class</a></li>
  265. <li class="toctree-l2"><a class="reference internal" href="libraries/caching.html">Caching Driver</a></li>
  266. <li class="toctree-l2"><a class="reference internal" href="libraries/calendar.html">Calendaring Class</a></li>
  267. <li class="toctree-l2"><a class="reference internal" href="libraries/cart.html">Shopping Cart Class</a></li>
  268. <li class="toctree-l2"><a class="reference internal" href="libraries/config.html">Config Class</a></li>
  269. <li class="toctree-l2"><a class="reference internal" href="libraries/email.html">Email Class</a></li>
  270. <li class="toctree-l2"><a class="reference internal" href="libraries/encrypt.html">Encrypt Class</a></li>
  271. <li class="toctree-l2"><a class="reference internal" href="libraries/encryption.html">Encryption Library</a></li>
  272. <li class="toctree-l2"><a class="reference internal" href="libraries/file_uploading.html">File Uploading Class</a></li>
  273. <li class="toctree-l2"><a class="reference internal" href="libraries/form_validation.html">Form Validation</a></li>
  274. <li class="toctree-l2"><a class="reference internal" href="libraries/ftp.html">FTP Class</a></li>
  275. <li class="toctree-l2"><a class="reference internal" href="libraries/image_lib.html">Image Manipulation Class</a></li>
  276. <li class="toctree-l2"><a class="reference internal" href="libraries/input.html">Input Class</a></li>
  277. <li class="toctree-l2"><a class="reference internal" href="libraries/javascript.html">Javascript Class</a></li>
  278. <li class="toctree-l2"><a class="reference internal" href="libraries/language.html">Language Class</a></li>
  279. <li class="toctree-l2"><a class="reference internal" href="libraries/loader.html">Loader Class</a></li>
  280. <li class="toctree-l2"><a class="reference internal" href="libraries/migration.html">Migrations Class</a></li>
  281. <li class="toctree-l2"><a class="reference internal" href="libraries/output.html">Output Class</a></li>
  282. <li class="toctree-l2"><a class="reference internal" href="libraries/pagination.html">Pagination Class</a></li>
  283. <li class="toctree-l2"><a class="reference internal" href="libraries/parser.html">Template Parser Class</a></li>
  284. <li class="toctree-l2"><a class="reference internal" href="libraries/security.html">Security Class</a></li>
  285. <li class="toctree-l2"><a class="reference internal" href="libraries/sessions.html">Session Library</a></li>
  286. <li class="toctree-l2"><a class="reference internal" href="libraries/table.html">HTML Table Class</a></li>
  287. <li class="toctree-l2"><a class="reference internal" href="libraries/trackback.html">Trackback Class</a></li>
  288. <li class="toctree-l2"><a class="reference internal" href="libraries/typography.html">Typography Class</a></li>
  289. <li class="toctree-l2"><a class="reference internal" href="libraries/unit_testing.html">Unit Testing Class</a></li>
  290. <li class="toctree-l2"><a class="reference internal" href="libraries/uri.html">URI Class</a></li>
  291. <li class="toctree-l2"><a class="reference internal" href="libraries/user_agent.html">User Agent Class</a></li>
  292. <li class="toctree-l2"><a class="reference internal" href="libraries/xmlrpc.html">XML-RPC and XML-RPC Server Classes</a></li>
  293. <li class="toctree-l2"><a class="reference internal" href="libraries/zip.html">Zip Encoding Class</a></li>
  294. </ul>
  295. </li>
  296. </ul>
  297. <ul>
  298. <li class="toctree-l1"><a class="reference internal" href="database/index.html">Database Reference</a><ul>
  299. <li class="toctree-l2"><a class="reference internal" href="database/examples.html">Quick Start: Usage Examples</a></li>
  300. <li class="toctree-l2"><a class="reference internal" href="database/configuration.html">Database Configuration</a></li>
  301. <li class="toctree-l2"><a class="reference internal" href="database/connecting.html">Connecting to a Database</a></li>
  302. <li class="toctree-l2"><a class="reference internal" href="database/queries.html">Running Queries</a></li>
  303. <li class="toctree-l2"><a class="reference internal" href="database/results.html">Generating Query Results</a></li>
  304. <li class="toctree-l2"><a class="reference internal" href="database/helpers.html">Query Helper Functions</a></li>
  305. <li class="toctree-l2"><a class="reference internal" href="database/query_builder.html">Query Builder Class</a></li>
  306. <li class="toctree-l2"><a class="reference internal" href="database/transactions.html">Transactions</a></li>
  307. <li class="toctree-l2"><a class="reference internal" href="database/metadata.html">Getting MetaData</a></li>
  308. <li class="toctree-l2"><a class="reference internal" href="database/call_function.html">Custom Function Calls</a></li>
  309. <li class="toctree-l2"><a class="reference internal" href="database/caching.html">Query Caching</a></li>
  310. <li class="toctree-l2"><a class="reference internal" href="database/forge.html">Database Manipulation with Database Forge</a></li>
  311. <li class="toctree-l2"><a class="reference internal" href="database/utilities.html">Database Utilities Class</a></li>
  312. <li class="toctree-l2"><a class="reference internal" href="database/db_driver_reference.html">Database Driver Reference</a></li>
  313. </ul>
  314. </li>
  315. </ul>
  316. <ul>
  317. <li class="toctree-l1"><a class="reference internal" href="helpers/index.html">Helpers</a><ul>
  318. <li class="toctree-l2"><a class="reference internal" href="helpers/array_helper.html">Array Helper</a></li>
  319. <li class="toctree-l2"><a class="reference internal" href="helpers/captcha_helper.html">CAPTCHA Helper</a></li>
  320. <li class="toctree-l2"><a class="reference internal" href="helpers/cookie_helper.html">Cookie Helper</a></li>
  321. <li class="toctree-l2"><a class="reference internal" href="helpers/date_helper.html">Date Helper</a></li>
  322. <li class="toctree-l2"><a class="reference internal" href="helpers/directory_helper.html">Directory Helper</a></li>
  323. <li class="toctree-l2"><a class="reference internal" href="helpers/download_helper.html">Download Helper</a></li>
  324. <li class="toctree-l2"><a class="reference internal" href="helpers/email_helper.html">Email Helper</a></li>
  325. <li class="toctree-l2"><a class="reference internal" href="helpers/file_helper.html">File Helper</a></li>
  326. <li class="toctree-l2"><a class="reference internal" href="helpers/form_helper.html">Form Helper</a></li>
  327. <li class="toctree-l2"><a class="reference internal" href="helpers/html_helper.html">HTML Helper</a></li>
  328. <li class="toctree-l2"><a class="reference internal" href="helpers/inflector_helper.html">Inflector Helper</a></li>
  329. <li class="toctree-l2"><a class="reference internal" href="helpers/language_helper.html">Language Helper</a></li>
  330. <li class="toctree-l2"><a class="reference internal" href="helpers/number_helper.html">Number Helper</a></li>
  331. <li class="toctree-l2"><a class="reference internal" href="helpers/path_helper.html">Path Helper</a></li>
  332. <li class="toctree-l2"><a class="reference internal" href="helpers/security_helper.html">Security Helper</a></li>
  333. <li class="toctree-l2"><a class="reference internal" href="helpers/smiley_helper.html">Smiley Helper</a></li>
  334. <li class="toctree-l2"><a class="reference internal" href="helpers/string_helper.html">String Helper</a></li>
  335. <li class="toctree-l2"><a class="reference internal" href="helpers/text_helper.html">Text Helper</a></li>
  336. <li class="toctree-l2"><a class="reference internal" href="helpers/typography_helper.html">Typography Helper</a></li>
  337. <li class="toctree-l2"><a class="reference internal" href="helpers/url_helper.html">URL Helper</a></li>
  338. <li class="toctree-l2"><a class="reference internal" href="helpers/xml_helper.html">XML Helper</a></li>
  339. </ul>
  340. </li>
  341. </ul>
  342. </div>
  343. &nbsp;
  344. </nav>
  345. <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
  346. <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
  347. <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
  348. <a href="index.html">CodeIgniter</a>
  349. </nav>
  350. <div class="wy-nav-content">
  351. <div class="rst-content">
  352. <div role="navigation" aria-label="breadcrumbs navigation">
  353. <ul class="wy-breadcrumbs">
  354. <li><a href="index.html">Docs</a> &raquo;</li>
  355. <li></li>
  356. <li class="wy-breadcrumbs-aside">
  357. </li>
  358. <div style="float:right;margin-left:5px;" id="closeMe">
  359. <img title="Classic Layout" alt="classic layout" src="data:image/gif;base64,R0lGODlhFAAUAJEAAAAAADMzM////wAAACH5BAUUAAIALAAAAAAUABQAAAImlI+py+0PU5gRBRDM3DxbWoXis42X13USOLauUIqnlsaH/eY6UwAAOw==" />
  360. </div>
  361. </ul>
  362. <hr/>
  363. </div>
  364. <div role="main" class="document">
  365. <h1 id="index">Index</h1>
  366. <div class="genindex-jumpbox">
  367. <a href="#_"><strong>_</strong></a>
  368. | <a href="#A"><strong>A</strong></a>
  369. | <a href="#B"><strong>B</strong></a>
  370. | <a href="#C"><strong>C</strong></a>
  371. | <a href="#D"><strong>D</strong></a>
  372. | <a href="#E"><strong>E</strong></a>
  373. | <a href="#F"><strong>F</strong></a>
  374. | <a href="#G"><strong>G</strong></a>
  375. | <a href="#H"><strong>H</strong></a>
  376. | <a href="#I"><strong>I</strong></a>
  377. | <a href="#J"><strong>J</strong></a>
  378. | <a href="#K"><strong>K</strong></a>
  379. | <a href="#L"><strong>L</strong></a>
  380. | <a href="#M"><strong>M</strong></a>
  381. | <a href="#N"><strong>N</strong></a>
  382. | <a href="#O"><strong>O</strong></a>
  383. | <a href="#P"><strong>P</strong></a>
  384. | <a href="#Q"><strong>Q</strong></a>
  385. | <a href="#R"><strong>R</strong></a>
  386. | <a href="#S"><strong>S</strong></a>
  387. | <a href="#T"><strong>T</strong></a>
  388. | <a href="#U"><strong>U</strong></a>
  389. | <a href="#V"><strong>V</strong></a>
  390. | <a href="#W"><strong>W</strong></a>
  391. | <a href="#X"><strong>X</strong></a>
  392. </div>
  393. <h2 id="_">_</h2>
  394. <table style="width: 100%" class="indextable genindextable"><tr>
  395. <td style="width: 33%; vertical-align: top;"><ul>
  396. <li><a href="libraries/sessions.html#CI_Session::__get"><strong>__get() (CI_Session method)</strong></a>
  397. </li>
  398. </ul></td>
  399. <td style="width: 33%; vertical-align: top;"><ul>
  400. <li><a href="libraries/sessions.html#CI_Session::__set"><strong>__set() (CI_Session method)</strong></a>
  401. </li>
  402. <li><a href="libraries/output.html#CI_Output::_display"><strong>_display() (CI_Output method)</strong></a>
  403. </li>
  404. </ul></td>
  405. </tr></table>
  406. <h2 id="A">A</h2>
  407. <table style="width: 100%" class="indextable genindextable"><tr>
  408. <td style="width: 33%; vertical-align: top;"><ul>
  409. <li><a href="libraries/user_agent.html#CI_User_agent::accept_charset"><strong>accept_charset() (CI_User_agent method)</strong></a>
  410. </li>
  411. <li><a href="libraries/user_agent.html#CI_User_agent::accept_lang"><strong>accept_lang() (CI_User_agent method)</strong></a>
  412. </li>
  413. <li><a href="libraries/unit_testing.html#CI_Unit_test::active"><strong>active() (CI_Unit_test method)</strong></a>
  414. </li>
  415. <li><a href="database/forge.html#CI_DB_forge::add_column"><strong>add_column() (CI_DB_forge method)</strong></a>
  416. </li>
  417. <li><a href="libraries/zip.html#CI_Zip::add_data"><strong>add_data() (CI_Zip method)</strong></a>
  418. </li>
  419. <li><a href="libraries/zip.html#CI_Zip::add_dir"><strong>add_dir() (CI_Zip method)</strong></a>
  420. </li>
  421. <li><a href="database/forge.html#CI_DB_forge::add_field"><strong>add_field() (CI_DB_forge method)</strong></a>
  422. </li>
  423. <li><a href="database/forge.html#CI_DB_forge::add_key"><strong>add_key() (CI_DB_forge method)</strong></a>
  424. </li>
  425. <li><a href="libraries/loader.html#CI_Loader::add_package_path"><strong>add_package_path() (CI_Loader method)</strong></a>
  426. </li>
  427. <li><a href="libraries/table.html#CI_Table::add_row"><strong>add_row() (CI_Table method)</strong></a>
  428. </li>
  429. <li><a href="libraries/calendar.html#CI_Calendar::adjust_date"><strong>adjust_date() (CI_Calendar method)</strong></a>
  430. </li>
  431. <li><a href="database/db_driver_reference.html#CI_DB_driver::affected_rows"><strong>affected_rows() (CI_DB_driver method)</strong></a>
  432. </li>
  433. <li><a href="libraries/user_agent.html#CI_User_agent::agent_string"><strong>agent_string() (CI_User_agent method)</strong></a>
  434. </li>
  435. </ul></td>
  436. <td style="width: 33%; vertical-align: top;"><ul>
  437. <li><a href="libraries/sessions.html#CI_Session::all_userdata"><strong>all_userdata() (CI_Session method)</strong></a>
  438. </li>
  439. <li><a href="helpers/string_helper.html#alternator"><strong>alternator() (global function)</strong></a>
  440. </li>
  441. <li><a href="helpers/url_helper.html#anchor"><strong>anchor() (global function)</strong></a>
  442. </li>
  443. <li><a href="helpers/url_helper.html#anchor_popup"><strong>anchor_popup() (global function)</strong></a>
  444. </li>
  445. <li><a href="libraries/output.html#CI_Output::append_output"><strong>append_output() (CI_Output method)</strong></a>
  446. </li>
  447. <li><a href="libraries/zip.html#CI_Zip::archive"><strong>archive() (CI_Zip method)</strong></a>
  448. </li>
  449. <li><a href="general/compatibility_functions.html#array_column"><strong>array_column() (global function)</strong></a>
  450. </li>
  451. <li><a href="helpers/text_helper.html#ascii_to_entities"><strong>ascii_to_entities() (global function)</strong></a>
  452. </li>
  453. <li><a href="libraries/uri.html#CI_URI::assoc_to_uri"><strong>assoc_to_uri() (CI_URI method)</strong></a>
  454. </li>
  455. <li><a href="libraries/email.html#CI_Email::attach"><strong>attach() (CI_Email method)</strong></a>
  456. </li>
  457. <li><a href="libraries/email.html#CI_Email::attachment_cid"><strong>attachment_cid() (CI_Email method)</strong></a>
  458. </li>
  459. <li><a href="helpers/url_helper.html#auto_link"><strong>auto_link() (global function)</strong></a>
  460. </li>
  461. <li><a href="libraries/typography.html#CI_Typography::auto_typography"><strong>auto_typography() (CI_Typography method)</strong></a>
  462. <ul>
  463. <li><a href="helpers/typography_helper.html#auto_typography"><strong>(global function)</strong></a>
  464. </li>
  465. </ul></li>
  466. </ul></td>
  467. </tr></table>
  468. <h2 id="B">B</h2>
  469. <table style="width: 100%" class="indextable genindextable"><tr>
  470. <td style="width: 33%; vertical-align: top;"><ul>
  471. <li><a href="database/utilities.html#CI_DB_utility::backup"><strong>backup() (CI_DB_utility method)</strong></a>
  472. </li>
  473. <li><a href="libraries/config.html#CI_Config::base_url"><strong>base_url() (CI_Config method)</strong></a>
  474. <ul>
  475. <li><a href="helpers/url_helper.html#base_url"><strong>(global function)</strong></a>
  476. </li>
  477. </ul></li>
  478. </ul></td>
  479. <td style="width: 33%; vertical-align: top;"><ul>
  480. <li><a href="libraries/email.html#CI_Email::bcc"><strong>bcc() (CI_Email method)</strong></a>
  481. </li>
  482. <li><a href="helpers/html_helper.html#br"><strong>br() (global function)</strong></a>
  483. </li>
  484. <li><a href="libraries/user_agent.html#CI_User_agent::browser"><strong>browser() (CI_User_agent method)</strong></a>
  485. </li>
  486. <li><a href="helpers/number_helper.html#byte_format"><strong>byte_format() (global function)</strong></a>
  487. </li>
  488. </ul></td>
  489. </tr></table>
  490. <h2 id="C">C</h2>
  491. <table style="width: 100%" class="indextable genindextable"><tr>
  492. <td style="width: 33%; vertical-align: top;"><ul>
  493. <li><a href="libraries/output.html#CI_Output::cache"><strong>cache() (CI_Output method)</strong></a>
  494. </li>
  495. <li><a href="database/db_driver_reference.html#CI_DB_driver::cache_delete"><strong>cache_delete() (CI_DB_driver method)</strong></a>
  496. </li>
  497. <li><a href="database/db_driver_reference.html#CI_DB_driver::cache_delete_all"><strong>cache_delete_all() (CI_DB_driver method)</strong></a>
  498. </li>
  499. <li><a href="libraries/caching.html#CI_Cache::cache_info"><strong>cache_info() (CI_Cache method)</strong></a>
  500. </li>
  501. <li><a href="database/db_driver_reference.html#CI_DB_driver::cache_off"><strong>cache_off() (CI_DB_driver method)</strong></a>
  502. </li>
  503. <li><a href="database/db_driver_reference.html#CI_DB_driver::cache_on"><strong>cache_on() (CI_DB_driver method)</strong></a>
  504. </li>
  505. <li><a href="database/db_driver_reference.html#CI_DB_driver::cache_set_path"><strong>cache_set_path() (CI_DB_driver method)</strong></a>
  506. </li>
  507. <li><a href="database/db_driver_reference.html#CI_DB_driver::call_function"><strong>call_function() (CI_DB_driver method)</strong></a>
  508. </li>
  509. <li><a href="helpers/inflector_helper.html#camelize"><strong>camelize() (global function)</strong></a>
  510. </li>
  511. <li><a href="libraries/email.html#CI_Email::cc"><strong>cc() (CI_Email method)</strong></a>
  512. </li>
  513. <li><a href="libraries/ftp.html#CI_FTP::changedir"><strong>changedir() (CI_FTP method)</strong></a>
  514. </li>
  515. <li><a href="helpers/text_helper.html#character_limiter"><strong>character_limiter() (global function)</strong></a>
  516. </li>
  517. <li><a href="libraries/user_agent.html#CI_User_agent::charsets"><strong>charsets() (CI_User_agent method)</strong></a>
  518. </li>
  519. <li><a href="libraries/ftp.html#CI_FTP::chmod"><strong>chmod() (CI_FTP method)</strong></a>
  520. </li>
  521. <li><a href="libraries/benchmark.html#CI_Benchmark"><strong>CI_Benchmark (class)</strong></a>
  522. </li>
  523. <li><a href="libraries/caching.html#CI_Cache"><strong>CI_Cache (class)</strong></a>
  524. </li>
  525. <li><a href="libraries/calendar.html#CI_Calendar"><strong>CI_Calendar (class)</strong></a>
  526. </li>
  527. <li><a href="libraries/cart.html#CI_Cart"><strong>CI_Cart (class)</strong></a>
  528. </li>
  529. <li><a href="libraries/config.html#CI_Config"><strong>CI_Config (class)</strong></a>
  530. </li>
  531. <li><a href="database/db_driver_reference.html#CI_DB_driver"><strong>CI_DB_driver (class)</strong></a>
  532. </li>
  533. <li><a href="database/forge.html#CI_DB_forge"><strong>CI_DB_forge (class)</strong></a>
  534. </li>
  535. <li><a href="database/query_builder.html#CI_DB_query_builder"><strong>CI_DB_query_builder (class)</strong></a>
  536. </li>
  537. <li><a href="database/results.html#CI_DB_result"><strong>CI_DB_result (class)</strong></a>
  538. </li>
  539. <li><a href="database/utilities.html#CI_DB_utility"><strong>CI_DB_utility (class)</strong></a>
  540. </li>
  541. <li><a href="libraries/email.html#CI_Email"><strong>CI_Email (class)</strong></a>
  542. </li>
  543. <li><a href="libraries/encrypt.html#CI_Encrypt"><strong>CI_Encrypt (class)</strong></a>
  544. </li>
  545. <li><a href="libraries/encryption.html#CI_Encryption"><strong>CI_Encryption (class)</strong></a>
  546. </li>
  547. <li><a href="libraries/form_validation.html#CI_Form_validation"><strong>CI_Form_validation (class)</strong></a>
  548. </li>
  549. <li><a href="libraries/ftp.html#CI_FTP"><strong>CI_FTP (class)</strong></a>
  550. </li>
  551. <li><a href="libraries/image_lib.html#CI_Image_lib"><strong>CI_Image_lib (class)</strong></a>
  552. </li>
  553. <li><a href="libraries/input.html#CI_Input"><strong>CI_Input (class)</strong></a>
  554. </li>
  555. <li><a href="libraries/language.html#CI_Lang"><strong>CI_Lang (class)</strong></a>
  556. </li>
  557. <li><a href="libraries/loader.html#CI_Loader"><strong>CI_Loader (class)</strong></a>
  558. </li>
  559. <li><a href="libraries/migration.html#CI_Migration"><strong>CI_Migration (class)</strong></a>
  560. </li>
  561. <li><a href="libraries/output.html#CI_Output"><strong>CI_Output (class)</strong></a>
  562. </li>
  563. <li><a href="libraries/pagination.html#CI_Pagination"><strong>CI_Pagination (class)</strong></a>
  564. </li>
  565. <li><a href="libraries/parser.html#CI_Parser"><strong>CI_Parser (class)</strong></a>
  566. </li>
  567. <li><a href="libraries/security.html#CI_Security"><strong>CI_Security (class)</strong></a>
  568. </li>
  569. <li><a href="libraries/sessions.html#CI_Session"><strong>CI_Session (class)</strong></a>
  570. </li>
  571. </ul></td>
  572. <td style="width: 33%; vertical-align: top;"><ul>
  573. <li><a href="libraries/table.html#CI_Table"><strong>CI_Table (class)</strong></a>
  574. </li>
  575. <li><a href="libraries/trackback.html#CI_Trackback"><strong>CI_Trackback (class)</strong></a>
  576. </li>
  577. <li><a href="libraries/typography.html#CI_Typography"><strong>CI_Typography (class)</strong></a>
  578. </li>
  579. <li><a href="libraries/unit_testing.html#CI_Unit_test"><strong>CI_Unit_test (class)</strong></a>
  580. </li>
  581. <li><a href="libraries/file_uploading.html#CI_Upload"><strong>CI_Upload (class)</strong></a>
  582. </li>
  583. <li><a href="libraries/uri.html#CI_URI"><strong>CI_URI (class)</strong></a>
  584. </li>
  585. <li><a href="libraries/user_agent.html#CI_User_agent"><strong>CI_User_agent (class)</strong></a>
  586. </li>
  587. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc"><strong>CI_Xmlrpc (class)</strong></a>
  588. </li>
  589. <li><a href="libraries/zip.html#CI_Zip"><strong>CI_Zip (class)</strong></a>
  590. </li>
  591. <li><a href="libraries/caching.html#CI_Cache::clean"><strong>clean() (CI_Cache method)</strong></a>
  592. </li>
  593. <li><a href="libraries/email.html#CI_Email::clear"><strong>clear() (CI_Email method)</strong></a>
  594. <ul>
  595. <li><a href="libraries/image_lib.html#CI_Image_lib::clear"><strong>(CI_Image_lib method)</strong></a>
  596. </li>
  597. <li><a href="libraries/table.html#CI_Table::clear"><strong>(CI_Table method)</strong></a>
  598. </li>
  599. </ul></li>
  600. <li><a href="libraries/zip.html#CI_Zip::clear_data"><strong>clear_data() (CI_Zip method)</strong></a>
  601. </li>
  602. <li><a href="libraries/loader.html#CI_Loader::clear_vars"><strong>clear_vars() (CI_Loader method)</strong></a>
  603. </li>
  604. <li><a href="database/db_driver_reference.html#CI_DB_driver::close"><strong>close() (CI_DB_driver method)</strong></a>
  605. <ul>
  606. <li><a href="libraries/ftp.html#CI_FTP::close"><strong>(CI_FTP method)</strong></a>
  607. </li>
  608. </ul></li>
  609. <li><a href="database/db_driver_reference.html#CI_DB_driver::compile_binds"><strong>compile_binds() (CI_DB_driver method)</strong></a>
  610. </li>
  611. <li><a href="libraries/loader.html#CI_Loader::config"><strong>config() (CI_Loader method)</strong></a>
  612. </li>
  613. <li><a href="general/common_functions.html#config_item"><strong>config_item() (global function)</strong></a>
  614. </li>
  615. <li><a href="libraries/ftp.html#CI_FTP::connect"><strong>connect() (CI_FTP method)</strong></a>
  616. </li>
  617. <li><a href="libraries/cart.html#CI_Cart::contents"><strong>contents() (CI_Cart method)</strong></a>
  618. </li>
  619. <li><a href="helpers/text_helper.html#convert_accented_characters"><strong>convert_accented_characters() (global function)</strong></a>
  620. </li>
  621. <li><a href="libraries/trackback.html#CI_Trackback::convert_ascii"><strong>convert_ascii() (CI_Trackback method)</strong></a>
  622. </li>
  623. <li><a href="libraries/trackback.html#CI_Trackback::convert_xml"><strong>convert_xml() (CI_Trackback method)</strong></a>
  624. </li>
  625. <li><a href="libraries/input.html#CI_Input::cookie"><strong>cookie() (CI_Input method)</strong></a>
  626. </li>
  627. <li><a href="database/db_driver_reference.html#CI_DB_driver::count_all"><strong>count_all() (CI_DB_driver method)</strong></a>
  628. </li>
  629. <li><a href="database/query_builder.html#CI_DB_query_builder::count_all_results"><strong>count_all_results() (CI_DB_query_builder method)</strong></a>
  630. </li>
  631. <li><a href="helpers/captcha_helper.html#create_captcha"><strong>create_captcha() (global function)</strong></a>
  632. </li>
  633. <li><a href="database/forge.html#CI_DB_forge::create_database"><strong>create_database() (CI_DB_forge method)</strong></a>
  634. </li>
  635. <li><a href="libraries/encryption.html#CI_Encryption::create_key"><strong>create_key() (CI_Encryption method)</strong></a>
  636. </li>
  637. <li><a href="libraries/pagination.html#CI_Pagination::create_links"><strong>create_links() (CI_Pagination method)</strong></a>
  638. </li>
  639. <li><a href="database/forge.html#CI_DB_forge::create_table"><strong>create_table() (CI_DB_forge method)</strong></a>
  640. </li>
  641. <li><a href="libraries/image_lib.html#CI_Image_lib::crop"><strong>crop() (CI_Image_lib method)</strong></a>
  642. </li>
  643. <li><a href="database/utilities.html#CI_DB_utility::csv_from_result"><strong>csv_from_result() (CI_DB_utility method)</strong></a>
  644. </li>
  645. <li><a href="libraries/migration.html#CI_Migration::current"><strong>current() (CI_Migration method)</strong></a>
  646. </li>
  647. <li><a href="helpers/url_helper.html#current_url"><strong>current_url() (global function)</strong></a>
  648. </li>
  649. <li><a href="database/results.html#CI_DB_result::custom_result_object"><strong>custom_result_object() (CI_DB_result method)</strong></a>
  650. </li>
  651. <li><a href="database/results.html#CI_DB_result::custom_row_object"><strong>custom_row_object() (CI_DB_result method)</strong></a>
  652. </li>
  653. </ul></td>
  654. </tr></table>
  655. <h2 id="D">D</h2>
  656. <table style="width: 100%" class="indextable genindextable"><tr>
  657. <td style="width: 33%; vertical-align: top;"><ul>
  658. <li><a href="libraries/trackback.html#CI_Trackback::data"><strong>data() (CI_Trackback method)</strong></a>
  659. <ul>
  660. <li><a href="libraries/file_uploading.html#CI_Upload::data"><strong>(CI_Upload method)</strong></a>
  661. </li>
  662. </ul></li>
  663. <li><a href="database/results.html#CI_DB_result::data_seek"><strong>data_seek() (CI_DB_result method)</strong></a>
  664. </li>
  665. <li><a href="libraries/loader.html#CI_Loader::database"><strong>database() (CI_Loader method)</strong></a>
  666. </li>
  667. <li><a href="database/utilities.html#CI_DB_utility::database_exists"><strong>database_exists() (CI_DB_utility method)</strong></a>
  668. </li>
  669. <li><a href="helpers/date_helper.html#date_range"><strong>date_range() (global function)</strong></a>
  670. </li>
  671. <li><a href="helpers/date_helper.html#days_in_month"><strong>days_in_month() (global function)</strong></a>
  672. </li>
  673. <li><a href="database/db_driver_reference.html#CI_DB_driver::db_connect"><strong>db_connect() (CI_DB_driver method)</strong></a>
  674. </li>
  675. <li><a href="database/db_driver_reference.html#CI_DB_driver::db_pconnect"><strong>db_pconnect() (CI_DB_driver method)</strong></a>
  676. </li>
  677. <li><a href="database/db_driver_reference.html#CI_DB_driver::db_select"><strong>db_select() (CI_DB_driver method)</strong></a>
  678. </li>
  679. <li><a href="database/db_driver_reference.html#CI_DB_driver::db_set_charset"><strong>db_set_charset() (CI_DB_driver method)</strong></a>
  680. </li>
  681. <li><a href="libraries/loader.html#CI_Loader::dbforge"><strong>dbforge() (CI_Loader method)</strong></a>
  682. </li>
  683. <li><a href="database/query_builder.html#CI_DB_query_builder::dbprefix"><strong>dbprefix() (CI_DB_query_builder method)</strong></a>
  684. </li>
  685. <li><a href="libraries/loader.html#CI_Loader::dbutil"><strong>dbutil() (CI_Loader method)</strong></a>
  686. </li>
  687. <li><a href="libraries/encrypt.html#CI_Encrypt::decode"><strong>decode() (CI_Encrypt method)</strong></a>
  688. </li>
  689. <li><a href="libraries/caching.html#CI_Cache::decrement"><strong>decrement() (CI_Cache method)</strong></a>
  690. </li>
  691. <li><a href="libraries/encryption.html#CI_Encryption::decrypt"><strong>decrypt() (CI_Encryption method)</strong></a>
  692. </li>
  693. <li><a href="libraries/calendar.html#CI_Calendar::default_template"><strong>default_template() (CI_Calendar method)</strong></a>
  694. </li>
  695. <li><a href="libraries/caching.html#CI_Cache::delete"><strong>delete() (CI_Cache method)</strong></a>
  696. <ul>
  697. <li><a href="database/query_builder.html#CI_DB_query_builder::delete"><strong>(CI_DB_query_builder method)</strong></a>
  698. </li>
  699. </ul></li>
  700. <li><a href="helpers/cookie_helper.html#delete_cookie"><strong>delete_cookie() (global function)</strong></a>
  701. </li>
  702. </ul></td>
  703. <td style="width: 33%; vertical-align: top;"><ul>
  704. <li><a href="libraries/ftp.html#CI_FTP::delete_dir"><strong>delete_dir() (CI_FTP method)</strong></a>
  705. </li>
  706. <li><a href="libraries/ftp.html#CI_FTP::delete_file"><strong>delete_file() (CI_FTP method)</strong></a>
  707. </li>
  708. <li><a href="helpers/file_helper.html#delete_files"><strong>delete_files() (global function)</strong></a>
  709. </li>
  710. <li><a href="libraries/cart.html#CI_Cart::destroy"><strong>destroy() (CI_Cart method)</strong></a>
  711. </li>
  712. <li><a href="helpers/directory_helper.html#directory_map"><strong>directory_map() (global function)</strong></a>
  713. </li>
  714. <li><a href="database/db_driver_reference.html#CI_DB_driver::display_error"><strong>display_error() (CI_DB_driver method)</strong></a>
  715. <ul>
  716. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc::display_error"><strong>(CI_Xmlrpc method)</strong></a>
  717. </li>
  718. </ul></li>
  719. <li><a href="libraries/image_lib.html#CI_Image_lib::display_errors"><strong>display_errors() (CI_Image_lib method)</strong></a>
  720. <ul>
  721. <li><a href="libraries/trackback.html#CI_Trackback::display_errors"><strong>(CI_Trackback method)</strong></a>
  722. </li>
  723. <li><a href="libraries/file_uploading.html#CI_Upload::display_errors"><strong>(CI_Upload method)</strong></a>
  724. </li>
  725. </ul></li>
  726. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc::display_response"><strong>display_response() (CI_Xmlrpc method)</strong></a>
  727. </li>
  728. <li><a href="database/query_builder.html#CI_DB_query_builder::distinct"><strong>distinct() (CI_DB_query_builder method)</strong></a>
  729. </li>
  730. <li><a href="helpers/security_helper.html#do_hash"><strong>do_hash() (global function)</strong></a>
  731. </li>
  732. <li><a href="libraries/file_uploading.html#CI_Upload::do_upload"><strong>do_upload() (CI_Upload method)</strong></a>
  733. </li>
  734. <li><a href="helpers/html_helper.html#doctype"><strong>doctype() (global function)</strong></a>
  735. </li>
  736. <li><a href="libraries/ftp.html#CI_FTP::download"><strong>download() (CI_FTP method)</strong></a>
  737. <ul>
  738. <li><a href="libraries/zip.html#CI_Zip::download"><strong>(CI_Zip method)</strong></a>
  739. </li>
  740. </ul></li>
  741. <li><a href="libraries/loader.html#CI_Loader::driver"><strong>driver() (CI_Loader method)</strong></a>
  742. </li>
  743. <li><a href="database/forge.html#CI_DB_forge::drop_column"><strong>drop_column() (CI_DB_forge method)</strong></a>
  744. </li>
  745. <li><a href="database/forge.html#CI_DB_forge::drop_database"><strong>drop_database() (CI_DB_forge method)</strong></a>
  746. </li>
  747. <li><a href="database/forge.html#CI_DB_forge::drop_table"><strong>drop_table() (CI_DB_forge method)</strong></a>
  748. </li>
  749. </ul></td>
  750. </tr></table>
  751. <h2 id="E">E</h2>
  752. <table style="width: 100%" class="indextable genindextable"><tr>
  753. <td style="width: 33%; vertical-align: top;"><ul>
  754. <li><a href="libraries/benchmark.html#CI_Benchmark::elapsed_time"><strong>elapsed_time() (CI_Benchmark method)</strong></a>
  755. <ul>
  756. <li><a href="database/db_driver_reference.html#CI_DB_driver::elapsed_time"><strong>(CI_DB_driver method)</strong></a>
  757. </li>
  758. </ul></li>
  759. <li><a href="helpers/array_helper.html#element"><strong>element() (global function)</strong></a>
  760. </li>
  761. <li><a href="helpers/array_helper.html#elements"><strong>elements() (global function)</strong></a>
  762. </li>
  763. <li><a href="helpers/text_helper.html#ellipsize"><strong>ellipsize() (global function)</strong></a>
  764. </li>
  765. <li><a href="database/query_builder.html#CI_DB_query_builder::empty_table"><strong>empty_table() (CI_DB_query_builder method)</strong></a>
  766. </li>
  767. <li><a href="libraries/output.html#CI_Output::enable_profiler"><strong>enable_profiler() (CI_Output method)</strong></a>
  768. </li>
  769. <li><a href="libraries/encrypt.html#CI_Encrypt::encode"><strong>encode() (CI_Encrypt method)</strong></a>
  770. </li>
  771. <li><a href="libraries/encrypt.html#CI_Encrypt::encode_from_legacy"><strong>encode_from_legacy() (CI_Encrypt method)</strong></a>
  772. </li>
  773. <li><a href="helpers/security_helper.html#encode_php_tags"><strong>encode_php_tags() (global function)</strong></a>
  774. </li>
  775. <li><a href="libraries/encryption.html#CI_Encryption::encrypt"><strong>encrypt() (CI_Encryption method)</strong></a>
  776. </li>
  777. </ul></td>
  778. <td style="width: 33%; vertical-align: top;"><ul>
  779. <li><a href="libraries/security.html#CI_Security::entity_decode"><strong>entity_decode() (CI_Security method)</strong></a>
  780. <ul>
  781. <li><a href="helpers/typography_helper.html#entity_decode"><strong>(global function)</strong></a>
  782. </li>
  783. </ul></li>
  784. <li><a href="libraries/form_validation.html#CI_Form_validation::error"><strong>error() (CI_Form_validation method)</strong></a>
  785. </li>
  786. <li><a href="libraries/form_validation.html#CI_Form_validation::error_array"><strong>error_array() (CI_Form_validation method)</strong></a>
  787. </li>
  788. <li><a href="libraries/form_validation.html#CI_Form_validation::error_string"><strong>error_string() (CI_Form_validation method)</strong></a>
  789. <ul>
  790. <li><a href="libraries/migration.html#CI_Migration::error_string"><strong>(CI_Migration method)</strong></a>
  791. </li>
  792. </ul></li>
  793. <li><a href="database/db_driver_reference.html#CI_DB_driver::escape"><strong>escape() (CI_DB_driver method)</strong></a>
  794. </li>
  795. <li><a href="database/db_driver_reference.html#CI_DB_driver::escape_identifiers"><strong>escape_identifiers() (CI_DB_driver method)</strong></a>
  796. </li>
  797. <li><a href="database/db_driver_reference.html#CI_DB_driver::escape_like_str"><strong>escape_like_str() (CI_DB_driver method)</strong></a>
  798. </li>
  799. <li><a href="database/db_driver_reference.html#CI_DB_driver::escape_str"><strong>escape_str() (CI_DB_driver method)</strong></a>
  800. </li>
  801. <li><a href="libraries/trackback.html#CI_Trackback::extract_urls"><strong>extract_urls() (CI_Trackback method)</strong></a>
  802. </li>
  803. </ul></td>
  804. </tr></table>
  805. <h2 id="F">F</h2>
  806. <table style="width: 100%" class="indextable genindextable"><tr>
  807. <td style="width: 33%; vertical-align: top;"><ul>
  808. <li><a href="database/db_driver_reference.html#CI_DB_driver::field_data"><strong>field_data() (CI_DB_driver method)</strong></a>
  809. <ul>
  810. <li><a href="database/results.html#CI_DB_result::field_data"><strong>(CI_DB_result method)</strong></a>
  811. </li>
  812. </ul></li>
  813. <li><a href="database/db_driver_reference.html#CI_DB_driver::field_exists"><strong>field_exists() (CI_DB_driver method)</strong></a>
  814. </li>
  815. <li><a href="libraries/loader.html#CI_Loader::file"><strong>file() (CI_Loader method)</strong></a>
  816. </li>
  817. <li><a href="libraries/migration.html#CI_Migration::find_migrations"><strong>find_migrations() (CI_Migration method)</strong></a>
  818. </li>
  819. <li><a href="database/results.html#CI_DB_result::first_row"><strong>first_row() (CI_DB_result method)</strong></a>
  820. </li>
  821. <li><a href="libraries/sessions.html#CI_Session::flashdata"><strong>flashdata() (CI_Session method)</strong></a>
  822. </li>
  823. <li><a href="database/query_builder.html#CI_DB_query_builder::flush_cache"><strong>flush_cache() (CI_DB_query_builder method)</strong></a>
  824. </li>
  825. <li><a href="helpers/download_helper.html#force_download"><strong>force_download() (global function)</strong></a>
  826. </li>
  827. <li><a href="helpers/form_helper.html#form_button"><strong>form_button() (global function)</strong></a>
  828. </li>
  829. <li><a href="helpers/form_helper.html#form_checkbox"><strong>form_checkbox() (global function)</strong></a>
  830. </li>
  831. <li><a href="helpers/form_helper.html#form_close"><strong>form_close() (global function)</strong></a>
  832. </li>
  833. <li><a href="helpers/form_helper.html#form_dropdown"><strong>form_dropdown() (global function)</strong></a>
  834. </li>
  835. <li><a href="helpers/form_helper.html#form_error"><strong>form_error() (global function)</strong></a>
  836. </li>
  837. <li><a href="helpers/form_helper.html#form_fieldset"><strong>form_fieldset() (global function)</strong></a>
  838. </li>
  839. <li><a href="helpers/form_helper.html#form_fieldset_close"><strong>form_fieldset_close() (global function)</strong></a>
  840. </li>
  841. <li><a href="helpers/form_helper.html#form_hidden"><strong>form_hidden() (global function)</strong></a>
  842. </li>
  843. </ul></td>
  844. <td style="width: 33%; vertical-align: top;"><ul>
  845. <li><a href="helpers/form_helper.html#form_input"><strong>form_input() (global function)</strong></a>
  846. </li>
  847. <li><a href="helpers/form_helper.html#form_label"><strong>form_label() (global function)</strong></a>
  848. </li>
  849. <li><a href="helpers/form_helper.html#form_multiselect"><strong>form_multiselect() (global function)</strong></a>
  850. </li>
  851. <li><a href="helpers/form_helper.html#form_open"><strong>form_open() (global function)</strong></a>
  852. </li>
  853. <li><a href="helpers/form_helper.html#form_open_multipart"><strong>form_open_multipart() (global function)</strong></a>
  854. </li>
  855. <li><a href="helpers/form_helper.html#form_password"><strong>form_password() (global function)</strong></a>
  856. </li>
  857. <li><a href="helpers/form_helper.html#form_prep"><strong>form_prep() (global function)</strong></a>
  858. </li>
  859. <li><a href="helpers/form_helper.html#form_radio"><strong>form_radio() (global function)</strong></a>
  860. </li>
  861. <li><a href="helpers/form_helper.html#form_reset"><strong>form_reset() (global function)</strong></a>
  862. </li>
  863. <li><a href="helpers/form_helper.html#form_submit"><strong>form_submit() (global function)</strong></a>
  864. </li>
  865. <li><a href="helpers/form_helper.html#form_textarea"><strong>form_textarea() (global function)</strong></a>
  866. </li>
  867. <li><a href="helpers/form_helper.html#form_upload"><strong>form_upload() (global function)</strong></a>
  868. </li>
  869. <li><a href="libraries/typography.html#CI_Typography::format_characters"><strong>format_characters() (CI_Typography method)</strong></a>
  870. </li>
  871. <li><a href="database/results.html#CI_DB_result::free_result"><strong>free_result() (CI_DB_result method)</strong></a>
  872. </li>
  873. <li><a href="database/query_builder.html#CI_DB_query_builder::from"><strong>from() (CI_DB_query_builder method)</strong></a>
  874. <ul>
  875. <li><a href="libraries/email.html#CI_Email::from"><strong>(CI_Email method)</strong></a>
  876. </li>
  877. </ul></li>
  878. <li><a href="general/common_functions.html#function_usable"><strong>function_usable() (global function)</strong></a>
  879. </li>
  880. </ul></td>
  881. </tr></table>
  882. <h2 id="G">G</h2>
  883. <table style="width: 100%" class="indextable genindextable"><tr>
  884. <td style="width: 33%; vertical-align: top;"><ul>
  885. <li><a href="libraries/calendar.html#CI_Calendar::generate"><strong>generate() (CI_Calendar method)</strong></a>
  886. <ul>
  887. <li><a href="libraries/table.html#CI_Table::generate"><strong>(CI_Table method)</strong></a>
  888. </li>
  889. </ul></li>
  890. <li><a href="libraries/caching.html#CI_Cache::get"><strong>get() (CI_Cache method)</strong></a>
  891. <ul>
  892. <li><a href="database/query_builder.html#CI_DB_query_builder::get"><strong>(CI_DB_query_builder method)</strong></a>
  893. </li>
  894. <li><a href="libraries/input.html#CI_Input::get"><strong>(CI_Input method)</strong></a>
  895. </li>
  896. </ul></li>
  897. <li><a href="helpers/smiley_helper.html#get_clickable_smileys"><strong>get_clickable_smileys() (global function)</strong></a>
  898. </li>
  899. <li><a href="database/query_builder.html#CI_DB_query_builder::get_compiled_delete"><strong>get_compiled_delete() (CI_DB_query_builder method)</strong></a>
  900. </li>
  901. <li><a href="database/query_builder.html#CI_DB_query_builder::get_compiled_insert"><strong>get_compiled_insert() (CI_DB_query_builder method)</strong></a>
  902. </li>
  903. <li><a href="database/query_builder.html#CI_DB_query_builder::get_compiled_select"><strong>get_compiled_select() (CI_DB_query_builder method)</strong></a>
  904. </li>
  905. <li><a href="database/query_builder.html#CI_DB_query_builder::get_compiled_update"><strong>get_compiled_update() (CI_DB_query_builder method)</strong></a>
  906. </li>
  907. <li><a href="libraries/output.html#CI_Output::get_content_type"><strong>get_content_type() (CI_Output method)</strong></a>
  908. </li>
  909. <li><a href="helpers/cookie_helper.html#get_cookie"><strong>get_cookie() (global function)</strong></a>
  910. </li>
  911. <li><a href="libraries/security.html#CI_Security::get_csrf_hash"><strong>get_csrf_hash() (CI_Security method)</strong></a>
  912. </li>
  913. <li><a href="libraries/security.html#CI_Security::get_csrf_token_name"><strong>get_csrf_token_name() (CI_Security method)</strong></a>
  914. </li>
  915. <li><a href="libraries/calendar.html#CI_Calendar::get_day_names"><strong>get_day_names() (CI_Calendar method)</strong></a>
  916. </li>
  917. <li><a href="helpers/file_helper.html#get_dir_file_info"><strong>get_dir_file_info() (global function)</strong></a>
  918. </li>
  919. <li><a href="helpers/file_helper.html#get_file_info"><strong>get_file_info() (global function)</strong></a>
  920. </li>
  921. <li><a href="helpers/file_helper.html#get_filenames"><strong>get_filenames() (global function)</strong></a>
  922. </li>
  923. <li><a href="libraries/sessions.html#CI_Session::get_flash_keys"><strong>get_flash_keys() (CI_Session method)</strong></a>
  924. </li>
  925. <li><a href="libraries/output.html#CI_Output::get_header"><strong>get_header() (CI_Output method)</strong></a>
  926. </li>
  927. <li><a href="libraries/trackback.html#CI_Trackback::get_id"><strong>get_id() (CI_Trackback method)</strong></a>
  928. </li>
  929. </ul></td>
  930. <td style="width: 33%; vertical-align: top;"><ul>
  931. <li><a href="general/ancillary_classes.html#get_instance"><strong>get_instance() (global function)</strong></a>
  932. </li>
  933. <li><a href="libraries/cart.html#CI_Cart::get_item"><strong>get_item() (CI_Cart method)</strong></a>
  934. </li>
  935. <li><a href="libraries/caching.html#CI_Cache::get_metadata"><strong>get_metadata() (CI_Cache method)</strong></a>
  936. </li>
  937. <li><a href="helpers/file_helper.html#get_mime_by_extension"><strong>get_mime_by_extension() (global function)</strong></a>
  938. </li>
  939. <li><a href="general/common_functions.html#get_mimes"><strong>get_mimes() (global function)</strong></a>
  940. </li>
  941. <li><a href="libraries/calendar.html#CI_Calendar::get_month_name"><strong>get_month_name() (CI_Calendar method)</strong></a>
  942. </li>
  943. <li><a href="libraries/output.html#CI_Output::get_output"><strong>get_output() (CI_Output method)</strong></a>
  944. </li>
  945. <li><a href="libraries/loader.html#CI_Loader::get_package_paths"><strong>get_package_paths() (CI_Loader method)</strong></a>
  946. </li>
  947. <li><a href="libraries/input.html#CI_Input::get_post"><strong>get_post() (CI_Input method)</strong></a>
  948. </li>
  949. <li><a href="libraries/security.html#CI_Security::get_random_bytes"><strong>get_random_bytes() (CI_Security method)</strong></a>
  950. </li>
  951. <li><a href="libraries/input.html#CI_Input::get_request_header"><strong>get_request_header() (CI_Input method)</strong></a>
  952. </li>
  953. <li><a href="libraries/sessions.html#CI_Session::get_temp_keys"><strong>get_temp_keys() (CI_Session method)</strong></a>
  954. </li>
  955. <li><a href="libraries/calendar.html#CI_Calendar::get_total_days"><strong>get_total_days() (CI_Calendar method)</strong></a>
  956. </li>
  957. <li><a href="libraries/loader.html#CI_Loader::get_var"><strong>get_var() (CI_Loader method)</strong></a>
  958. </li>
  959. <li><a href="libraries/loader.html#CI_Loader::get_vars"><strong>get_vars() (CI_Loader method)</strong></a>
  960. </li>
  961. <li><a href="database/query_builder.html#CI_DB_query_builder::get_where"><strong>get_where() (CI_DB_query_builder method)</strong></a>
  962. </li>
  963. <li><a href="libraries/zip.html#CI_Zip::get_zip"><strong>get_zip() (CI_Zip method)</strong></a>
  964. </li>
  965. <li><a href="helpers/date_helper.html#gmt_to_local"><strong>gmt_to_local() (global function)</strong></a>
  966. </li>
  967. <li><a href="database/query_builder.html#CI_DB_query_builder::group_by"><strong>group_by() (CI_DB_query_builder method)</strong></a>
  968. </li>
  969. <li><a href="database/query_builder.html#CI_DB_query_builder::group_end"><strong>group_end() (CI_DB_query_builder method)</strong></a>
  970. </li>
  971. <li><a href="database/query_builder.html#CI_DB_query_builder::group_start"><strong>group_start() (CI_DB_query_builder method)</strong></a>
  972. </li>
  973. </ul></td>
  974. </tr></table>
  975. <h2 id="H">H</h2>
  976. <table style="width: 100%" class="indextable genindextable"><tr>
  977. <td style="width: 33%; vertical-align: top;"><ul>
  978. <li><a href="libraries/cart.html#CI_Cart::has_options"><strong>has_options() (CI_Cart method)</strong></a>
  979. </li>
  980. <li><a href="libraries/form_validation.html#CI_Form_validation::has_rule"><strong>has_rule() (CI_Form_validation method)</strong></a>
  981. </li>
  982. <li><a href="libraries/sessions.html#CI_Session::has_userdata"><strong>has_userdata() (CI_Session method)</strong></a>
  983. </li>
  984. <li><a href="general/compatibility_functions.html#hash_equals"><strong>hash_equals() (global function)</strong></a>
  985. </li>
  986. <li><a href="general/compatibility_functions.html#hash_pbkdf2"><strong>hash_pbkdf2() (global function)</strong></a>
  987. </li>
  988. <li><a href="database/query_builder.html#CI_DB_query_builder::having"><strong>having() (CI_DB_query_builder method)</strong></a>
  989. </li>
  990. <li><a href="helpers/html_helper.html#heading"><strong>heading() (global function)</strong></a>
  991. </li>
  992. </ul></td>
  993. <td style="width: 33%; vertical-align: top;"><ul>
  994. <li><a href="libraries/loader.html#CI_Loader::helper"><strong>helper() (CI_Loader method)</strong></a>
  995. </li>
  996. <li><a href="general/compatibility_functions.html#hex2bin"><strong>hex2bin() (global function)</strong></a>
  997. </li>
  998. <li><a href="helpers/text_helper.html#highlight_code"><strong>highlight_code() (global function)</strong></a>
  999. </li>
  1000. <li><a href="helpers/text_helper.html#highlight_phrase"><strong>highlight_phrase() (global function)</strong></a>
  1001. </li>
  1002. <li><a href="libraries/encryption.html#CI_Encryption::hkdf"><strong>hkdf() (CI_Encryption method)</strong></a>
  1003. </li>
  1004. <li><a href="general/common_functions.html#html_escape"><strong>html_escape() (global function)</strong></a>
  1005. </li>
  1006. <li><a href="helpers/date_helper.html#human_to_unix"><strong>human_to_unix() (global function)</strong></a>
  1007. </li>
  1008. <li><a href="helpers/inflector_helper.html#humanize"><strong>humanize() (global function)</strong></a>
  1009. </li>
  1010. </ul></td>
  1011. </tr></table>
  1012. <h2 id="I">I</h2>
  1013. <table style="width: 100%" class="indextable genindextable"><tr>
  1014. <td style="width: 33%; vertical-align: top;"><ul>
  1015. <li><a href="helpers/html_helper.html#img"><strong>img() (global function)</strong></a>
  1016. </li>
  1017. <li><a href="libraries/caching.html#CI_Cache::increment"><strong>increment() (CI_Cache method)</strong></a>
  1018. </li>
  1019. <li><a href="helpers/string_helper.html#increment_string"><strong>increment_string() (global function)</strong></a>
  1020. </li>
  1021. <li><a href="helpers/url_helper.html#index_page"><strong>index_page() (global function)</strong></a>
  1022. </li>
  1023. <li><a href="libraries/calendar.html#CI_Calendar::initialize"><strong>initialize() (CI_Calendar method)</strong></a>
  1024. <ul>
  1025. <li><a href="database/db_driver_reference.html#CI_DB_driver::initialize"><strong>(CI_DB_driver method)</strong></a>
  1026. </li>
  1027. <li><a href="libraries/encryption.html#CI_Encryption::initialize"><strong>(CI_Encryption method)</strong></a>
  1028. </li>
  1029. <li><a href="libraries/image_lib.html#CI_Image_lib::initialize"><strong>(CI_Image_lib method)</strong></a>
  1030. </li>
  1031. <li><a href="libraries/pagination.html#CI_Pagination::initialize"><strong>(CI_Pagination method)</strong></a>
  1032. </li>
  1033. <li><a href="libraries/file_uploading.html#CI_Upload::initialize"><strong>(CI_Upload method)</strong></a>
  1034. </li>
  1035. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc::initialize"><strong>(CI_Xmlrpc method)</strong></a>
  1036. </li>
  1037. </ul></li>
  1038. <li><a href="libraries/input.html#CI_Input::input_stream"><strong>input_stream() (CI_Input method)</strong></a>
  1039. </li>
  1040. <li><a href="libraries/cart.html#CI_Cart::insert"><strong>insert() (CI_Cart method)</strong></a>
  1041. <ul>
  1042. <li><a href="database/query_builder.html#CI_DB_query_builder::insert"><strong>(CI_DB_query_builder method)</strong></a>
  1043. </li>
  1044. </ul></li>
  1045. <li><a href="database/query_builder.html#CI_DB_query_builder::insert_batch"><strong>insert_batch() (CI_DB_query_builder method)</strong></a>
  1046. </li>
  1047. </ul></td>
  1048. <td style="width: 33%; vertical-align: top;"><ul>
  1049. <li><a href="database/db_driver_reference.html#CI_DB_driver::insert_string"><strong>insert_string() (CI_DB_driver method)</strong></a>
  1050. </li>
  1051. <li><a href="libraries/input.html#CI_Input::ip_address"><strong>ip_address() (CI_Input method)</strong></a>
  1052. </li>
  1053. <li><a href="libraries/input.html#CI_Input::is_ajax_request"><strong>is_ajax_request() (CI_Input method)</strong></a>
  1054. </li>
  1055. <li><a href="libraries/user_agent.html#CI_User_agent::is_browser"><strong>is_browser() (CI_User_agent method)</strong></a>
  1056. </li>
  1057. <li><a href="general/common_functions.html#is_cli"><strong>is_cli() (global function)</strong></a>
  1058. </li>
  1059. <li><a href="libraries/input.html#CI_Input::is_cli_request"><strong>is_cli_request() (CI_Input method)</strong></a>
  1060. </li>
  1061. <li><a href="general/common_functions.html#is_https"><strong>is_https() (global function)</strong></a>
  1062. </li>
  1063. <li><a href="libraries/loader.html#CI_Loader::is_loaded"><strong>is_loaded() (CI_Loader method)</strong></a>
  1064. </li>
  1065. <li><a href="libraries/user_agent.html#CI_User_agent::is_mobile"><strong>is_mobile() (CI_User_agent method)</strong></a>
  1066. </li>
  1067. <li><a href="general/common_functions.html#is_php"><strong>is_php() (global function)</strong></a>
  1068. </li>
  1069. <li><a href="general/common_functions.html#is_really_writable"><strong>is_really_writable() (global function)</strong></a>
  1070. </li>
  1071. <li><a href="libraries/user_agent.html#CI_User_agent::is_referral"><strong>is_referral() (CI_User_agent method)</strong></a>
  1072. </li>
  1073. <li><a href="libraries/user_agent.html#CI_User_agent::is_robot"><strong>is_robot() (CI_User_agent method)</strong></a>
  1074. </li>
  1075. <li><a href="libraries/caching.html#CI_Cache::is_supported"><strong>is_supported() (CI_Cache method)</strong></a>
  1076. </li>
  1077. <li><a href="database/db_driver_reference.html#CI_DB_driver::is_write_type"><strong>is_write_type() (CI_DB_driver method)</strong></a>
  1078. </li>
  1079. <li><a href="libraries/config.html#CI_Config::item"><strong>item() (CI_Config method)</strong></a>
  1080. </li>
  1081. </ul></td>
  1082. </tr></table>
  1083. <h2 id="J">J</h2>
  1084. <table style="width: 100%" class="indextable genindextable"><tr>
  1085. <td style="width: 33%; vertical-align: top;"><ul>
  1086. <li><a href="database/query_builder.html#CI_DB_query_builder::join"><strong>join() (CI_DB_query_builder method)</strong></a>
  1087. </li>
  1088. </ul></td>
  1089. </tr></table>
  1090. <h2 id="K">K</h2>
  1091. <table style="width: 100%" class="indextable genindextable"><tr>
  1092. <td style="width: 33%; vertical-align: top;"><ul>
  1093. <li><a href="libraries/sessions.html#CI_Session::keep_flashdata"><strong>keep_flashdata() (CI_Session method)</strong></a>
  1094. </li>
  1095. </ul></td>
  1096. </tr></table>
  1097. <h2 id="L">L</h2>
  1098. <table style="width: 100%" class="indextable genindextable"><tr>
  1099. <td style="width: 33%; vertical-align: top;"><ul>
  1100. <li><a href="helpers/language_helper.html#lang"><strong>lang() (global function)</strong></a>
  1101. </li>
  1102. <li><a href="libraries/loader.html#CI_Loader::language"><strong>language() (CI_Loader method)</strong></a>
  1103. </li>
  1104. <li><a href="libraries/user_agent.html#CI_User_agent::languages"><strong>languages() (CI_User_agent method)</strong></a>
  1105. </li>
  1106. <li><a href="database/db_driver_reference.html#CI_DB_driver::last_query"><strong>last_query() (CI_DB_driver method)</strong></a>
  1107. </li>
  1108. <li><a href="database/results.html#CI_DB_result::last_row"><strong>last_row() (CI_DB_result method)</strong></a>
  1109. </li>
  1110. <li><a href="libraries/migration.html#CI_Migration::latest"><strong>latest() (CI_Migration method)</strong></a>
  1111. </li>
  1112. <li><a href="libraries/loader.html#CI_Loader::library"><strong>library() (CI_Loader method)</strong></a>
  1113. </li>
  1114. <li><a href="database/query_builder.html#CI_DB_query_builder::like"><strong>like() (CI_DB_query_builder method)</strong></a>
  1115. </li>
  1116. <li><a href="database/query_builder.html#CI_DB_query_builder::limit"><strong>limit() (CI_DB_query_builder method)</strong></a>
  1117. </li>
  1118. <li><a href="libraries/trackback.html#CI_Trackback::limit_characters"><strong>limit_characters() (CI_Trackback method)</strong></a>
  1119. </li>
  1120. </ul></td>
  1121. <td style="width: 33%; vertical-align: top;"><ul>
  1122. <li><a href="libraries/language.html#CI_Lang::line"><strong>line() (CI_Lang method)</strong></a>
  1123. </li>
  1124. <li><a href="helpers/html_helper.html#link_tag"><strong>link_tag() (global function)</strong></a>
  1125. </li>
  1126. <li><a href="database/utilities.html#CI_DB_utility::list_databases"><strong>list_databases() (CI_DB_utility method)</strong></a>
  1127. </li>
  1128. <li><a href="database/db_driver_reference.html#CI_DB_driver::list_fields"><strong>list_fields() (CI_DB_driver method)</strong></a>
  1129. <ul>
  1130. <li><a href="database/results.html#CI_DB_result::list_fields"><strong>(CI_DB_result method)</strong></a>
  1131. </li>
  1132. </ul></li>
  1133. <li><a href="libraries/ftp.html#CI_FTP::list_files"><strong>list_files() (CI_FTP method)</strong></a>
  1134. </li>
  1135. <li><a href="database/db_driver_reference.html#CI_DB_driver::list_tables"><strong>list_tables() (CI_DB_driver method)</strong></a>
  1136. </li>
  1137. <li><a href="libraries/config.html#CI_Config::load"><strong>load() (CI_Config method)</strong></a>
  1138. <ul>
  1139. <li><a href="libraries/language.html#CI_Lang::load"><strong>(CI_Lang method)</strong></a>
  1140. </li>
  1141. </ul></li>
  1142. <li><a href="helpers/date_helper.html#local_to_gmt"><strong>local_to_gmt() (global function)</strong></a>
  1143. </li>
  1144. <li><a href="general/errors.html#log_message"><strong>log_message() (global function)</strong></a>
  1145. </li>
  1146. </ul></td>
  1147. </tr></table>
  1148. <h2 id="M">M</h2>
  1149. <table style="width: 100%" class="indextable genindextable"><tr>
  1150. <td style="width: 33%; vertical-align: top;"><ul>
  1151. <li><a href="helpers/url_helper.html#mailto"><strong>mailto() (global function)</strong></a>
  1152. </li>
  1153. <li><a href="libraries/table.html#CI_Table::make_columns"><strong>make_columns() (CI_Table method)</strong></a>
  1154. </li>
  1155. <li><a href="libraries/benchmark.html#CI_Benchmark::mark"><strong>mark() (CI_Benchmark method)</strong></a>
  1156. </li>
  1157. <li><a href="libraries/sessions.html#CI_Session::mark_as_flash"><strong>mark_as_flash() (CI_Session method)</strong></a>
  1158. </li>
  1159. <li><a href="libraries/sessions.html#CI_Session::mark_as_temp"><strong>mark_as_temp() (CI_Session method)</strong></a>
  1160. </li>
  1161. <li><a href="general/compatibility_functions.html#mb_strlen"><strong>mb_strlen() (global function)</strong></a>
  1162. </li>
  1163. <li><a href="general/compatibility_functions.html#mb_strpos"><strong>mb_strpos() (global function)</strong></a>
  1164. </li>
  1165. <li><a href="general/compatibility_functions.html#mb_substr"><strong>mb_substr() (global function)</strong></a>
  1166. </li>
  1167. <li><a href="helpers/date_helper.html#mdate"><strong>mdate() (global function)</strong></a>
  1168. </li>
  1169. <li><a href="libraries/benchmark.html#CI_Benchmark::memory_usage"><strong>memory_usage() (CI_Benchmark method)</strong></a>
  1170. </li>
  1171. </ul></td>
  1172. <td style="width: 33%; vertical-align: top;"><ul>
  1173. <li><a href="libraries/email.html#CI_Email::message"><strong>message() (CI_Email method)</strong></a>
  1174. </li>
  1175. <li><a href="helpers/html_helper.html#meta"><strong>meta() (global function)</strong></a>
  1176. </li>
  1177. <li><a href="libraries/input.html#CI_Input::method"><strong>method() (CI_Input method)</strong></a>
  1178. <ul>
  1179. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc::method"><strong>(CI_Xmlrpc method)</strong></a>
  1180. </li>
  1181. </ul></li>
  1182. <li><a href="libraries/ftp.html#CI_FTP::mirror"><strong>mirror() (CI_FTP method)</strong></a>
  1183. </li>
  1184. <li><a href="libraries/ftp.html#CI_FTP::mkdir"><strong>mkdir() (CI_FTP method)</strong></a>
  1185. </li>
  1186. <li><a href="libraries/user_agent.html#CI_User_agent::mobile"><strong>mobile() (CI_User_agent method)</strong></a>
  1187. </li>
  1188. <li><a href="libraries/loader.html#CI_Loader::model"><strong>model() (CI_Loader method)</strong></a>
  1189. </li>
  1190. <li><a href="database/forge.html#CI_DB_forge::modify_column"><strong>modify_column() (CI_DB_forge method)</strong></a>
  1191. </li>
  1192. <li><a href="libraries/ftp.html#CI_FTP::move"><strong>move() (CI_FTP method)</strong></a>
  1193. </li>
  1194. <li><a href="helpers/date_helper.html#mysql_to_unix"><strong>mysql_to_unix() (global function)</strong></a>
  1195. </li>
  1196. </ul></td>
  1197. </tr></table>
  1198. <h2 id="N">N</h2>
  1199. <table style="width: 100%" class="indextable genindextable"><tr>
  1200. <td style="width: 33%; vertical-align: top;"><ul>
  1201. <li><a href="helpers/html_helper.html#nbs"><strong>nbs() (global function)</strong></a>
  1202. </li>
  1203. <li><a href="database/results.html#CI_DB_result::next_row"><strong>next_row() (CI_DB_result method)</strong></a>
  1204. </li>
  1205. <li><a href="helpers/date_helper.html#nice_date"><strong>nice_date() (global function)</strong></a>
  1206. </li>
  1207. <li><a href="libraries/typography.html#CI_Typography::nl2br_except_pre"><strong>nl2br_except_pre() (CI_Typography method)</strong></a>
  1208. <ul>
  1209. <li><a href="helpers/typography_helper.html#nl2br_except_pre"><strong>(global function)</strong></a>
  1210. </li>
  1211. </ul></li>
  1212. </ul></td>
  1213. <td style="width: 33%; vertical-align: top;"><ul>
  1214. <li><a href="database/query_builder.html#CI_DB_query_builder::not_group_start"><strong>not_group_start() (CI_DB_query_builder method)</strong></a>
  1215. </li>
  1216. <li><a href="database/query_builder.html#CI_DB_query_builder::not_like"><strong>not_like() (CI_DB_query_builder method)</strong></a>
  1217. </li>
  1218. <li><a href="helpers/date_helper.html#now"><strong>now() (global function)</strong></a>
  1219. </li>
  1220. <li><a href="database/results.html#CI_DB_result::num_fields"><strong>num_fields() (CI_DB_result method)</strong></a>
  1221. </li>
  1222. <li><a href="database/results.html#CI_DB_result::num_rows"><strong>num_rows() (CI_DB_result method)</strong></a>
  1223. </li>
  1224. </ul></td>
  1225. </tr></table>
  1226. <h2 id="O">O</h2>
  1227. <table style="width: 100%" class="indextable genindextable"><tr>
  1228. <td style="width: 33%; vertical-align: top;"><ul>
  1229. <li><a href="helpers/file_helper.html#octal_permissions"><strong>octal_permissions() (global function)</strong></a>
  1230. </li>
  1231. <li><a href="database/query_builder.html#CI_DB_query_builder::offset"><strong>offset() (CI_DB_query_builder method)</strong></a>
  1232. </li>
  1233. <li><a href="helpers/html_helper.html#ol"><strong>ol() (global function)</strong></a>
  1234. </li>
  1235. <li><a href="database/utilities.html#CI_DB_utility::optimize_database"><strong>optimize_database() (CI_DB_utility method)</strong></a>
  1236. </li>
  1237. <li><a href="database/utilities.html#CI_DB_utility::optimize_table"><strong>optimize_table() (CI_DB_utility method)</strong></a>
  1238. </li>
  1239. <li><a href="database/query_builder.html#CI_DB_query_builder::or_group_start"><strong>or_group_start() (CI_DB_query_builder method)</strong></a>
  1240. </li>
  1241. <li><a href="database/query_builder.html#CI_DB_query_builder::or_having"><strong>or_having() (CI_DB_query_builder method)</strong></a>
  1242. </li>
  1243. </ul></td>
  1244. <td style="width: 33%; vertical-align: top;"><ul>
  1245. <li><a href="database/query_builder.html#CI_DB_query_builder::or_like"><strong>or_like() (CI_DB_query_builder method)</strong></a>
  1246. </li>
  1247. <li><a href="database/query_builder.html#CI_DB_query_builder::or_not_group_start"><strong>or_not_group_start() (CI_DB_query_builder method)</strong></a>
  1248. </li>
  1249. <li><a href="database/query_builder.html#CI_DB_query_builder::or_not_like"><strong>or_not_like() (CI_DB_query_builder method)</strong></a>
  1250. </li>
  1251. <li><a href="database/query_builder.html#CI_DB_query_builder::or_where"><strong>or_where() (CI_DB_query_builder method)</strong></a>
  1252. </li>
  1253. <li><a href="database/query_builder.html#CI_DB_query_builder::or_where_in"><strong>or_where_in() (CI_DB_query_builder method)</strong></a>
  1254. </li>
  1255. <li><a href="database/query_builder.html#CI_DB_query_builder::or_where_not_in"><strong>or_where_not_in() (CI_DB_query_builder method)</strong></a>
  1256. </li>
  1257. <li><a href="database/query_builder.html#CI_DB_query_builder::order_by"><strong>order_by() (CI_DB_query_builder method)</strong></a>
  1258. </li>
  1259. </ul></td>
  1260. </tr></table>
  1261. <h2 id="P">P</h2>
  1262. <table style="width: 100%" class="indextable genindextable"><tr>
  1263. <td style="width: 33%; vertical-align: top;"><ul>
  1264. <li><a href="libraries/parser.html#CI_Parser::parse"><strong>parse() (CI_Parser method)</strong></a>
  1265. <ul>
  1266. <li><a href="libraries/user_agent.html#CI_User_agent::parse"><strong>(CI_User_agent method)</strong></a>
  1267. </li>
  1268. </ul></li>
  1269. <li><a href="helpers/smiley_helper.html#parse_smileys"><strong>parse_smileys() (global function)</strong></a>
  1270. </li>
  1271. <li><a href="libraries/parser.html#CI_Parser::parse_string"><strong>parse_string() (CI_Parser method)</strong></a>
  1272. </li>
  1273. <li><a href="libraries/calendar.html#CI_Calendar::parse_template"><strong>parse_template() (CI_Calendar method)</strong></a>
  1274. </li>
  1275. <li><a href="general/compatibility_functions.html#password_get_info"><strong>password_get_info() (global function)</strong></a>
  1276. </li>
  1277. <li><a href="general/compatibility_functions.html#password_hash"><strong>password_hash() (global function)</strong></a>
  1278. </li>
  1279. <li><a href="general/compatibility_functions.html#password_needs_rehash"><strong>password_needs_rehash() (global function)</strong></a>
  1280. </li>
  1281. <li><a href="general/compatibility_functions.html#password_verify"><strong>password_verify() (global function)</strong></a>
  1282. </li>
  1283. <li><a href="database/db_driver_reference.html#CI_DB_driver::platform"><strong>platform() (CI_DB_driver method)</strong></a>
  1284. <ul>
  1285. <li><a href="libraries/user_agent.html#CI_User_agent::platform"><strong>(CI_User_agent method)</strong></a>
  1286. </li>
  1287. </ul></li>
  1288. </ul></td>
  1289. <td style="width: 33%; vertical-align: top;"><ul>
  1290. <li><a href="helpers/inflector_helper.html#plural"><strong>plural() (global function)</strong></a>
  1291. </li>
  1292. <li><a href="libraries/input.html#CI_Input::post"><strong>post() (CI_Input method)</strong></a>
  1293. </li>
  1294. <li><a href="libraries/input.html#CI_Input::post_get"><strong>post_get() (CI_Input method)</strong></a>
  1295. </li>
  1296. <li><a href="helpers/url_helper.html#prep_url"><strong>prep_url() (global function)</strong></a>
  1297. </li>
  1298. <li><a href="database/results.html#CI_DB_result::previous_row"><strong>previous_row() (CI_DB_result method)</strong></a>
  1299. </li>
  1300. <li><a href="database/db_driver_reference.html#CI_DB_driver::primary"><strong>primary() (CI_DB_driver method)</strong></a>
  1301. </li>
  1302. <li><a href="libraries/email.html#CI_Email::print_debugger"><strong>print_debugger() (CI_Email method)</strong></a>
  1303. </li>
  1304. <li><a href="libraries/trackback.html#CI_Trackback::process"><strong>process() (CI_Trackback method)</strong></a>
  1305. </li>
  1306. <li><a href="libraries/cart.html#CI_Cart::product_options"><strong>product_options() (CI_Cart method)</strong></a>
  1307. </li>
  1308. <li><a href="database/db_driver_reference.html#CI_DB_driver::protect_identifiers"><strong>protect_identifiers() (CI_DB_driver method)</strong></a>
  1309. </li>
  1310. </ul></td>
  1311. </tr></table>
  1312. <h2 id="Q">Q</h2>
  1313. <table style="width: 100%" class="indextable genindextable"><tr>
  1314. <td style="width: 33%; vertical-align: top;"><ul>
  1315. <li><a href="database/db_driver_reference.html#CI_DB_driver::query"><strong>query() (CI_DB_driver method)</strong></a>
  1316. </li>
  1317. </ul></td>
  1318. <td style="width: 33%; vertical-align: top;"><ul>
  1319. <li><a href="helpers/string_helper.html#quotes_to_entities"><strong>quotes_to_entities() (global function)</strong></a>
  1320. </li>
  1321. </ul></td>
  1322. </tr></table>
  1323. <h2 id="R">R</h2>
  1324. <table style="width: 100%" class="indextable genindextable"><tr>
  1325. <td style="width: 33%; vertical-align: top;"><ul>
  1326. <li><a href="helpers/array_helper.html#random_element"><strong>random_element() (global function)</strong></a>
  1327. </li>
  1328. <li><a href="helpers/string_helper.html#random_string"><strong>random_string() (global function)</strong></a>
  1329. </li>
  1330. <li><a href="libraries/zip.html#CI_Zip::read_dir"><strong>read_dir() (CI_Zip method)</strong></a>
  1331. </li>
  1332. <li><a href="libraries/zip.html#CI_Zip::read_file"><strong>read_file() (CI_Zip method)</strong></a>
  1333. <ul>
  1334. <li><a href="helpers/file_helper.html#read_file"><strong>(global function)</strong></a>
  1335. </li>
  1336. </ul></li>
  1337. <li><a href="libraries/trackback.html#CI_Trackback::receive"><strong>receive() (CI_Trackback method)</strong></a>
  1338. </li>
  1339. <li><a href="database/db_driver_reference.html#CI_DB_driver::reconnect"><strong>reconnect() (CI_DB_driver method)</strong></a>
  1340. </li>
  1341. <li><a href="helpers/url_helper.html#redirect"><strong>redirect() (global function)</strong></a>
  1342. </li>
  1343. <li><a href="helpers/string_helper.html#reduce_double_slashes"><strong>reduce_double_slashes() (global function)</strong></a>
  1344. </li>
  1345. <li><a href="helpers/string_helper.html#reduce_multiples"><strong>reduce_multiples() (global function)</strong></a>
  1346. </li>
  1347. <li><a href="libraries/user_agent.html#CI_User_agent::referrer"><strong>referrer() (CI_User_agent method)</strong></a>
  1348. </li>
  1349. <li><a href="libraries/cart.html#CI_Cart::remove"><strong>remove() (CI_Cart method)</strong></a>
  1350. </li>
  1351. <li><a href="general/common_functions.html#remove_invisible_characters"><strong>remove_invisible_characters() (global function)</strong></a>
  1352. </li>
  1353. <li><a href="libraries/loader.html#CI_Loader::remove_package_path"><strong>remove_package_path() (CI_Loader method)</strong></a>
  1354. </li>
  1355. <li><a href="libraries/ftp.html#CI_FTP::rename"><strong>rename() (CI_FTP method)</strong></a>
  1356. </li>
  1357. <li><a href="database/forge.html#CI_DB_forge::rename_table"><strong>rename_table() (CI_DB_forge method)</strong></a>
  1358. </li>
  1359. <li><a href="database/utilities.html#CI_DB_utility::repair_table"><strong>repair_table() (CI_DB_utility method)</strong></a>
  1360. </li>
  1361. <li><a href="helpers/string_helper.html#repeater"><strong>repeater() (global function)</strong></a>
  1362. </li>
  1363. <li><a href="database/query_builder.html#CI_DB_query_builder::replace"><strong>replace() (CI_DB_query_builder method)</strong></a>
  1364. </li>
  1365. <li><a href="libraries/email.html#CI_Email::reply_to"><strong>reply_to() (CI_Email method)</strong></a>
  1366. </li>
  1367. </ul></td>
  1368. <td style="width: 33%; vertical-align: top;"><ul>
  1369. <li><a href="libraries/unit_testing.html#CI_Unit_test::report"><strong>report() (CI_Unit_test method)</strong></a>
  1370. </li>
  1371. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc::request"><strong>request() (CI_Xmlrpc method)</strong></a>
  1372. </li>
  1373. <li><a href="libraries/input.html#CI_Input::request_headers"><strong>request_headers() (CI_Input method)</strong></a>
  1374. </li>
  1375. <li><a href="database/query_builder.html#CI_DB_query_builder::reset_query"><strong>reset_query() (CI_DB_query_builder method)</strong></a>
  1376. </li>
  1377. <li><a href="libraries/form_validation.html#CI_Form_validation::reset_validation"><strong>reset_validation() (CI_Form_validation method)</strong></a>
  1378. </li>
  1379. <li><a href="libraries/image_lib.html#CI_Image_lib::resize"><strong>resize() (CI_Image_lib method)</strong></a>
  1380. </li>
  1381. <li><a href="database/results.html#CI_DB_result::result"><strong>result() (CI_DB_result method)</strong></a>
  1382. <ul>
  1383. <li><a href="libraries/unit_testing.html#CI_Unit_test::result"><strong>(CI_Unit_test method)</strong></a>
  1384. </li>
  1385. </ul></li>
  1386. <li><a href="database/results.html#CI_DB_result::result_array"><strong>result_array() (CI_DB_result method)</strong></a>
  1387. </li>
  1388. <li><a href="database/results.html#CI_DB_result::result_object"><strong>result_object() (CI_DB_result method)</strong></a>
  1389. </li>
  1390. <li><a href="libraries/user_agent.html#CI_User_agent::robot"><strong>robot() (CI_User_agent method)</strong></a>
  1391. </li>
  1392. <li><a href="libraries/image_lib.html#CI_Image_lib::rotate"><strong>rotate() (CI_Image_lib method)</strong></a>
  1393. </li>
  1394. <li><a href="database/results.html#CI_DB_result::row"><strong>row() (CI_DB_result method)</strong></a>
  1395. </li>
  1396. <li><a href="database/results.html#CI_DB_result::row_array"><strong>row_array() (CI_DB_result method)</strong></a>
  1397. </li>
  1398. <li><a href="database/results.html#CI_DB_result::row_object"><strong>row_object() (CI_DB_result method)</strong></a>
  1399. </li>
  1400. <li><a href="libraries/uri.html#CI_URI::rsegment"><strong>rsegment() (CI_URI method)</strong></a>
  1401. </li>
  1402. <li><a href="libraries/uri.html#CI_URI::rsegment_array"><strong>rsegment_array() (CI_URI method)</strong></a>
  1403. </li>
  1404. <li><a href="libraries/form_validation.html#CI_Form_validation::run"><strong>run() (CI_Form_validation method)</strong></a>
  1405. <ul>
  1406. <li><a href="libraries/unit_testing.html#CI_Unit_test::run"><strong>(CI_Unit_test method)</strong></a>
  1407. </li>
  1408. </ul></li>
  1409. <li><a href="libraries/uri.html#CI_URI::ruri_string"><strong>ruri_string() (CI_URI method)</strong></a>
  1410. </li>
  1411. <li><a href="libraries/uri.html#CI_URI::ruri_to_assoc"><strong>ruri_to_assoc() (CI_URI method)</strong></a>
  1412. </li>
  1413. </ul></td>
  1414. </tr></table>
  1415. <h2 id="S">S</h2>
  1416. <table style="width: 100%" class="indextable genindextable"><tr>
  1417. <td style="width: 33%; vertical-align: top;"><ul>
  1418. <li><a href="helpers/url_helper.html#safe_mailto"><strong>safe_mailto() (global function)</strong></a>
  1419. </li>
  1420. <li><a href="libraries/security.html#CI_Security::sanitize_filename"><strong>sanitize_filename() (CI_Security method)</strong></a>
  1421. <ul>
  1422. <li><a href="helpers/security_helper.html#sanitize_filename"><strong>(global function)</strong></a>
  1423. </li>
  1424. </ul></li>
  1425. <li><a href="libraries/caching.html#CI_Cache::save"><strong>save() (CI_Cache method)</strong></a>
  1426. </li>
  1427. <li><a href="libraries/uri.html#CI_URI::segment"><strong>segment() (CI_URI method)</strong></a>
  1428. </li>
  1429. <li><a href="libraries/uri.html#CI_URI::segment_array"><strong>segment_array() (CI_URI method)</strong></a>
  1430. </li>
  1431. <li><a href="database/query_builder.html#CI_DB_query_builder::select"><strong>select() (CI_DB_query_builder method)</strong></a>
  1432. </li>
  1433. <li><a href="database/query_builder.html#CI_DB_query_builder::select_avg"><strong>select_avg() (CI_DB_query_builder method)</strong></a>
  1434. </li>
  1435. <li><a href="database/query_builder.html#CI_DB_query_builder::select_max"><strong>select_max() (CI_DB_query_builder method)</strong></a>
  1436. </li>
  1437. <li><a href="database/query_builder.html#CI_DB_query_builder::select_min"><strong>select_min() (CI_DB_query_builder method)</strong></a>
  1438. </li>
  1439. <li><a href="database/query_builder.html#CI_DB_query_builder::select_sum"><strong>select_sum() (CI_DB_query_builder method)</strong></a>
  1440. </li>
  1441. <li><a href="libraries/email.html#CI_Email::send"><strong>send() (CI_Email method)</strong></a>
  1442. <ul>
  1443. <li><a href="libraries/trackback.html#CI_Trackback::send"><strong>(CI_Trackback method)</strong></a>
  1444. </li>
  1445. </ul></li>
  1446. <li><a href="helpers/email_helper.html#send_email"><strong>send_email() (global function)</strong></a>
  1447. </li>
  1448. <li><a href="libraries/trackback.html#CI_Trackback::send_error"><strong>send_error() (CI_Trackback method)</strong></a>
  1449. </li>
  1450. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc::send_error_message"><strong>send_error_message() (CI_Xmlrpc method)</strong></a>
  1451. </li>
  1452. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc::send_request"><strong>send_request() (CI_Xmlrpc method)</strong></a>
  1453. </li>
  1454. <li><a href="libraries/trackback.html#CI_Trackback::send_success"><strong>send_success() (CI_Trackback method)</strong></a>
  1455. </li>
  1456. <li><a href="libraries/input.html#CI_Input::server"><strong>server() (CI_Input method)</strong></a>
  1457. <ul>
  1458. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc::server"><strong>(CI_Xmlrpc method)</strong></a>
  1459. </li>
  1460. </ul></li>
  1461. <li><a href="libraries/sessions.html#CI_Session::sess_destroy"><strong>sess_destroy() (CI_Session method)</strong></a>
  1462. </li>
  1463. <li><a href="libraries/sessions.html#CI_Session::sess_regenerate"><strong>sess_regenerate() (CI_Session method)</strong></a>
  1464. </li>
  1465. <li><a href="database/query_builder.html#CI_DB_query_builder::set"><strong>set() (CI_DB_query_builder method)</strong></a>
  1466. </li>
  1467. <li><a href="libraries/email.html#CI_Email::set_alt_message"><strong>set_alt_message() (CI_Email method)</strong></a>
  1468. </li>
  1469. <li><a href="libraries/table.html#CI_Table::set_caption"><strong>set_caption() (CI_Table method)</strong></a>
  1470. </li>
  1471. <li><a href="helpers/form_helper.html#set_checkbox"><strong>set_checkbox() (global function)</strong></a>
  1472. </li>
  1473. <li><a href="libraries/encrypt.html#CI_Encrypt::set_cipher"><strong>set_cipher() (CI_Encrypt method)</strong></a>
  1474. </li>
  1475. <li><a href="libraries/output.html#CI_Output::set_content_type"><strong>set_content_type() (CI_Output method)</strong></a>
  1476. </li>
  1477. <li><a href="libraries/input.html#CI_Input::set_cookie"><strong>set_cookie() (CI_Input method)</strong></a>
  1478. <ul>
  1479. <li><a href="helpers/cookie_helper.html#set_cookie"><strong>(global function)</strong></a>
  1480. </li>
  1481. </ul></li>
  1482. <li><a href="libraries/form_validation.html#CI_Form_validation::set_data"><strong>set_data() (CI_Form_validation method)</strong></a>
  1483. </li>
  1484. <li><a href="database/query_builder.html#CI_DB_query_builder::set_dbprefix"><strong>set_dbprefix() (CI_DB_query_builder method)</strong></a>
  1485. </li>
  1486. <li><a href="libraries/parser.html#CI_Parser::set_delimiters"><strong>set_delimiters() (CI_Parser method)</strong></a>
  1487. </li>
  1488. <li><a href="libraries/table.html#CI_Table::set_empty"><strong>set_empty() (CI_Table method)</strong></a>
  1489. </li>
  1490. <li><a href="libraries/trackback.html#CI_Trackback::set_error"><strong>set_error() (CI_Trackback method)</strong></a>
  1491. </li>
  1492. <li><a href="libraries/form_validation.html#CI_Form_validation::set_error_delimiters"><strong>set_error_delimiters() (CI_Form_validation method)</strong></a>
  1493. </li>
  1494. <li><a href="libraries/sessions.html#CI_Session::set_flashdata"><strong>set_flashdata() (CI_Session method)</strong></a>
  1495. </li>
  1496. <li><a href="libraries/email.html#CI_Email::set_header"><strong>set_header() (CI_Email method)</strong></a>
  1497. <ul>
  1498. <li><a href="libraries/output.html#CI_Output::set_header"><strong>(CI_Output method)</strong></a>
  1499. </li>
  1500. </ul></li>
  1501. <li><a href="libraries/table.html#CI_Table::set_heading"><strong>set_heading() (CI_Table method)</strong></a>
  1502. </li>
  1503. <li><a href="database/query_builder.html#CI_DB_query_builder::set_insert_batch"><strong>set_insert_batch() (CI_DB_query_builder method)</strong></a>
  1504. </li>
  1505. </ul></td>
  1506. <td style="width: 33%; vertical-align: top;"><ul>
  1507. <li><a href="libraries/config.html#CI_Config::set_item"><strong>set_item() (CI_Config method)</strong></a>
  1508. </li>
  1509. <li><a href="libraries/form_validation.html#CI_Form_validation::set_message"><strong>set_message() (CI_Form_validation method)</strong></a>
  1510. </li>
  1511. <li><a href="libraries/encrypt.html#CI_Encrypt::set_mode"><strong>set_mode() (CI_Encrypt method)</strong></a>
  1512. </li>
  1513. <li><a href="libraries/output.html#CI_Output::set_output"><strong>set_output() (CI_Output method)</strong></a>
  1514. </li>
  1515. <li><a href="libraries/output.html#CI_Output::set_profiler_sections"><strong>set_profiler_sections() (CI_Output method)</strong></a>
  1516. </li>
  1517. <li><a href="helpers/form_helper.html#set_radio"><strong>set_radio() (global function)</strong></a>
  1518. </li>
  1519. <li><a href="helpers/path_helper.html#set_realpath"><strong>set_realpath() (global function)</strong></a>
  1520. </li>
  1521. <li><a href="database/results.html#CI_DB_result::set_row"><strong>set_row() (CI_DB_result method)</strong></a>
  1522. </li>
  1523. <li><a href="libraries/form_validation.html#CI_Form_validation::set_rules"><strong>set_rules() (CI_Form_validation method)</strong></a>
  1524. </li>
  1525. <li><a href="helpers/form_helper.html#set_select"><strong>set_select() (global function)</strong></a>
  1526. </li>
  1527. <li><a href="libraries/output.html#CI_Output::set_status_header"><strong>set_status_header() (CI_Output method)</strong></a>
  1528. <ul>
  1529. <li><a href="general/common_functions.html#set_status_header"><strong>(global function)</strong></a>
  1530. </li>
  1531. </ul></li>
  1532. <li><a href="libraries/sessions.html#CI_Session::set_tempdata"><strong>set_tempdata() (CI_Session method)</strong></a>
  1533. </li>
  1534. <li><a href="libraries/table.html#CI_Table::set_template"><strong>set_template() (CI_Table method)</strong></a>
  1535. <ul>
  1536. <li><a href="libraries/unit_testing.html#CI_Unit_test::set_template"><strong>(CI_Unit_test method)</strong></a>
  1537. </li>
  1538. </ul></li>
  1539. <li><a href="libraries/unit_testing.html#CI_Unit_test::set_test_items"><strong>set_test_items() (CI_Unit_test method)</strong></a>
  1540. </li>
  1541. <li><a href="database/query_builder.html#CI_DB_query_builder::set_update_batch"><strong>set_update_batch() (CI_DB_query_builder method)</strong></a>
  1542. </li>
  1543. <li><a href="libraries/sessions.html#CI_Session::set_userdata"><strong>set_userdata() (CI_Session method)</strong></a>
  1544. </li>
  1545. <li><a href="helpers/form_helper.html#set_value"><strong>set_value() (global function)</strong></a>
  1546. </li>
  1547. <li><a href="documentation/index.html#Some_class::should_do_something"><strong>should_do_something() (Some_class method)</strong></a>
  1548. </li>
  1549. <li><a href="general/errors.html#show_404"><strong>show_404() (global function)</strong></a>
  1550. </li>
  1551. <li><a href="general/errors.html#show_error"><strong>show_error() (global function)</strong></a>
  1552. </li>
  1553. <li><a href="database/db_driver_reference.html#CI_DB_driver::simple_query"><strong>simple_query() (CI_DB_driver method)</strong></a>
  1554. </li>
  1555. <li><a href="helpers/inflector_helper.html#singular"><strong>singular() (global function)</strong></a>
  1556. </li>
  1557. <li><a href="libraries/config.html#CI_Config::site_url"><strong>site_url() (CI_Config method)</strong></a>
  1558. <ul>
  1559. <li><a href="helpers/url_helper.html#site_url"><strong>(global function)</strong></a>
  1560. </li>
  1561. </ul></li>
  1562. <li><a href="libraries/config.html#CI_Config::slash_item"><strong>slash_item() (CI_Config method)</strong></a>
  1563. </li>
  1564. <li><a href="libraries/uri.html#CI_URI::slash_rsegment"><strong>slash_rsegment() (CI_URI method)</strong></a>
  1565. </li>
  1566. <li><a href="libraries/uri.html#CI_URI::slash_segment"><strong>slash_segment() (CI_URI method)</strong></a>
  1567. </li>
  1568. <li><a href="helpers/smiley_helper.html#smiley_js"><strong>smiley_js() (global function)</strong></a>
  1569. </li>
  1570. <li><a href="documentation/index.html#Some_class"><strong>Some_class (class)</strong></a>
  1571. </li>
  1572. <li><a href="documentation/index.html#Some_class::some_method"><strong>some_method() (Some_class method)</strong></a>
  1573. </li>
  1574. <li><a href="helpers/date_helper.html#standard_date"><strong>standard_date() (global function)</strong></a>
  1575. </li>
  1576. <li><a href="database/query_builder.html#CI_DB_query_builder::start_cache"><strong>start_cache() (CI_DB_query_builder method)</strong></a>
  1577. </li>
  1578. <li><a href="database/query_builder.html#CI_DB_query_builder::stop_cache"><strong>stop_cache() (CI_DB_query_builder method)</strong></a>
  1579. </li>
  1580. <li><a href="helpers/security_helper.html#strip_image_tags"><strong>strip_image_tags() (global function)</strong></a>
  1581. </li>
  1582. <li><a href="helpers/string_helper.html#strip_quotes"><strong>strip_quotes() (global function)</strong></a>
  1583. </li>
  1584. <li><a href="helpers/string_helper.html#strip_slashes"><strong>strip_slashes() (global function)</strong></a>
  1585. </li>
  1586. <li><a href="libraries/email.html#CI_Email::subject"><strong>subject() (CI_Email method)</strong></a>
  1587. </li>
  1588. <li><a href="helpers/file_helper.html#symbolic_permissions"><strong>symbolic_permissions() (global function)</strong></a>
  1589. </li>
  1590. <li><a href="libraries/config.html#CI_Config::system_url"><strong>system_url() (CI_Config method)</strong></a>
  1591. </li>
  1592. </ul></td>
  1593. </tr></table>
  1594. <h2 id="T">T</h2>
  1595. <table style="width: 100%" class="indextable genindextable"><tr>
  1596. <td style="width: 33%; vertical-align: top;"><ul>
  1597. <li><a href="database/db_driver_reference.html#CI_DB_driver::table_exists"><strong>table_exists() (CI_DB_driver method)</strong></a>
  1598. </li>
  1599. <li><a href="libraries/sessions.html#CI_Session::tempdata"><strong>tempdata() (CI_Session method)</strong></a>
  1600. </li>
  1601. <li><a href="libraries/xmlrpc.html#CI_Xmlrpc::timeout"><strong>timeout() (CI_Xmlrpc method)</strong></a>
  1602. </li>
  1603. <li><a href="helpers/date_helper.html#timespan"><strong>timespan() (global function)</strong></a>
  1604. </li>
  1605. <li><a href="helpers/date_helper.html#timezone_menu"><strong>timezone_menu() (global function)</strong></a>
  1606. </li>
  1607. <li><a href="helpers/date_helper.html#timezones"><strong>timezones() (global function)</strong></a>
  1608. </li>
  1609. <li><a href="libraries/email.html#CI_Email::to"><strong>to() (CI_Email method)</strong></a>
  1610. </li>
  1611. <li><a href="libraries/cart.html#CI_Cart::total"><strong>total() (CI_Cart method)</strong></a>
  1612. </li>
  1613. <li><a href="libraries/cart.html#CI_Cart::total_items"><strong>total_items() (CI_Cart method)</strong></a>
  1614. </li>
  1615. </ul></td>
  1616. <td style="width: 33%; vertical-align: top;"><ul>
  1617. <li><a href="database/db_driver_reference.html#CI_DB_driver::total_queries"><strong>total_queries() (CI_DB_driver method)</strong></a>
  1618. </li>
  1619. <li><a href="libraries/uri.html#CI_URI::total_rsegments"><strong>total_rsegments() (CI_URI method)</strong></a>
  1620. </li>
  1621. <li><a href="libraries/uri.html#CI_URI::total_segments"><strong>total_segments() (CI_URI method)</strong></a>
  1622. </li>
  1623. <li><a href="database/db_driver_reference.html#CI_DB_driver::trans_complete"><strong>trans_complete() (CI_DB_driver method)</strong></a>
  1624. </li>
  1625. <li><a href="database/db_driver_reference.html#CI_DB_driver::trans_off"><strong>trans_off() (CI_DB_driver method)</strong></a>
  1626. </li>
  1627. <li><a href="database/db_driver_reference.html#CI_DB_driver::trans_start"><strong>trans_start() (CI_DB_driver method)</strong></a>
  1628. </li>
  1629. <li><a href="database/db_driver_reference.html#CI_DB_driver::trans_status"><strong>trans_status() (CI_DB_driver method)</strong></a>
  1630. </li>
  1631. <li><a href="database/db_driver_reference.html#CI_DB_driver::trans_strict"><strong>trans_strict() (CI_DB_driver method)</strong></a>
  1632. </li>
  1633. <li><a href="helpers/string_helper.html#trim_slashes"><strong>trim_slashes() (global function)</strong></a>
  1634. </li>
  1635. <li><a href="database/query_builder.html#CI_DB_query_builder::truncate"><strong>truncate() (CI_DB_query_builder method)</strong></a>
  1636. </li>
  1637. </ul></td>
  1638. </tr></table>
  1639. <h2 id="U">U</h2>
  1640. <table style="width: 100%" class="indextable genindextable"><tr>
  1641. <td style="width: 33%; vertical-align: top;"><ul>
  1642. <li><a href="helpers/html_helper.html#ul"><strong>ul() (global function)</strong></a>
  1643. </li>
  1644. <li><a href="database/results.html#CI_DB_result::unbuffered_row"><strong>unbuffered_row() (CI_DB_result method)</strong></a>
  1645. </li>
  1646. <li><a href="helpers/inflector_helper.html#underscore"><strong>underscore() (global function)</strong></a>
  1647. </li>
  1648. <li><a href="helpers/date_helper.html#unix_to_human"><strong>unix_to_human() (global function)</strong></a>
  1649. </li>
  1650. <li><a href="libraries/sessions.html#CI_Session::unmark_flash"><strong>unmark_flash() (CI_Session method)</strong></a>
  1651. </li>
  1652. <li><a href="libraries/sessions.html#CI_Session::unmark_temp"><strong>unmark_temp() (CI_Session method)</strong></a>
  1653. </li>
  1654. <li><a href="libraries/sessions.html#CI_Session::unset_userdata"><strong>unset_userdata() (CI_Session method)</strong></a>
  1655. </li>
  1656. <li><a href="libraries/cart.html#CI_Cart::update"><strong>update() (CI_Cart method)</strong></a>
  1657. <ul>
  1658. <li><a href="database/query_builder.html#CI_DB_query_builder::update"><strong>(CI_DB_query_builder method)</strong></a>
  1659. </li>
  1660. </ul></li>
  1661. </ul></td>
  1662. <td style="width: 33%; vertical-align: top;"><ul>
  1663. <li><a href="database/query_builder.html#CI_DB_query_builder::update_batch"><strong>update_batch() (CI_DB_query_builder method)</strong></a>
  1664. </li>
  1665. <li><a href="database/db_driver_reference.html#CI_DB_driver::update_string"><strong>update_string() (CI_DB_driver method)</strong></a>
  1666. </li>
  1667. <li><a href="libraries/ftp.html#CI_FTP::upload"><strong>upload() (CI_FTP method)</strong></a>
  1668. </li>
  1669. <li><a href="libraries/uri.html#CI_URI::uri_string"><strong>uri_string() (CI_URI method)</strong></a>
  1670. <ul>
  1671. <li><a href="helpers/url_helper.html#uri_string"><strong>(global function)</strong></a>
  1672. </li>
  1673. </ul></li>
  1674. <li><a href="libraries/uri.html#CI_URI::uri_to_assoc"><strong>uri_to_assoc() (CI_URI method)</strong></a>
  1675. </li>
  1676. <li><a href="helpers/url_helper.html#url_title"><strong>url_title() (global function)</strong></a>
  1677. </li>
  1678. <li><a href="libraries/unit_testing.html#CI_Unit_test::use_strict"><strong>use_strict() (CI_Unit_test method)</strong></a>
  1679. </li>
  1680. <li><a href="libraries/input.html#CI_Input::user_agent"><strong>user_agent() (CI_Input method)</strong></a>
  1681. </li>
  1682. <li><a href="libraries/sessions.html#CI_Session::userdata"><strong>userdata() (CI_Session method)</strong></a>
  1683. </li>
  1684. </ul></td>
  1685. </tr></table>
  1686. <h2 id="V">V</h2>
  1687. <table style="width: 100%" class="indextable genindextable"><tr>
  1688. <td style="width: 33%; vertical-align: top;"><ul>
  1689. <li><a href="helpers/email_helper.html#valid_email"><strong>valid_email() (global function)</strong></a>
  1690. </li>
  1691. <li><a href="libraries/input.html#CI_Input::valid_ip"><strong>valid_ip() (CI_Input method)</strong></a>
  1692. </li>
  1693. <li><a href="libraries/trackback.html#CI_Trackback::validate_url"><strong>validate_url() (CI_Trackback method)</strong></a>
  1694. </li>
  1695. <li><a href="helpers/form_helper.html#validation_errors"><strong>validation_errors() (global function)</strong></a>
  1696. </li>
  1697. </ul></td>
  1698. <td style="width: 33%; vertical-align: top;"><ul>
  1699. <li><a href="libraries/loader.html#CI_Loader::vars"><strong>vars() (CI_Loader method)</strong></a>
  1700. </li>
  1701. <li><a href="database/db_driver_reference.html#CI_DB_driver::version"><strong>version() (CI_DB_driver method)</strong></a>
  1702. <ul>
  1703. <li><a href="libraries/migration.html#CI_Migration::version"><strong>(CI_Migration method)</strong></a>
  1704. </li>
  1705. <li><a href="libraries/user_agent.html#CI_User_agent::version"><strong>(CI_User_agent method)</strong></a>
  1706. </li>
  1707. </ul></li>
  1708. <li><a href="libraries/loader.html#CI_Loader::view"><strong>view() (CI_Loader method)</strong></a>
  1709. </li>
  1710. </ul></td>
  1711. </tr></table>
  1712. <h2 id="W">W</h2>
  1713. <table style="width: 100%" class="indextable genindextable"><tr>
  1714. <td style="width: 33%; vertical-align: top;"><ul>
  1715. <li><a href="libraries/image_lib.html#CI_Image_lib::watermark"><strong>watermark() (CI_Image_lib method)</strong></a>
  1716. </li>
  1717. <li><a href="database/query_builder.html#CI_DB_query_builder::where"><strong>where() (CI_DB_query_builder method)</strong></a>
  1718. </li>
  1719. <li><a href="database/query_builder.html#CI_DB_query_builder::where_in"><strong>where_in() (CI_DB_query_builder method)</strong></a>
  1720. </li>
  1721. <li><a href="database/query_builder.html#CI_DB_query_builder::where_not_in"><strong>where_not_in() (CI_DB_query_builder method)</strong></a>
  1722. </li>
  1723. </ul></td>
  1724. <td style="width: 33%; vertical-align: top;"><ul>
  1725. <li><a href="helpers/text_helper.html#word_censor"><strong>word_censor() (global function)</strong></a>
  1726. </li>
  1727. <li><a href="helpers/inflector_helper.html#word_is_countable"><strong>word_is_countable() (global function)</strong></a>
  1728. </li>
  1729. <li><a href="helpers/text_helper.html#word_limiter"><strong>word_limiter() (global function)</strong></a>
  1730. </li>
  1731. <li><a href="helpers/text_helper.html#word_wrap"><strong>word_wrap() (global function)</strong></a>
  1732. </li>
  1733. <li><a href="helpers/file_helper.html#write_file"><strong>write_file() (global function)</strong></a>
  1734. </li>
  1735. </ul></td>
  1736. </tr></table>
  1737. <h2 id="X">X</h2>
  1738. <table style="width: 100%" class="indextable genindextable"><tr>
  1739. <td style="width: 33%; vertical-align: top;"><ul>
  1740. <li><a href="helpers/xml_helper.html#xml_convert"><strong>xml_convert() (global function)</strong></a>
  1741. </li>
  1742. <li><a href="database/utilities.html#CI_DB_utility::xml_from_result"><strong>xml_from_result() (CI_DB_utility method)</strong></a>
  1743. </li>
  1744. </ul></td>
  1745. <td style="width: 33%; vertical-align: top;"><ul>
  1746. <li><a href="libraries/security.html#CI_Security::xss_clean"><strong>xss_clean() (CI_Security method)</strong></a>
  1747. <ul>
  1748. <li><a href="helpers/security_helper.html#xss_clean"><strong>(global function)</strong></a>
  1749. </li>
  1750. </ul></li>
  1751. </ul></td>
  1752. </tr></table>
  1753. </div>
  1754. <footer>
  1755. <hr/>
  1756. <div role="contentinfo">
  1757. <p>
  1758. &copy; Copyright 2014 - 2019, British Columbia Institute of Technology.
  1759. Last updated on Sep 19, 2019.
  1760. </p>
  1761. </div>
  1762. Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>.
  1763. </footer>
  1764. </div>
  1765. </div>
  1766. </section>
  1767. </div>
  1768. <script type="text/javascript">
  1769. var DOCUMENTATION_OPTIONS = {
  1770. URL_ROOT:'./',
  1771. VERSION:'3.1.11',
  1772. COLLAPSE_INDEX:false,
  1773. FILE_SUFFIX:'.html',
  1774. HAS_SOURCE: false
  1775. };
  1776. </script>
  1777. <script type="text/javascript" src="_static/jquery.js"></script>
  1778. <script type="text/javascript" src="_static/underscore.js"></script>
  1779. <script type="text/javascript" src="_static/doctools.js"></script>
  1780. <script type="text/javascript" src="_static/js/theme.js"></script>
  1781. <script type="text/javascript">
  1782. jQuery(function () {
  1783. SphinxRtdTheme.StickyNav.enable();
  1784. });
  1785. </script>
  1786. </body>
  1787. </html>