Reads entire file into an array
Syntax
file ( string $filename [, int $flags = 0 [, resource $context ]] ) : array
Parameters
filename
Path to the file.
Tip: A URL can be used as a filename with this function if the fopen wrappers have been enabled. See fopen() for more details on how to specify the filename. See the Supported Protocols and Wrappers for links to information about what abilities the various wrappers have, notes on their usage, and information on any predefined variables they may provide.
flags
The optional parameter flags can be one, or more, of the following constants:
FILE_USE_INCLUDE_PATH | Search for the file in the include_path. |
FILE_IGNORE_NEW_LINES | Omit newline at the end of each array element |
FILE_SKIP_EMPTY_LINES | Skip empty lines |
context
A context resource created with the stream_context_create() function.
Note: Context support was added with PHP 5.0.0. For a description of contexts, refer to Streams.
Return
Returns the file in an array. Each element of the array corresponds to a line in the file, with the newline still attached. Upon failure, file() returns FALSE.
Note: Each line in the resulting array will include the line ending, unless FILE_IGNORE_NEW_LINES is used.
Note: If PHP is not properly recognizing the line endings when reading files either on or created by a Macintosh computer, enabling the auto_detect_line_endings run-time configuration option may help resolve the problem.
Examples
filename
<? $filename = "https://osbo.com"; $return = file($filename); print_r($return); ?>
Array ( [0] => <!doctype html> [1] => <html lang="en"> [2] => <head> [3] => <meta charset="utf-8"> [4] => <meta content="osbo.com" name="description"> [5] => <meta content="width=device-width" name="viewport"> [6] => <title>osbo.com</title> [7] => <link href="/assets/svg/Icon.svg" rel="icon"> [8] => <link href="/assets/css/" rel="stylesheet"> [9] => <script src="/assets/js/"></script> [10] => </head> [11] => <body> [12] => <div id="background"></div> [13] => <header> [14] => <h1>osbo.com</h1> [15] => </header> [16] => <main> [17] => <h2 id="html"><a href="#html">HTML</a></h2> [18] => <div class="editor1 section"> [19] => <form id="form1"> [20] => <textarea id="textarea1" spellcheck="false" title="Edit"><!doctype html> [21] => <html> [22] => <head> [23] => <title>HTML</title> [24] => </head> [25] => <body> [26] => <a href="/html/" target="_parent">HTML</a> [27] => </body> [28] => </html></textarea> [29] => <input id="input1-1" type="button" value="↻" title="Reset"> [30] => <input id="input2-1" type="button" value="→" title="Editor"> [31] => </form> [32] => <iframe id="iframe1" title="Editor"></iframe> [33] => </div> [34] => <h2 id="css"><a href="#css">CSS</a></h2> [35] => <div class="editor1 section"> [36] => <form id="form2"> [37] => <textarea id="textarea2" spellcheck="false" title="Edit"><!doctype html> [38] => <html> [39] => <head> [40] => <title>CSS</title> [41] => <style> [42] => a [43] => { [44] => background-color: rgba(255,0,0,0.1); [45] => color: red; [46] => } [47] => a:hover [48] => { [49] => background-color: rgba(0,0,0,0.1); [50] => color: black; [51] => } [52] => </style> [53] => </head> [54] => <body> [55] => <a href="/css/" target="_parent">CSS</a> [56] => </body> [57] => </html></textarea> [58] => <input id="input1-2" type="button" value="↻" title="Reset"> [59] => <input id="input2-2" type="button" value="→" title="Editor"> [60] => </form> [61] => <iframe id="iframe2" title="Editor"></iframe> [62] => </div> [63] => <h2 id="js"><a href="#js">JS</a></h2> [64] => <div class="editor1 section"> [65] => <form id="form3"> [66] => <textarea id="textarea3" spellcheck="false" title="Edit"><!doctype html> [67] => <html> [68] => <head> [69] => <title>JS</title> [70] => <style> [71] => a [72] => { [73] => background-color: rgba(0,255,0,0.1); [74] => color: green; [75] => } [76] => a:hover [77] => { [78] => background-color: rgba(0,0,0,0.1); [79] => color: black; [80] => } [81] => </style> [82] => </head> [83] => <body> [84] => <a href="/js/" target="_parent">JS</a> [85] => <script> [86] => function myfunction() [87] => { [88] => var element = document.querySelector("a"); [89] => element.style.position = "absolute"; [90] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [91] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [92] => } [93] => document.querySelector("a").addEventListener("mouseout", myfunction); [94] => </script> [95] => </body> [96] => </html></textarea> [97] => <input id="input1-3" type="button" value="↻" title="Reset"> [98] => <input id="input2-3" type="button" value="→" title="Editor"> [99] => </form> [100] => <iframe id="iframe3" title="Editor"></iframe> [101] => </div> [102] => <h2 id="php"><a href="#php">PHP</a></h2> [103] => <div class="editor3 section"> [104] => <pre><? [105] => [106] => echo '<!doctype html> [107] => <html> [108] => <head> [109] => <title>PHP</title> [110] => <style> [111] => a [112] => { [113] => background-color: rgba(255,0,255,0.1); [114] => color: purple; [115] => } [116] => a:hover [117] => { [118] => background-color: rgba(0,0,0,0.1); [119] => color: black; [120] => } [121] => </style> [122] => </head> [123] => <body> [124] => <a href="/php/" target="_parent">PHP</a> [125] => <script> [126] => function myfunction() [127] => { [128] => var element = document.querySelector("a"); [129] => element.style.position = "absolute"; [130] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [131] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [132] => } [133] => document.querySelector("a").addEventListener("mouseout", myfunction); [134] => </script> [135] => </body> [136] => </html>'; [137] => [138] => ?></pre> [139] => <pre><!doctype html> [140] => <html> [141] => <head> [142] => <title>PHP</title> [143] => <style> [144] => a [145] => { [146] => background-color: rgba(255,0,255,0.1); [147] => color: purple; [148] => } [149] => a:hover [150] => { [151] => background-color: rgba(0,0,0,0.1); [152] => color: black; [153] => } [154] => </style> [155] => </head> [156] => <body> [157] => <a href="/php/" target="_parent">PHP</a> [158] => <script> [159] => function myfunction() [160] => { [161] => var element = document.querySelector("a"); [162] => element.style.position = "absolute"; [163] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [164] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [165] => } [166] => document.querySelector("a").addEventListener("mouseout", myfunction); [167] => </script> [168] => </body> [169] => </html></pre> [170] => <iframe srcdoc="<!doctype html> [171] => <html> [172] => <head> [173] => <title>PHP</title> [174] => <style> [175] => a [176] => { [177] => background-color: rgba(255,0,255,0.1); [178] => color: purple; [179] => } [180] => a:hover [181] => { [182] => background-color: rgba(0,0,0,0.1); [183] => color: black; [184] => } [185] => </style> [186] => </head> [187] => <body> [188] => <a href="/php/" target="_parent">PHP</a> [189] => <script> [190] => function myfunction() [191] => { [192] => var element = document.querySelector("a"); [193] => element.style.position = "absolute"; [194] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [195] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [196] => } [197] => document.querySelector("a").addEventListener("mouseout", myfunction); [198] => </script> [199] => </body> [200] => </html>" title="Editor"></iframe> [201] => </div> [202] => <h2 id="svg"><a href="#svg">SVG</a></h2> [203] => <div class="editor1 section"> [204] => <form id="form4"> [205] => <textarea id="textarea4" spellcheck="false" title="Edit"><svg height="100%" width="100%" xmlns="http://www.w3.org/2000/svg"> [206] => <a href="/svg/" target="_parent"> [207] => <rect fill="yellow" height="100%" opacity="0.1" width="100%"/> [208] => <circle cx="50%" cy="50%" fill="yellow" r="50vh"/> [209] => <text dominant-baseline="middle" text-anchor="middle" x="50%" y="50%">SVG</text> [210] => </a> [211] => </svg></textarea> [212] => <input id="input1-4" type="button" value="↻" title="Reset"> [213] => <input id="input2-4" type="button" value="→" title="Editor"> [214] => </form> [215] => <iframe id="iframe4" title="Editor"></iframe> [216] => </div> [217] => </main> [218] => <nav> [219] => <div class="nav-h1"> [220] => <a href="/Jesus/">JESUS</a> [221] => </div> [222] => <div class="nav-h1"> [223] => <a id="nav-Bible-switch">BIBLE</a> [224] => </div> [225] => <div id="nav-Bible"> [226] => <h3>Overview</h3> [227] => <div class="nav-content section"> [228] => <a href="/Bible/">Overview</a> [229] => </div> [230] => <h3>Download</h3> [231] => <div class="nav-content section"> [232] => <a href="/Bible/download/">Download</a> [233] => </div> [234] => <h3>العربية</h3> [235] => <div class="nav-content section"> [236] => <a href="/Bible/asvd/">ASVD الكتاب المقدس ترجمة فانديك وسميث</a> [237] => </div> [238] => <h3>česky</h3> [239] => <div class="nav-content section"> [240] => <a href="/Bible/csbkr/">CSBKR Bible Kralická 1613</a> [241] => </div> [242] => <h3>Dansk</h3> [243] => <div class="nav-content section"> [244] => <a href="/Bible/da1871/">DA1871 Danske Bibel 1871</a> [245] => </div> [246] => <h3>Deutsch</h3> [247] => <div class="nav-content section"> [248] => <a href="/Bible/delut/">DELUT Luther Bible 1912</a> [249] => <a href="/Bible/elb/">ELB Elberfelder 1905</a> [250] => <a href="/Bible/elb71/">ELB71 Elberfelder 1871</a> [251] => </div> [252] => <h3>English</h3> [253] => <div class="nav-content section"> [254] => <a href="/Bible/asv/">ASV American Standard Version</a> [255] => <a href="/Bible/kjv/">KJV King James Version</a> [256] => <a href="/Bible/web/">WEB World English Bible</a> [257] => </div> [258] => <h3>Español</h3> [259] => <div class="nav-content section"> [260] => <a href="/Bible/rves/">RVES Reina-Valera Antigua</a> [261] => </div> [262] => <h3>Suomi</h3> [263] => <div class="nav-content section"> [264] => <a href="/Bible/fi1776/">FI1776 Finnish 1776</a> [265] => <a href="/Bible/finpr/">FINPR Finnish 1938</a> [266] => </div> [267] => <h3>Français</h3> [268] => <div class="nav-content section"> [269] => <a href="/Bible/fmar/">FMAR Martin 1744</a> [270] => <a href="/Bible/frdby/">FRDBY Bible Darby en français</a> [271] => <a href="/Bible/lsg/">LSG Louis Segond 1910</a> [272] => <a href="/Bible/ost/">OST Ostervald</a> [273] => </div> [274] => <h3>Magyar</h3> [275] => <div class="nav-content section"> [276] => <a href="/Bible/kar/">KAR Károli 1590</a> [277] => </div> [278] => <h3>Bahasa Indonesia</h3> [279] => <div class="nav-content section"> [280] => <a href="/Bible/idbar/">IDBAR Terjemahan Baru</a> [281] => </div> [282] => <h3>Italiano</h3> [283] => <div class="nav-content section"> [284] => <a href="/Bible/igd/">IGD Giovanni Diodati Bibbia</a> [285] => <a href="/Bible/itriv/">ITRIV Italian Riveduta 1927</a> [286] => </div> [287] => <h3>日本語</h3> [288] => <div class="nav-content section"> [289] => <a href="/Bible/ja1955/">JA1955 Colloquial Japanese (1955)</a> [290] => </div> [291] => <h3>Malagasy</h3> [292] => <div class="nav-content section"> [293] => <a href="/Bible/mg1865/">MG1865 Malagasy Bible</a> [294] => </div> [295] => <h3>te reo Māori</h3> [296] => <div class="nav-content section"> [297] => <a href="/Bible/maor/">MAOR Maori Bible</a> [298] => </div> [299] => <h3>한국어</h3> [300] => <div class="nav-content section"> [301] => <a href="/Bible/korvb/">KORVB 개역한글</a> [302] => </div> [303] => <h3>Nederlands</h3> [304] => <div class="nav-content section"> [305] => <a href="/Bible/sv1750/">SV1750 Statenvertaling</a> [306] => </div> [307] => <h3>Norsk</h3> [308] => <div class="nav-content section"> [309] => <a href="/Bible/norsk/">NORSK Det Norsk Bibelselskap 1930</a> [310] => </div> [311] => <h3>Polski</h3> [312] => <div class="nav-content section"> [313] => <a href="/Bible/pbg/">PBG Biblia Gdańska</a> [314] => </div> [315] => <h3>Português</h3> [316] => <div class="nav-content section"> [317] => <a href="/Bible/aa/">AA Almeida Atualizada</a> [318] => </div> [319] => <h3>Română</h3> [320] => <div class="nav-content section"> [321] => <a href="/Bible/rmnn/">RMNN Romanian Cornilescu 1928</a> [322] => <a href="/Bible/vdc/">VDC Versiunea Dumitru Cornilescu</a> [323] => <a href="/Bible/vdcc/">VDCC Versiunea Dumitru Cornilescu Corectată</a> [324] => </div> [325] => <h3>Pyccкий</h3> [326] => <div class="nav-content section"> [327] => <a href="/Bible/rursv/">RURSV Синодальный перевод</a> [328] => </div> [329] => <h3>Shqip</h3> [330] => <div class="nav-content section"> [331] => <a href="/Bible/albb/">ALBB Albanian Bible</a> [332] => </div> [333] => <h3>Svenska</h3> [334] => <div class="nav-content section"> [335] => <a href="/Bible/sk73/">SK73 Karl XII 1873</a> [336] => <a href="/Bible/sven/">SVEN Svenska 1917</a> [337] => </div> [338] => <h3>Wikang Tagalog</h3> [339] => <div class="nav-content section"> [340] => <a href="/Bible/tlab/">TLAB Ang Biblia</a> [341] => </div> [342] => <h3>українська</h3> [343] => <div class="nav-content section"> [344] => <a href="/Bible/ubio/">UBIO Біблія в пер. Івана Огієнка, 1962</a> [345] => <a href="/Bible/ukrk/">UKRK Біблія в пер. П.Куліша та І.Пулюя, 1905</a> [346] => </div> [347] => <h3>Tiếng Việt</h3> [348] => <div class="nav-content section"> [349] => <a href="/Bible/vi1934/">VI1934 1934 Vietnamese Bible</a> [350] => </div> [351] => <h3>简体中文</h3> [352] => <div class="nav-content section"> [353] => <a href="/Bible/cuvs/">CUVS 简体和合本</a> [354] => </div> [355] => <h3>繁體中文</h3> [356] => <div class="nav-content section"> [357] => <a href="/Bible/cuv/">CUV 和合本</a> [358] => </div> [359] => </div> [360] => <div class="nav-h1"> [361] => <a id="nav-html-switch">HTML</a> [362] => </div> [363] => <div id="nav-html"> [364] => <h3>Overview</h3> [365] => <div class="nav-content section"> [366] => <a href="/html/">Overview</a> [367] => </div> [368] => <h3>Attributes</h3> [369] => <div class="nav-content section"> [370] => <a href="/html/attributes/accesskey/">accesskey</a> [371] => <a href="/html/attributes/autocapitalize/">autocapitalize</a> [372] => <a href="/html/attributes/class/">class</a> [373] => <a href="/html/attributes/contenteditable/">contenteditable</a> [374] => <a href="/html/attributes/data/">data</a> [375] => <a href="/html/attributes/dir/">dir</a> [376] => <a href="/html/attributes/draggable/">draggable</a> [377] => <a href="/html/attributes/hidden/">hidden</a> [378] => <a href="/html/attributes/id/">id</a> [379] => <a href="/html/attributes/inputmode/">inputmode</a> [380] => <a href="/html/attributes/lang/">lang</a> [381] => <a href="/html/attributes/spellcheck/">spellcheck</a> [382] => <a href="/html/attributes/style/">style</a> [383] => <a href="/html/attributes/tabindex/">tabindex</a> [384] => <a href="/html/attributes/title/">title</a> [385] => </div> [386] => <h3>Elements</h3> [387] => <div class="nav-content section"> [388] => <a href="/html/elements/!doctype/">!doctype</a> [389] => <a href="/html/elements/a/">a</a> [390] => <a href="/html/elements/abbr/">abbr</a> [391] => <a href="/html/elements/address/">address</a> [392] => <a href="/html/elements/area/">area</a> [393] => <a href="/html/elements/article/">article</a> [394] => <a href="/html/elements/aside/">aside</a> [395] => <a href="/html/elements/audio/">audio</a> [396] => <a href="/html/elements/b/">b</a> [397] => <a href="/html/elements/base/">base</a> [398] => <a href="/html/elements/bdi/">bdi</a> [399] => <a href="/html/elements/bdo/">bdo</a> [400] => <a href="/html/elements/blockquote/">blockquote</a> [401] => <a href="/html/elements/body/">body</a> [402] => <a href="/html/elements/br/">br</a> [403] => <a href="/html/elements/button/">button</a> [404] => <a href="/html/elements/canvas/">canvas</a> [405] => <a href="/html/elements/caption/">caption</a> [406] => <a href="/html/elements/cite/">cite</a> [407] => <a href="/html/elements/code/">code</a> [408] => <a href="/html/elements/col/">col</a> [409] => <a href="/html/elements/colgroup/">colgroup</a> [410] => <a href="/html/elements/data/">data</a> [411] => <a href="/html/elements/datalist/">datalist</a> [412] => <a href="/html/elements/dd/">dd</a> [413] => <a href="/html/elements/del/">del</a> [414] => <a href="/html/elements/details/">details</a> [415] => <a href="/html/elements/dfn/">dfn</a> [416] => <a href="/html/elements/dialog/">dialog</a> [417] => <a href="/html/elements/div/">div</a> [418] => <a href="/html/elements/dl/">dl</a> [419] => <a href="/html/elements/dt/">dt</a> [420] => <a href="/html/elements/em/">em</a> [421] => <a href="/html/elements/embed/">embed</a> [422] => <a href="/html/elements/fieldset/">fieldset</a> [423] => <a href="/html/elements/figcaption/">figcaption</a> [424] => <a href="/html/elements/figure/">figure</a> [425] => <a href="/html/elements/footer/">footer</a> [426] => <a href="/html/elements/form/">form</a> [427] => <a href="/html/elements/h1/">h1</a> [428] => <a href="/html/elements/h2/">h2</a> [429] => <a href="/html/elements/h3/">h3</a> [430] => <a href="/html/elements/h4/">h4</a> [431] => <a href="/html/elements/h5/">h5</a> [432] => <a href="/html/elements/h6/">h6</a> [433] => <a href="/html/elements/head/">head</a> [434] => <a href="/html/elements/header/">header</a> [435] => <a href="/html/elements/hgroup/">hgroup</a> [436] => <a href="/html/elements/hr/">hr</a> [437] => <a href="/html/elements/html/">html</a> [438] => <a href="/html/elements/i/">i</a> [439] => <a href="/html/elements/iframe/">iframe</a> [440] => <a href="/html/elements/img/">img</a> [441] => <a href="/html/elements/input/">input</a> [442] => <a href="/html/elements/ins/">ins</a> [443] => <a href="/html/elements/kbd/">kbd</a> [444] => <a href="/html/elements/label/">label</a> [445] => <a href="/html/elements/legend/">legend</a> [446] => <a href="/html/elements/li/">li</a> [447] => <a href="/html/elements/link/">link</a> [448] => <a href="/html/elements/main/">main</a> [449] => <a href="/html/elements/map/">map</a> [450] => <a href="/html/elements/mark/">mark</a> [451] => <a href="/html/elements/meta/">meta</a> [452] => <a href="/html/elements/meter/">meter</a> [453] => <a href="/html/elements/nav/">nav</a> [454] => <a href="/html/elements/noscript/">noscript</a> [455] => <a href="/html/elements/object/">object</a> [456] => <a href="/html/elements/ol/">ol</a> [457] => <a href="/html/elements/optgroup/">optgroup</a> [458] => <a href="/html/elements/option/">option</a> [459] => <a href="/html/elements/output/">output</a> [460] => <a href="/html/elements/p/">p</a> [461] => <a href="/html/elements/param/">param</a> [462] => <a href="/html/elements/picture/">picture</a> [463] => <a href="/html/elements/pre/">pre</a> [464] => <a href="/html/elements/progress/">progress</a> [465] => <a href="/html/elements/q/">q</a> [466] => <a href="/html/elements/rb/">rb</a> [467] => <a href="/html/elements/rp/">rp</a> [468] => <a href="/html/elements/rt/">rt</a> [469] => <a href="/html/elements/rtc/">rtc</a> [470] => <a href="/html/elements/ruby/">ruby</a> [471] => <a href="/html/elements/s/">s</a> [472] => <a href="/html/elements/samp/">samp</a> [473] => <a href="/html/elements/script/">script</a> [474] => <a href="/html/elements/section/">section</a> [475] => <a href="/html/elements/select/">select</a> [476] => <a href="/html/elements/slot/">slot</a> [477] => <a href="/html/elements/small/">small</a> [478] => <a href="/html/elements/source/">source</a> [479] => <a href="/html/elements/span/">span</a> [480] => <a href="/html/elements/strong/">strong</a> [481] => <a href="/html/elements/style/">style</a> [482] => <a href="/html/elements/sub/">sub</a> [483] => <a href="/html/elements/summary/">summary</a> [484] => <a href="/html/elements/sup/">sup</a> [485] => <a href="/html/elements/table/">table</a> [486] => <a href="/html/elements/tbody/">tbody</a> [487] => <a href="/html/elements/td/">td</a> [488] => <a href="/html/elements/template/">template</a> [489] => <a href="/html/elements/textarea/">textarea</a> [490] => <a href="/html/elements/tfoot/">tfoot</a> [491] => <a href="/html/elements/th/">th</a> [492] => <a href="/html/elements/thead/">thead</a> [493] => <a href="/html/elements/time/">time</a> [494] => <a href="/html/elements/title/">title</a> [495] => <a href="/html/elements/tr/">tr</a> [496] => <a href="/html/elements/track/">track</a> [497] => <a href="/html/elements/u/">u</a> [498] => <a href="/html/elements/ul/">ul</a> [499] => <a href="/html/elements/var/">var</a> [500] => <a href="/html/elements/wbr/">wbr</a> [501] => </div> [502] => <h3>Other</h3> [503] => <div class="nav-content section"> [504] => <a href="/html/characters/">Characters</a> [505] => <a href="/html/comments/">Comments</a> [506] => <a href="/html/datatypes/">Datatypes</a> [507] => </div> [508] => </div> [509] => <div class="nav-h1"> [510] => <a id="nav-css-switch">CSS</a> [511] => </div> [512] => <div id="nav-css"> [513] => <h3>Overview</h3> [514] => <div class="nav-content section"> [515] => <a href="/css/">Overview</a> [516] => </div> [517] => <h3>Properties</h3> [518] => <div class="nav-content section"> [519] => <a href="/css/properties/align-content/">align-content</a> [520] => <a href="/css/properties/align-items/">align-items</a> [521] => <a href="/css/properties/align-self/">align-self</a> [522] => <a href="/css/properties/all/">all</a> [523] => <a href="/css/properties/animation/">animation</a> [524] => <a href="/css/properties/animation-delay/">animation-delay</a> [525] => <a href="/css/properties/animation-direction/">animation-direction</a> [526] => <a href="/css/properties/animation-duration/">animation-duration</a> [527] => <a href="/css/properties/animation-fill-mode/">animation-fill-mode</a> [528] => <a href="/css/properties/animation-iteration-count/">animation-iteration-count</a> [529] => <a href="/css/properties/animation-name/">animation-name</a> [530] => <a href="/css/properties/animation-play-state/">animation-play-state</a> [531] => <a href="/css/properties/animation-timing-function/">animation-timing-function</a> [532] => <a href="/css/properties/backdrop-filter/">backdrop-filter</a> [533] => <a href="/css/properties/backface-visibility/">backface-visibility</a> [534] => <a href="/css/properties/background/">background</a> [535] => <a href="/css/properties/background-attachment/">background-attachment</a> [536] => <a href="/css/properties/background-blend-mode/">background-blend-mode</a> [537] => <a href="/css/properties/background-clip/">background-clip</a> [538] => <a href="/css/properties/background-color/">background-color</a> [539] => <a href="/css/properties/background-image/">background-image</a> [540] => <a href="/css/properties/background-origin/">background-origin</a> [541] => <a href="/css/properties/background-position/">background-position</a> [542] => <a href="/css/properties/background-repeat/">background-repeat</a> [543] => <a href="/css/properties/background-size/">background-size</a> [544] => <a href="/css/properties/block-ellipsis/">block-ellipsis</a> [545] => <a href="/css/properties/block-size/">block-size</a> [546] => <a href="/css/properties/border/">border</a> [547] => <a href="/css/properties/border-block/">border-block</a> [548] => <a href="/css/properties/border-block-color/">border-block-color</a> [549] => <a href="/css/properties/border-block-end/">border-block-end</a> [550] => <a href="/css/properties/border-block-end-color/">border-block-end-color</a> [551] => <a href="/css/properties/border-block-end-style/">border-block-end-style</a> [552] => <a href="/css/properties/border-block-end-width/">border-block-end-width</a> [553] => <a href="/css/properties/border-block-start/">border-block-start</a> [554] => <a href="/css/properties/border-block-start-color/">border-block-start-color</a> [555] => <a href="/css/properties/border-block-start-style/">border-block-start-style</a> [556] => <a href="/css/properties/border-block-start-width/">border-block-start-width</a> [557] => <a href="/css/properties/border-block-style/">border-block-style</a> [558] => <a href="/css/properties/border-block-width/">border-block-width</a> [559] => <a href="/css/properties/border-bottom/">border-bottom</a> [560] => <a href="/css/properties/border-bottom-color/">border-bottom-color</a> [561] => <a href="/css/properties/border-bottom-left-radius/">border-bottom-left-radius</a> [562] => <a href="/css/properties/border-bottom-right-radius/">border-bottom-right-radius</a> [563] => <a href="/css/properties/border-bottom-style/">border-bottom-style</a> [564] => <a href="/css/properties/border-bottom-width/">border-bottom-width</a> [565] => <a href="/css/properties/border-collapse/">border-collapse</a> [566] => <a href="/css/properties/border-color/">border-color</a> [567] => <a href="/css/properties/border-end-end-radius/">border-end-end-radius</a> [568] => <a href="/css/properties/border-end-start-radius/">border-end-start-radius</a> [569] => <a href="/css/properties/border-image/">border-image</a> [570] => <a href="/css/properties/border-image-outset/">border-image-outset</a> [571] => <a href="/css/properties/border-image-repeat/">border-image-repeat</a> [572] => <a href="/css/properties/border-image-slice/">border-image-slice</a> [573] => <a href="/css/properties/border-image-source/">border-image-source</a> [574] => <a href="/css/properties/border-image-width/">border-image-width</a> [575] => <a href="/css/properties/border-inline/">border-inline</a> [576] => <a href="/css/properties/border-inline-color/">border-inline-color</a> [577] => <a href="/css/properties/border-inline-end/">border-inline-end</a> [578] => <a href="/css/properties/border-inline-end-color/">border-inline-end-color</a> [579] => <a href="/css/properties/border-inline-end-style/">border-inline-end-style</a> [580] => <a href="/css/properties/border-inline-end-width/">border-inline-end-width</a> [581] => <a href="/css/properties/border-inline-start/">border-inline-start</a> [582] => <a href="/css/properties/border-inline-start-color/">border-inline-start-color</a> [583] => <a href="/css/properties/border-inline-start-style/">border-inline-start-style</a> [584] => <a href="/css/properties/border-inline-start-width/">border-inline-start-width</a> [585] => <a href="/css/properties/border-inline-style/">border-inline-style</a> [586] => <a href="/css/properties/border-inline-width/">border-inline-width</a> [587] => <a href="/css/properties/border-left/">border-left</a> [588] => <a href="/css/properties/border-left-color/">border-left-color</a> [589] => <a href="/css/properties/border-left-style/">border-left-style</a> [590] => <a href="/css/properties/border-left-width/">border-left-width</a> [591] => <a href="/css/properties/border-radius/">border-radius</a> [592] => <a href="/css/properties/border-right/">border-right</a> [593] => <a href="/css/properties/border-right-color/">border-right-color</a> [594] => <a href="/css/properties/border-right-style/">border-right-style</a> [595] => <a href="/css/properties/border-right-width/">border-right-width</a> [596] => <a href="/css/properties/border-spacing/">border-spacing</a> [597] => <a href="/css/properties/border-start-end-radius/">border-start-end-radius</a> [598] => <a href="/css/properties/border-start-start-radius/">border-start-start-radius</a> [599] => <a href="/css/properties/border-style/">border-style</a> [600] => <a href="/css/properties/border-top/">border-top</a> [601] => <a href="/css/properties/border-top-color/">border-top-color</a> [602] => <a href="/css/properties/border-top-left-radius/">border-top-left-radius</a> [603] => <a href="/css/properties/border-top-right-radius/">border-top-right-radius</a> [604] => <a href="/css/properties/border-top-style/">border-top-style</a> [605] => <a href="/css/properties/border-top-width/">border-top-width</a> [606] => <a href="/css/properties/border-width/">border-width</a> [607] => <a href="/css/properties/bottom/">bottom</a> [608] => <a href="/css/properties/box-decoration-break/">box-decoration-break</a> [609] => <a href="/css/properties/box-shadow/">box-shadow</a> [610] => <a href="/css/properties/box-sizing/">box-sizing</a> [611] => <a href="/css/properties/caption-side/">caption-side</a> [612] => <a href="/css/properties/caret/">caret</a> [613] => <a href="/css/properties/caret-color/">caret-color</a> [614] => <a href="/css/properties/caret-shape/">caret-shape</a> [615] => <a href="/css/properties/clear/">clear</a> [616] => <a href="/css/properties/clip/">clip</a> [617] => <a href="/css/properties/clip-path/">clip-path</a> [618] => <a href="/css/properties/color/">color</a> [619] => <a href="/css/properties/color-scheme/">color-scheme</a> [620] => <a href="/css/properties/column-count/">column-count</a> [621] => <a href="/css/properties/column-fill/">column-fill</a> [622] => <a href="/css/properties/column-gap/">column-gap</a> [623] => <a href="/css/properties/column-rule/">column-rule</a> [624] => <a href="/css/properties/column-rule-color/">column-rule-color</a> [625] => <a href="/css/properties/column-rule-style/">column-rule-style</a> [626] => <a href="/css/properties/column-rule-width/">column-rule-width</a> [627] => <a href="/css/properties/column-span/">column-span</a> [628] => <a href="/css/properties/column-width/">column-width</a> [629] => <a href="/css/properties/columns/">columns</a> [630] => <a href="/css/properties/contain/">contain</a> [631] => <a href="/css/properties/content/">content</a> [632] => <a href="/css/properties/content-visibility/">content-visibility</a> [633] => <a href="/css/properties/continue/">continue</a> [634] => <a href="/css/properties/counter-increment/">counter-increment</a> [635] => <a href="/css/properties/counter-reset/">counter-reset</a> [636] => <a href="/css/properties/counter-set/">counter-set</a> [637] => <a href="/css/properties/cursor/">cursor</a> [638] => <a href="/css/properties/direction/">direction</a> [639] => <a href="/css/properties/display/">display</a> [640] => <a href="/css/properties/empty-cells/">empty-cells</a> [641] => <a href="/css/properties/filter/">filter</a> [642] => <a href="/css/properties/flex/">flex</a> [643] => <a href="/css/properties/flex-basis/">flex-basis</a> [644] => <a href="/css/properties/flex-direction/">flex-direction</a> [645] => <a href="/css/properties/flex-flow/">flex-flow</a> [646] => <a href="/css/properties/flex-grow/">flex-grow</a> [647] => <a href="/css/properties/flex-shrink/">flex-shrink</a> [648] => <a href="/css/properties/flex-wrap/">flex-wrap</a> [649] => <a href="/css/properties/float/">float</a> [650] => <a href="/css/properties/font/">font</a> [651] => <a href="/css/properties/font-family/">font-family</a> [652] => <a href="/css/properties/font-feature-settings/">font-feature-settings</a> [653] => <a href="/css/properties/font-kerning/">font-kerning</a> [654] => <a href="/css/properties/font-optical-sizing/">font-optical-sizing</a> [655] => <a href="/css/properties/font-size/">font-size</a> [656] => <a href="/css/properties/font-size-adjust/">font-size-adjust</a> [657] => <a href="/css/properties/font-style/">font-style</a> [658] => <a href="/css/properties/font-variant/">font-variant</a> [659] => <a href="/css/properties/font-variant-caps/">font-variant-caps</a> [660] => <a href="/css/properties/font-variant-numeric/">font-variant-numeric</a> [661] => <a href="/css/properties/font-variant-position/">font-variant-position</a> [662] => <a href="/css/properties/font-variation-settings/">font-variation-settings</a> [663] => <a href="/css/properties/font-weight/">font-weight</a> [664] => <a href="/css/properties/gap/">gap</a> [665] => <a href="/css/properties/grid/">grid</a> [666] => <a href="/css/properties/grid-area/">grid-area</a> [667] => <a href="/css/properties/grid-auto-columns/">grid-auto-columns</a> [668] => <a href="/css/properties/grid-auto-flow/">grid-auto-flow</a> [669] => <a href="/css/properties/grid-auto-rows/">grid-auto-rows</a> [670] => <a href="/css/properties/grid-column/">grid-column</a> [671] => <a href="/css/properties/grid-column-end/">grid-column-end</a> [672] => <a href="/css/properties/grid-column-start/">grid-column-start</a> [673] => <a href="/css/properties/grid-row/">grid-row</a> [674] => <a href="/css/properties/grid-row-end/">grid-row-end</a> [675] => <a href="/css/properties/grid-row-start/">grid-row-start</a> [676] => <a href="/css/properties/grid-template/">grid-template</a> [677] => <a href="/css/properties/grid-template-areas/">grid-template-areas</a> [678] => <a href="/css/properties/grid-template-columns/">grid-template-columns</a> [679] => <a href="/css/properties/grid-template-rows/">grid-template-rows</a> [680] => <a href="/css/properties/height/">height</a> [681] => <a href="/css/properties/hyphens/">hyphens</a> [682] => <a href="/css/properties/inline-size/">inline-size</a> [683] => <a href="/css/properties/inset/">inset</a> [684] => <a href="/css/properties/inset-block/">inset-block</a> [685] => <a href="/css/properties/inset-block-end/">inset-block-end</a> [686] => <a href="/css/properties/inset-block-start/">inset-block-start</a> [687] => <a href="/css/properties/inset-inline/">inset-inline</a> [688] => <a href="/css/properties/inset-inline-end/">inset-inline-end</a> [689] => <a href="/css/properties/inset-inline-start/">inset-inline-start</a> [690] => <a href="/css/properties/isolation/">isolation</a> [691] => <a href="/css/properties/justify-content/">justify-content</a> [692] => <a href="/css/properties/justify-items/">justify-items</a> [693] => <a href="/css/properties/justify-self/">justify-self</a> [694] => <a href="/css/properties/left/">left</a> [695] => <a href="/css/properties/letter-spacing/">letter-spacing</a> [696] => <a href="/css/properties/line-break/">line-break</a> [697] => <a href="/css/properties/line-clamp/">line-clamp</a> [698] => <a href="/css/properties/line-height/">line-height</a> [699] => <a href="/css/properties/list-style/">list-style</a> [700] => <a href="/css/properties/list-style-image/">list-style-image</a> [701] => <a href="/css/properties/list-style-position/">list-style-position</a> [702] => <a href="/css/properties/list-style-type/">list-style-type</a> [703] => <a href="/css/properties/margin/">margin</a> [704] => <a href="/css/properties/margin-block/">margin-block</a> [705] => <a href="/css/properties/margin-block-end/">margin-block-end</a> [706] => <a href="/css/properties/margin-block-start/">margin-block-start</a> [707] => <a href="/css/properties/margin-bottom/">margin-bottom</a> [708] => <a href="/css/properties/margin-inline/">margin-inline</a> [709] => <a href="/css/properties/margin-inline-end/">margin-inline-end</a> [710] => <a href="/css/properties/margin-inline-start/">margin-inline-start</a> [711] => <a href="/css/properties/margin-left/">margin-left</a> [712] => <a href="/css/properties/margin-right/">margin-right</a> [713] => <a href="/css/properties/margin-top/">margin-top</a> [714] => <a href="/css/properties/mask/">mask</a> [715] => <a href="/css/properties/mask-border/">mask-border</a> [716] => <a href="/css/properties/mask-border-mode/">mask-border-mode</a> [717] => <a href="/css/properties/mask-border-outset/">mask-border-outset</a> [718] => <a href="/css/properties/mask-border-repeat/">mask-border-repeat</a> [719] => <a href="/css/properties/mask-border-slice/">mask-border-slice</a> [720] => <a href="/css/properties/mask-border-source/">mask-border-source</a> [721] => <a href="/css/properties/mask-border-width/">mask-border-width</a> [722] => <a href="/css/properties/mask-clip/">mask-clip</a> [723] => <a href="/css/properties/mask-composite/">mask-composite</a> [724] => <a href="/css/properties/mask-image/">mask-image</a> [725] => <a href="/css/properties/mask-mode/">mask-mode</a> [726] => <a href="/css/properties/mask-origin/">mask-origin</a> [727] => <a href="/css/properties/mask-position/">mask-position</a> [728] => <a href="/css/properties/mask-repeat/">mask-repeat</a> [729] => <a href="/css/properties/mask-size/">mask-size</a> [730] => <a href="/css/properties/mask-type/">mask-type</a> [731] => <a href="/css/properties/max-block-size/">max-block-size</a> [732] => <a href="/css/properties/max-height/">max-height</a> [733] => <a href="/css/properties/max-inline-size/">max-inline-size</a> [734] => <a href="/css/properties/max-lines/">max-lines</a> [735] => <a href="/css/properties/max-width/">max-width</a> [736] => <a href="/css/properties/min-block-size/">min-block-size</a> [737] => <a href="/css/properties/min-height/">min-height</a> [738] => <a href="/css/properties/min-inline-size/">min-inline-size</a> [739] => <a href="/css/properties/min-width/">min-width</a> [740] => <a href="/css/properties/mix-blend-mode/">mix-blend-mode</a> [741] => <a href="/css/properties/object-fit/">object-fit</a> [742] => <a href="/css/properties/object-position/">object-position</a> [743] => <a href="/css/properties/opacity/">opacity</a> [744] => <a href="/css/properties/orphans/">orphans</a> [745] => <a href="/css/properties/outline/">outline</a> [746] => <a href="/css/properties/outline-color/">outline-color</a> [747] => <a href="/css/properties/outline-style/">outline-style</a> [748] => <a href="/css/properties/outline-width/">outline-width</a> [749] => <a href="/css/properties/overflow/">overflow</a> [750] => <a href="/css/properties/overflow-wrap/">overflow-wrap</a> [751] => <a href="/css/properties/overflow-x/">overflow-x</a> [752] => <a href="/css/properties/overflow-y/">overflow-y</a> [753] => <a href="/css/properties/padding/">padding</a> [754] => <a href="/css/properties/padding-bottom/">padding-bottom</a> [755] => <a href="/css/properties/padding-left/">padding-left</a> [756] => <a href="/css/properties/padding-right/">padding-right</a> [757] => <a href="/css/properties/padding-top/">padding-top</a> [758] => <a href="/css/properties/paint-order/">paint-order</a> [759] => <a href="/css/properties/perspective/">perspective</a> [760] => <a href="/css/properties/perspective-origin/">perspective-origin</a> [761] => <a href="/css/properties/place-content/">place-content</a> [762] => <a href="/css/properties/place-items/">place-items</a> [763] => <a href="/css/properties/place-self/">place-self</a> [764] => <a href="/css/properties/pointer-events/">pointer-events</a> [765] => <a href="/css/properties/position/">position</a> [766] => <a href="/css/properties/print-color-adjust/">print-color-adjust</a> [767] => <a href="/css/properties/quotes/">quotes</a> [768] => <a href="/css/properties/resize/">resize</a> [769] => <a href="/css/properties/right/">right</a> [770] => <a href="/css/properties/rotate/">rotate</a> [771] => <a href="/css/properties/row-gap/">row-gap</a> [772] => <a href="/css/properties/scale/">scale</a> [773] => <a href="/css/properties/scroll-behavior/">scroll-behavior</a> [774] => <a href="/css/properties/scroll-margin/">scroll-margin</a> [775] => <a href="/css/properties/scroll-margin-block/">scroll-margin-block</a> [776] => <a href="/css/properties/scroll-margin-block-end/">scroll-margin-block-end</a> [777] => <a href="/css/properties/scroll-margin-block-start/">scroll-margin-block-start</a> [778] => <a href="/css/properties/scroll-margin-bottom/">scroll-margin-bottom</a> [779] => <a href="/css/properties/scroll-margin-inline/">scroll-margin-inline</a> [780] => <a href="/css/properties/scroll-margin-inline-end/">scroll-margin-inline-end</a> [781] => <a href="/css/properties/scroll-margin-inline-start/">scroll-margin-inline-start</a> [782] => <a href="/css/properties/scroll-margin-left/">scroll-margin-left</a> [783] => <a href="/css/properties/scroll-margin-right/">scroll-margin-right</a> [784] => <a href="/css/properties/scroll-margin-top/">scroll-margin-top</a> [785] => <a href="/css/properties/scroll-padding/">scroll-padding</a> [786] => <a href="/css/properties/scroll-padding-block/">scroll-padding-block</a> [787] => <a href="/css/properties/scroll-padding-block-end/">scroll-padding-block-end</a> [788] => <a href="/css/properties/scroll-padding-block-start/">scroll-padding-block-start</a> [789] => <a href="/css/properties/scroll-padding-bottom/">scroll-padding-bottom</a> [790] => <a href="/css/properties/scroll-padding-inline/">scroll-padding-inline</a> [791] => <a href="/css/properties/scroll-padding-inline-end/">scroll-padding-inline-end</a> [792] => <a href="/css/properties/scroll-padding-inline-start/">scroll-padding-inline-start</a> [793] => <a href="/css/properties/scroll-padding-left/">scroll-padding-left</a> [794] => <a href="/css/properties/scroll-padding-right/">scroll-padding-right</a> [795] => <a href="/css/properties/scroll-padding-top/">scroll-padding-top</a> [796] => <a href="/css/properties/scroll-snap-align/">scroll-snap-align</a> [797] => <a href="/css/properties/scroll-snap-stop/">scroll-snap-stop</a> [798] => <a href="/css/properties/scroll-snap-type/">scroll-snap-type</a> [799] => <a href="/css/properties/scrollbar-color/">scrollbar-color</a> [800] => <a href="/css/properties/scrollbar-width/">scrollbar-width</a> [801] => <a href="/css/properties/shape-image-threshold/">shape-image-threshold</a> [802] => <a href="/css/properties/shape-margin/">shape-margin</a> [803] => <a href="/css/properties/shape-outside/">shape-outside</a> [804] => <a href="/css/properties/tab-size/">tab-size</a> [805] => <a href="/css/properties/table-layout/">table-layout</a> [806] => <a href="/css/properties/text-align/">text-align</a> [807] => <a href="/css/properties/text-align-last/">text-align-last</a> [808] => <a href="/css/properties/text-combine-upright/">text-combine-upright</a> [809] => <a href="/css/properties/text-decoration/">text-decoration</a> [810] => <a href="/css/properties/text-decoration-color/">text-decoration-color</a> [811] => <a href="/css/properties/text-decoration-line/">text-decoration-line</a> [812] => <a href="/css/properties/text-decoration-skip-ink/">text-decoration-skip-ink</a> [813] => <a href="/css/properties/text-decoration-style/">text-decoration-style</a> [814] => <a href="/css/properties/text-decoration-thickness/">text-decoration-thickness</a> [815] => <a href="/css/properties/text-emphasis/">text-emphasis</a> [816] => <a href="/css/properties/text-emphasis-color/">text-emphasis-color</a> [817] => <a href="/css/properties/text-emphasis-position/">text-emphasis-position</a> [818] => <a href="/css/properties/text-emphasis-style/">text-emphasis-style</a> [819] => <a href="/css/properties/text-indent/">text-indent</a> [820] => <a href="/css/properties/text-justify/">text-justify</a> [821] => <a href="/css/properties/text-orientation/">text-orientation</a> [822] => <a href="/css/properties/text-overflow/">text-overflow</a> [823] => <a href="/css/properties/text-shadow/">text-shadow</a> [824] => <a href="/css/properties/text-transform/">text-transform</a> [825] => <a href="/css/properties/text-underline-offset/">text-underline-offset</a> [826] => <a href="/css/properties/text-underline-position/">text-underline-position</a> [827] => <a href="/css/properties/top/">top</a> [828] => <a href="/css/properties/transform/">transform</a> [829] => <a href="/css/properties/transform-box/">transform-box</a> [830] => <a href="/css/properties/transform-origin/">transform-origin</a> [831] => <a href="/css/properties/transform-style/">transform-style</a> [832] => <a href="/css/properties/transition/">transition</a> [833] => <a href="/css/properties/transition-delay/">transition-delay</a> [834] => <a href="/css/properties/transition-duration/">transition-duration</a> [835] => <a href="/css/properties/transition-property/">transition-property</a> [836] => <a href="/css/properties/transition-timing-function/">transition-timing-function</a> [837] => <a href="/css/properties/translate/">translate</a> [838] => <a href="/css/properties/unicode-bidi/">unicode-bidi</a> [839] => <a href="/css/properties/vertical-align/">vertical-align</a> [840] => <a href="/css/properties/visibility/">visibility</a> [841] => <a href="/css/properties/white-space/">white-space</a> [842] => <a href="/css/properties/widows/">widows</a> [843] => <a href="/css/properties/width/">width</a> [844] => <a href="/css/properties/word-break/">word-break</a> [845] => <a href="/css/properties/word-spacing/">word-spacing</a> [846] => <a href="/css/properties/word-wrap/">word-wrap</a> [847] => <a href="/css/properties/writing-mode/">writing-mode</a> [848] => <a href="/css/properties/z-index/">z-index</a> [849] => </div> [850] => <h3>Pseudo-Classes</h3> [851] => <div class="nav-content section"> [852] => <a href="/css/pseudo-classes/active/">active</a> [853] => <a href="/css/pseudo-classes/any-link/">any-link</a> [854] => <a href="/css/pseudo-classes/blank/">blank</a> [855] => <a href="/css/pseudo-classes/checked/">checked</a> [856] => <a href="/css/pseudo-classes/default/">default</a> [857] => <a href="/css/pseudo-classes/dir/">dir</a> [858] => <a href="/css/pseudo-classes/disabled/">disabled</a> [859] => <a href="/css/pseudo-classes/empty/">empty</a> [860] => <a href="/css/pseudo-classes/enabled/">enabled</a> [861] => <a href="/css/pseudo-classes/first-child/">first-child</a> [862] => <a href="/css/pseudo-classes/first-of-type/">first-of-type</a> [863] => <a href="/css/pseudo-classes/focus/">focus</a> [864] => <a href="/css/pseudo-classes/focus-within/">focus-within</a> [865] => <a href="/css/pseudo-classes/fullscreen/">fullscreen</a> [866] => <a href="/css/pseudo-classes/hover/">hover</a> [867] => <a href="/css/pseudo-classes/in-range/">in-range</a> [868] => <a href="/css/pseudo-classes/indeterminate/">indeterminate</a> [869] => <a href="/css/pseudo-classes/invalid/">invalid</a> [870] => <a href="/css/pseudo-classes/lang/">lang</a> [871] => <a href="/css/pseudo-classes/last-child/">last-child</a> [872] => <a href="/css/pseudo-classes/last-of-type/">last-of-type</a> [873] => <a href="/css/pseudo-classes/link/">link</a> [874] => <a href="/css/pseudo-classes/local-link/">local-link</a> [875] => <a href="/css/pseudo-classes/not/">not</a> [876] => <a href="/css/pseudo-classes/nth-child/">nth-child</a> [877] => <a href="/css/pseudo-classes/nth-col/">nth-col</a> [878] => <a href="/css/pseudo-classes/nth-last-child/">nth-last-child</a> [879] => <a href="/css/pseudo-classes/nth-last-col/">nth-last-col</a> [880] => <a href="/css/pseudo-classes/nth-last-of-type/">nth-last-of-type</a> [881] => <a href="/css/pseudo-classes/nth-of-type/">nth-of-type</a> [882] => <a href="/css/pseudo-classes/only-child/">only-child</a> [883] => <a href="/css/pseudo-classes/only-of-type/">only-of-type</a> [884] => <a href="/css/pseudo-classes/optional/">optional</a> [885] => <a href="/css/pseudo-classes/out-of-range/">out-of-range</a> [886] => <a href="/css/pseudo-classes/placeholder-shown/">placeholder-shown</a> [887] => <a href="/css/pseudo-classes/read-only/">read-only</a> [888] => <a href="/css/pseudo-classes/read-write/">read-write</a> [889] => <a href="/css/pseudo-classes/required/">required</a> [890] => <a href="/css/pseudo-classes/root/">root</a> [891] => <a href="/css/pseudo-classes/scope/">scope</a> [892] => <a href="/css/pseudo-classes/target/">target</a> [893] => <a href="/css/pseudo-classes/valid/">valid</a> [894] => <a href="/css/pseudo-classes/visited/">visited</a> [895] => </div> [896] => <h3>Pseudo-Elements</h3> [897] => <div class="nav-content section"> [898] => <a href="/css/pseudo-elements/after/">after</a> [899] => <a href="/css/pseudo-elements/before/">before</a> [900] => <a href="/css/pseudo-elements/first-letter/">first-letter</a> [901] => <a href="/css/pseudo-elements/first-line/">first-line</a> [902] => <a href="/css/pseudo-elements/marker/">marker</a> [903] => <a href="/css/pseudo-elements/placeholder/">placeholder</a> [904] => <a href="/css/pseudo-elements/selection/">selection</a> [905] => </div> [906] => <h3>Units</h3> [907] => <div class="nav-content section"> [908] => <a href="/css/units/ch/">ch</a> [909] => <a href="/css/units/cm/">cm</a> [910] => <a href="/css/units/deg/">deg</a> [911] => <a href="/css/units/dpcm/">dpcm</a> [912] => <a href="/css/units/dpi/">dpi</a> [913] => <a href="/css/units/dppx/">dppx</a> [914] => <a href="/css/units/em/">em</a> [915] => <a href="/css/units/ex/">ex</a> [916] => <a href="/css/units/grad/">grad</a> [917] => <a href="/css/units/in/">in</a> [918] => <a href="/css/units/mm/">mm</a> [919] => <a href="/css/units/ms/">ms</a> [920] => <a href="/css/units/pc/">pc</a> [921] => <a href="/css/units/pt/">pt</a> [922] => <a href="/css/units/px/">px</a> [923] => <a href="/css/units/q/">Q</a> [924] => <a href="/css/units/rad/">rad</a> [925] => <a href="/css/units/rem/">rem</a> [926] => <a href="/css/units/s/">s</a> [927] => <a href="/css/units/turn/">turn</a> [928] => <a href="/css/units/vh/">vh</a> [929] => <a href="/css/units/vmax/">vmax</a> [930] => <a href="/css/units/vmin/">vmin</a> [931] => <a href="/css/units/vw/">vw</a> [932] => </div> [933] => </div> [934] => <div class="nav-h1"> [935] => <a id="nav-js-switch">JS</a> [936] => </div> [937] => <div id="nav-js"> [938] => <h3>Overview</h3> [939] => <div class="nav-content section"> [940] => <a href="/js/">Overview</a> [941] => </div> [942] => <h3>Declarations</h3> [943] => <div class="nav-content section"> [944] => <a href="/js/const/">const</a> [945] => <a href="/js/let/">let</a> [946] => <a href="/js/var/">var</a> [947] => </div> [948] => <h3>Conditional Statements</h3> [949] => <div class="nav-content section"> [950] => <a href="/js/if/">if</a> [951] => <a href="/js/else/">else</a> [952] => <a href="/js/else-if/">else if</a> [953] => <a href="/js/switch/">switch</a> [954] => <a href="/js/try-catch/">try catch</a> [955] => </div> [956] => <h3>Loops</h3> [957] => <div class="nav-content section"> [958] => <a href="/js/do-while/">do while</a> [959] => <a href="/js/for/">for</a> [960] => <a href="/js/for-in/">for in</a> [961] => <a href="/js/for-of/">for of</a> [962] => <a href="/js/while/">while</a> [963] => </div> [964] => <h3>AbortController</h3> [965] => <div class="nav-content section"> [966] => <a href="/js/abort/">abort</a> [967] => <a href="/js/abortcontroller/">AbortController</a> [968] => <a href="/js/signal/">signal</a> [969] => </div> [970] => <h3>ChildNode</h3> [971] => <div class="nav-content section"> [972] => <a href="/js/after/">after</a> [973] => <a href="/js/before/">before</a> [974] => <a href="/js/remove/">remove</a> [975] => <a href="/js/replacewith/">replaceWith</a> [976] => </div> [977] => <h3>CustomEvent</h3> [978] => <div class="nav-content section"> [979] => <a href="/js/customevent/">CustomEvent</a> [980] => <a href="/js/detail/">detail</a> [981] => </div> [982] => <h3>Event</h3> [983] => <div class="nav-content section"> [984] => <a href="/js/bubbles/">bubbles</a> [985] => <a href="/js/cancelable/">cancelable</a> [986] => <a href="/js/composed/">composed</a> [987] => <a href="/js/composedpath/">composedPath</a> [988] => <a href="/js/currenttarget/">currentTarget</a> [989] => <a href="/js/defaultprevented/">defaultPrevented</a> [990] => <a href="/js/event/">Event</a> [991] => <a href="/js/eventphase/">eventPhase</a> [992] => <a href="/js/istrusted/">isTrusted</a> [993] => <a href="/js/preventdefault/">preventDefault</a> [994] => <a href="/js/stopimmediatepropagation/">stopImmediatePropagation</a> [995] => <a href="/js/stoppropagation/">stopPropagation</a> [996] => <a href="/js/target/">target</a> [997] => <a href="/js/timestamp/">timeStamp</a> [998] => <a href="/js/type/">type</a> [999] => </div> [1000] => <h3>EventTarget</h3> [1001] => <div class="nav-content section"> [1002] => <a href="/js/addeventlistener/">addEventListener</a> [1003] => <a href="/js/dispatchevent/">dispatchEvent</a> [1004] => <a href="/js/eventtarget/">EventTarget</a> [1005] => <a href="/js/removeeventlistener/">removeEventListener</a> [1006] => </div> [1007] => <h3>HTMLCollection</h3> [1008] => <div class="nav-content section"> [1009] => <a href="/js/item/">item</a> [1010] => <a href="/js/length/">length</a> [1011] => <a href="/js/nameditem/">namedItem</a> [1012] => </div> [1013] => <h3>NodeList</h3> [1014] => <div class="nav-content section"> [1015] => <a href="/js/item/">item</a> [1016] => <a href="/js/length/">length</a> [1017] => </div> [1018] => <h3>NonDocumentTypeChildNode</h3> [1019] => <div class="nav-content section"> [1020] => <a href="/js/nextelementsibling/">nextElementSibling</a> [1021] => <a href="/js/previouselementsibling/">previousElementSibling</a> [1022] => </div> [1023] => <h3>ParentNode</h3> [1024] => <div class="nav-content section"> [1025] => <a href="/js/append/">append</a> [1026] => <a href="/js/children/">children</a> [1027] => <a href="/js/firstelementchild/">firstElementChild</a> [1028] => <a href="/js/lastelementchild/">lastElementChild</a> [1029] => <a href="/js/prepend/">prepend</a> [1030] => <a href="/js/queryselector/">querySelector</a> [1031] => <a href="/js/queryselectorall/">querySelectorAll</a> [1032] => <a href="/js/replacechildren/">replaceChildren</a> [1033] => </div> [1034] => <h3>Other</h3> [1035] => <div class="nav-content section"> [1036] => <a href="/js/array/">Array</a> [1037] => <a href="/js/comments/">Comments</a> [1038] => <a href="/js/enable/">Enable</a> [1039] => <a href="/js/functions/">Functions</a> [1040] => <a href="/js/alert/">alert</a> [1041] => <a href="/js/confirm/">confirm</a> [1042] => <a href="/js/createcontextualfragment/">createContextualFragment</a> [1043] => <a href="/js/date/">Date</a> [1044] => <a href="/js/getelementbyid/">getElementById</a> [1045] => <a href="/js/getelementsbyclassname/">getElementsByClassName</a> [1046] => <a href="/js/getelementsbytagname/">getElementsByTagName</a> [1047] => <a href="/js/getelementsbytagnamens/">getElementsByTagNameNS</a> [1048] => <a href="/js/infinity/">Infinity</a> [1049] => <a href="/js/innerhtml/">innerHTML</a> [1050] => <a href="/js/insertadjacenthtml/">insertAdjacentHTML</a> [1051] => <a href="/js/outerhtml/">outerHTML</a> [1052] => <a href="/js/print/">print</a> [1053] => <a href="/js/prompt/">prompt</a> [1054] => </div> [1055] => </div> [1056] => <div class="nav-h1"> [1057] => <a id="nav-php-switch">PHP</a> [1058] => </div> [1059] => <div id="nav-php"> [1060] => <h3>Overview</h3> [1061] => <div class="nav-content section"> [1062] => <a href="/php/">Overview</a> [1063] => </div> [1064] => <h3>Array</h3> [1065] => <div class="nav-content section"> [1066] => <a href="/php/functions/array/">array</a> [1067] => <a href="/php/functions/array_change_key_case/">array_change_key_case</a> [1068] => <a href="/php/functions/array_chunk/">array_chunk</a> [1069] => <a href="/php/functions/array_column/">array_column</a> [1070] => <a href="/php/functions/array_combine/">array_combine</a> [1071] => <a href="/php/functions/array_count_values/">array_count_values</a> [1072] => <a href="/php/functions/array_diff/">array_diff</a> [1073] => <a href="/php/functions/array_diff_assoc/">array_diff_assoc</a> [1074] => <a href="/php/functions/array_diff_key/">array_diff_key</a> [1075] => <a href="/php/functions/array_diff_uassoc/">array_diff_uassoc</a> [1076] => <a href="/php/functions/array_diff_ukey/">array_diff_ukey</a> [1077] => <a href="/php/functions/array_fill/">array_fill</a> [1078] => <a href="/php/functions/array_fill_keys/">array_fill_keys</a> [1079] => <a href="/php/functions/array_filter/">array_filter</a> [1080] => <a href="/php/functions/array_flip/">array_flip</a> [1081] => <a href="/php/functions/array_intersect/">array_intersect</a> [1082] => <a href="/php/functions/array_intersect_assoc/">array_intersect_assoc</a> [1083] => <a href="/php/functions/array_intersect_key/">array_intersect_key</a> [1084] => <a href="/php/functions/array_intersect_uassoc/">array_intersect_uassoc</a> [1085] => <a href="/php/functions/array_intersect_ukey/">array_intersect_ukey</a> [1086] => <a href="/php/functions/array_key_exists/">array_key_exists</a> [1087] => <a href="/php/functions/array_key_first/">array_key_first</a> [1088] => <a href="/php/functions/array_key_last/">array_key_last</a> [1089] => <a href="/php/functions/array_keys/">array_keys</a> [1090] => <a href="/php/functions/array_map/">array_map</a> [1091] => <a href="/php/functions/array_merge/">array_merge</a> [1092] => <a href="/php/functions/array_merge_recursive/">array_merge_recursive</a> [1093] => <a href="/php/functions/array_multisort/">array_multisort</a> [1094] => <a href="/php/functions/array_pad/">array_pad</a> [1095] => <a href="/php/functions/array_pop/">array_pop</a> [1096] => <a href="/php/functions/array_product/">array_product</a> [1097] => <a href="/php/functions/array_push/">array_push</a> [1098] => <a href="/php/functions/array_rand/">array_rand</a> [1099] => <a href="/php/functions/array_reduce/">array_reduce</a> [1100] => <a href="/php/functions/array_replace/">array_replace</a> [1101] => <a href="/php/functions/array_replace_recursive/">array_replace_recursive</a> [1102] => <a href="/php/functions/array_reverse/">array_reverse</a> [1103] => <a href="/php/functions/array_search/">array_search</a> [1104] => <a href="/php/functions/array_shift/">array_shift</a> [1105] => <a href="/php/functions/array_slice/">array_slice</a> [1106] => <a href="/php/functions/array_splice/">array_splice</a> [1107] => <a href="/php/functions/array_sum/">array_sum</a> [1108] => <a href="/php/functions/array_udiff/">array_udiff</a> [1109] => <a href="/php/functions/array_udiff_assoc/">array_udiff_assoc</a> [1110] => <a href="/php/functions/array_udiff_uassoc/">array_udiff_uassoc</a> [1111] => <a href="/php/functions/array_uintersect/">array_uintersect</a> [1112] => <a href="/php/functions/array_uintersect_assoc/">array_uintersect_assoc</a> [1113] => <a href="/php/functions/array_uintersect_uassoc/">array_uintersect_uassoc</a> [1114] => <a href="/php/functions/array_unique/">array_unique</a> [1115] => <a href="/php/functions/array_unshift/">array_unshift</a> [1116] => <a href="/php/functions/array_values/">array_values</a> [1117] => <a href="/php/functions/array_walk/">array_walk</a> [1118] => <a href="/php/functions/array_walk_recursive/">array_walk_recursive</a> [1119] => <a href="/php/functions/arsort/">arsort</a> [1120] => <a href="/php/functions/asort/">asort</a> [1121] => <a href="/php/functions/compact/">compact</a> [1122] => <a href="/php/functions/count/">count</a> [1123] => <a href="/php/functions/current/">current</a> [1124] => <a href="/php/functions/end/">end</a> [1125] => <a href="/php/functions/extract/">extract</a> [1126] => <a href="/php/functions/in_array/">in_array</a> [1127] => <a href="/php/functions/key/">key</a> [1128] => <a href="/php/functions/key_exists/">key_exists</a> [1129] => <a href="/php/functions/krsort/">krsort</a> [1130] => <a href="/php/functions/ksort/">ksort</a> [1131] => <a href="/php/functions/list/">list</a> [1132] => <a href="/php/functions/natcasesort/">natcasesort</a> [1133] => <a href="/php/functions/natsort/">natsort</a> [1134] => <a href="/php/functions/next/">next</a> [1135] => <a href="/php/functions/pos/">pos</a> [1136] => <a href="/php/functions/prev/">prev</a> [1137] => <a href="/php/functions/range/">range</a> [1138] => <a href="/php/functions/reset/">reset</a> [1139] => <a href="/php/functions/rsort/">rsort</a> [1140] => <a href="/php/functions/shuffle/">shuffle</a> [1141] => <a href="/php/functions/sizeof/">sizeof</a> [1142] => <a href="/php/functions/sort/">sort</a> [1143] => <a href="/php/functions/uasort/">uasort</a> [1144] => <a href="/php/functions/uksort/">uksort</a> [1145] => <a href="/php/functions/usort/">usort</a> [1146] => </div> [1147] => <h3>Calendar</h3> [1148] => <div class="nav-content section"> [1149] => <a href="/php/functions/cal_days_in_month/">cal_days_in_month</a> [1150] => <a href="/php/functions/cal_from_jd/">cal_from_jd</a> [1151] => <a href="/php/functions/cal_info/">cal_info</a> [1152] => <a href="/php/functions/cal_to_jd/">cal_to_jd</a> [1153] => <a href="/php/functions/easter_date/">easter_date</a> [1154] => <a href="/php/functions/easter_days/">easter_days</a> [1155] => <a href="/php/functions/frenchtojd/">frenchtojd</a> [1156] => <a href="/php/functions/gregoriantojd/">gregoriantojd</a> [1157] => <a href="/php/functions/jddayofweek/">jddayofweek</a> [1158] => <a href="/php/functions/jdmonthname/">jdmonthname</a> [1159] => <a href="/php/functions/jdtofrench/">jdtofrench</a> [1160] => <a href="/php/functions/jdtogregorian/">jdtogregorian</a> [1161] => <a href="/php/functions/jdtojewish/">jdtojewish</a> [1162] => <a href="/php/functions/jdtojulian/">jdtojulian</a> [1163] => <a href="/php/functions/jdtounix/">jdtounix</a> [1164] => <a href="/php/functions/jewishtojd/">jewishtojd</a> [1165] => <a href="/php/functions/juliantojd/">juliantojd</a> [1166] => <a href="/php/functions/unixtojd/">unixtojd</a> [1167] => </div> [1168] => <h3>Class / Object</h3> [1169] => <div class="nav-content section"> [1170] => <a href="/php/functions/class_alias/">class_alias</a> [1171] => <a href="/php/functions/class_exists/">class_exists</a> [1172] => <a href="/php/functions/get_called_class/">get_called_class</a> [1173] => <a href="/php/functions/get_class_methods/">get_class_methods</a> [1174] => <a href="/php/functions/get_class/">get_class</a> [1175] => <a href="/php/functions/get_class_vars/">get_class_vars</a> [1176] => <a href="/php/functions/get_declared_classes/">get_declared_classes</a> [1177] => <a href="/php/functions/get_declared_interfaces/">get_declared_interfaces</a> [1178] => <a href="/php/functions/get_declared_traits/">get_declared_traits</a> [1179] => <a href="/php/functions/get_object_vars/">get_object_vars</a> [1180] => <a href="/php/functions/get_parent_class/">get_parent_class</a> [1181] => <a href="/php/functions/interface_exists/">interface_exists</a> [1182] => <a href="/php/functions/is_a/">is_a</a> [1183] => <a href="/php/functions/is_subclass_of/">is_subclass_of</a> [1184] => <a href="/php/functions/method_exists/">method_exists</a> [1185] => <a href="/php/functions/property_exists/">property_exists</a> [1186] => <a href="/php/functions/trait_exists/">trait_exists</a> [1187] => </div> [1188] => <h3>CSPRNG</h3> [1189] => <div class="nav-content section"> [1190] => <a href="/php/functions/random_bytes/">random_bytes</a> [1191] => <a href="/php/functions/random_int/">random_int</a> [1192] => </div> [1193] => <h3>Ctype</h3> [1194] => <div class="nav-content section"> [1195] => <a href="/php/functions/ctype_alnum/">ctype_alnum</a> [1196] => <a href="/php/functions/ctype_alpha/">ctype_alpha</a> [1197] => <a href="/php/functions/ctype_cntrl/">ctype_cntrl</a> [1198] => <a href="/php/functions/ctype_digit/">ctype_digit</a> [1199] => <a href="/php/functions/ctype_graph/">ctype_graph</a> [1200] => <a href="/php/functions/ctype_lower/">ctype_lower</a> [1201] => <a href="/php/functions/ctype_print/">ctype_print</a> [1202] => <a href="/php/functions/ctype_punct/">ctype_punct</a> [1203] => <a href="/php/functions/ctype_space/">ctype_space</a> [1204] => <a href="/php/functions/ctype_upper/">ctype_upper</a> [1205] => <a href="/php/functions/ctype_xdigit/">ctype_xdigit</a> [1206] => </div> [1207] => <h3>cURL</h3> [1208] => <div class="nav-content section"> [1209] => <a href="/php/functions/curl_close/">curl_close</a> [1210] => <a href="/php/functions/curl_copy_handle/">curl_copy_handle</a> [1211] => <a href="/php/functions/curl_errno/">curl_errno</a> [1212] => <a href="/php/functions/curl_error/">curl_error</a> [1213] => <a href="/php/functions/curl_escape/">curl_escape</a> [1214] => <a href="/php/functions/curl_exec/">curl_exec</a> [1215] => <a href="/php/functions/curl_file_create/">curl_file_create</a> [1216] => <a href="/php/functions/curl_getinfo/">curl_getinfo</a> [1217] => <a href="/php/functions/curl_init/">curl_init</a> [1218] => <a href="/php/functions/curl_multi_add_handle/">curl_multi_add_handle</a> [1219] => <a href="/php/functions/curl_multi_close/">curl_multi_close</a> [1220] => <a href="/php/functions/curl_multi_errno/">curl_multi_errno</a> [1221] => <a href="/php/functions/curl_multi_exec/">curl_multi_exec</a> [1222] => <a href="/php/functions/curl_multi_getcontent/">curl_multi_getcontent</a> [1223] => <a href="/php/functions/curl_multi_info_read/">curl_multi_info_read</a> [1224] => <a href="/php/functions/curl_multi_init/">curl_multi_init</a> [1225] => <a href="/php/functions/curl_multi_remove_handle/">curl_multi_remove_handle</a> [1226] => <a href="/php/functions/curl_multi_select/">curl_multi_select</a> [1227] => <a href="/php/functions/curl_multi_setopt/">curl_multi_setopt</a> [1228] => <a href="/php/functions/curl_multi_strerror/">curl_multi_strerror</a> [1229] => <a href="/php/functions/curl_pause/">curl_pause</a> [1230] => <a href="/php/functions/curl_reset/">curl_reset</a> [1231] => <a href="/php/functions/curl_setopt/">curl_setopt</a> [1232] => <a href="/php/functions/curl_setopt_array/">curl_setopt_array</a> [1233] => <a href="/php/functions/curl_share_close/">curl_share_close</a> [1234] => <a href="/php/functions/curl_share_errno/">curl_share_errno</a> [1235] => <a href="/php/functions/curl_share_init/">curl_share_init</a> [1236] => <a href="/php/functions/curl_share_setopt/">curl_share_setopt</a> [1237] => <a href="/php/functions/curl_share_strerror/">curl_share_strerror</a> [1238] => <a href="/php/functions/curl_strerror/">curl_strerror</a> [1239] => <a href="/php/functions/curl_unescape/">curl_unescape</a> [1240] => <a href="/php/functions/curl_version/">curl_version</a> [1241] => </div> [1242] => <h3>Date / Time</h3> [1243] => <div class="nav-content section"> [1244] => <a href="/php/functions/checkdate/">checkdate</a> [1245] => <a href="/php/functions/date/">date</a> [1246] => <a href="/php/functions/date_add/">date_add</a> [1247] => <a href="/php/functions/date_create/">date_create</a> [1248] => <a href="/php/functions/date_create_from_format/">date_create_from_format</a> [1249] => <a href="/php/functions/date_create_immutable/">date_create_immutable</a> [1250] => <a href="/php/functions/date_create_immutable_from_format/">date_create_immutable_from_format</a> [1251] => <a href="/php/functions/date_date_set/">date_date_set</a> [1252] => <a href="/php/functions/date_default_timezone_get/">date_default_timezone_get</a> [1253] => <a href="/php/functions/date_default_timezone_set/">date_default_timezone_set</a> [1254] => <a href="/php/functions/date_diff/">date_diff</a> [1255] => <a href="/php/functions/date_format/">date_format</a> [1256] => <a href="/php/functions/date_get_last_errors/">date_get_last_errors</a> [1257] => <a href="/php/functions/date_interval_create_from_date_string/">date_interval_create_from_date_string</a> [1258] => <a href="/php/functions/date_interval_format/">date_interval_format</a> [1259] => <a href="/php/functions/date_isodate_set/">date_isodate_set</a> [1260] => <a href="/php/functions/date_modify/">date_modify</a> [1261] => <a href="/php/functions/date_offset_get/">date_offset_get</a> [1262] => <a href="/php/functions/date_parse/">date_parse</a> [1263] => <a href="/php/functions/date_parse_from_format/">date_parse_from_format</a> [1264] => <a href="/php/functions/date_sub/">date_sub</a> [1265] => <a href="/php/functions/date_sun_info/">date_sun_info</a> [1266] => <a href="/php/functions/date_sunrise/">date_sunrise</a> [1267] => <a href="/php/functions/date_sunset/">date_sunset</a> [1268] => <a href="/php/functions/date_time_set/">date_time_set</a> [1269] => <a href="/php/functions/date_timestamp_get/">date_timestamp_get</a> [1270] => <a href="/php/functions/date_timestamp_set/">date_timestamp_set</a> [1271] => <a href="/php/functions/date_timezone_get/">date_timezone_get</a> [1272] => <a href="/php/functions/date_timezone_set/">date_timezone_set</a> [1273] => <a href="/php/functions/getdate/">getdate</a> [1274] => <a href="/php/functions/gettimeofday/">gettimeofday</a> [1275] => <a href="/php/functions/gmdate/">gmdate</a> [1276] => <a href="/php/functions/gmmktime/">gmmktime</a> [1277] => <a href="/php/functions/gmstrftime/">gmstrftime</a> [1278] => <a href="/php/functions/idate/">idate</a> [1279] => <a href="/php/functions/localtime/">localtime</a> [1280] => <a href="/php/functions/microtime/">microtime</a> [1281] => <a href="/php/functions/mktime/">mktime</a> [1282] => <a href="/php/functions/strftime/">strftime</a> [1283] => <a href="/php/functions/strptime/">strptime</a> [1284] => <a href="/php/functions/strtotime/">strtotime</a> [1285] => <a href="/php/functions/time/">time</a> [1286] => <a href="/php/functions/timezone_abbreviations_list/">timezone_abbreviations_list</a> [1287] => <a href="/php/functions/timezone_identifiers_list/">timezone_identifiers_list</a> [1288] => <a href="/php/functions/timezone_location_get/">timezone_location_get</a> [1289] => <a href="/php/functions/timezone_name_from_abbr/">timezone_name_from_abbr</a> [1290] => <a href="/php/functions/timezone_name_get/">timezone_name_get</a> [1291] => <a href="/php/functions/timezone_offset_get/">timezone_offset_get</a> [1292] => <a href="/php/functions/timezone_open/">timezone_open</a> [1293] => <a href="/php/functions/timezone_transitions_get/">timezone_transitions_get</a> [1294] => <a href="/php/functions/timezone_version_get/">timezone_version_get</a> [1295] => </div> [1296] => <h3>Error Handling</h3> [1297] => <div class="nav-content section"> [1298] => <a href="/php/functions/debug_backtrace/">debug_backtrace</a> [1299] => <a href="/php/functions/debug_print_backtrace/">debug_print_backtrace</a> [1300] => <a href="/php/functions/error_clear_last/">error_clear_last</a> [1301] => <a href="/php/functions/error_get_last/">error_get_last</a> [1302] => <a href="/php/functions/error_log/">error_log</a> [1303] => <a href="/php/functions/error_reporting/">error_reporting</a> [1304] => <a href="/php/functions/restore_error_handler/">restore_error_handler</a> [1305] => <a href="/php/functions/restore_exception_handler/">restore_exception_handler</a> [1306] => <a href="/php/functions/set_error_handler/">set_error_handler</a> [1307] => <a href="/php/functions/set_exception_handler/">set_exception_handler</a> [1308] => <a href="/php/functions/trigger_error/">trigger_error</a> [1309] => <a href="/php/functions/user_error/">user_error</a> [1310] => </div> [1311] => <h3>Filesystem</h3> [1312] => <div class="nav-content section"> [1313] => <a href="/php/functions/basename/">basename</a> [1314] => <a href="/php/functions/chgrp/">chgrp</a> [1315] => <a href="/php/functions/chmod/">chmod</a> [1316] => <a href="/php/functions/chown/">chown</a> [1317] => <a href="/php/functions/clearstatcache/">clearstatcache</a> [1318] => <a href="/php/functions/copy/">copy</a> [1319] => <a href="/php/functions/dirname/">dirname</a> [1320] => <a href="/php/functions/disk_free_space/">disk_free_space</a> [1321] => <a href="/php/functions/disk_total_space/">disk_total_space</a> [1322] => <a href="/php/functions/diskfreespace/">diskfreespace</a> [1323] => <a href="/php/functions/fclose/">fclose</a> [1324] => <a href="/php/functions/feof/">feof</a> [1325] => <a href="/php/functions/fflush/">fflush</a> [1326] => <a href="/php/functions/fgetc/">fgetc</a> [1327] => <a href="/php/functions/fgetcsv/">fgetcsv</a> [1328] => <a href="/php/functions/fgets/">fgets</a> [1329] => <a href="/php/functions/file/">file</a> [1330] => <a href="/php/functions/file_exists/">file_exists</a> [1331] => <a href="/php/functions/file_get_contents/">file_get_contents</a> [1332] => <a href="/php/functions/file_put_contents/">file_put_contents</a> [1333] => <a href="/php/functions/fileatime/">fileatime</a> [1334] => <a href="/php/functions/filectime/">filectime</a> [1335] => <a href="/php/functions/filegroup/">filegroup</a> [1336] => <a href="/php/functions/fileinode/">fileinode</a> [1337] => <a href="/php/functions/filemtime/">filemtime</a> [1338] => <a href="/php/functions/fileowner/">fileowner</a> [1339] => <a href="/php/functions/fileperms/">fileperms</a> [1340] => <a href="/php/functions/filesize/">filesize</a> [1341] => <a href="/php/functions/filetype/">filetype</a> [1342] => <a href="/php/functions/flock/">flock</a> [1343] => <a href="/php/functions/fnmatch/">fnmatch</a> [1344] => <a href="/php/functions/fopen/">fopen</a> [1345] => <a href="/php/functions/fpassthru/">fpassthru</a> [1346] => <a href="/php/functions/fputcsv/">fputcsv</a> [1347] => <a href="/php/functions/fputs/">fputs</a> [1348] => <a href="/php/functions/fread/">fread</a> [1349] => <a href="/php/functions/fscanf/">fscanf</a> [1350] => <a href="/php/functions/fseek/">fseek</a> [1351] => <a href="/php/functions/fstat/">fstat</a> [1352] => <a href="/php/functions/ftell/">ftell</a> [1353] => <a href="/php/functions/ftruncate/">ftruncate</a> [1354] => <a href="/php/functions/fwrite/">fwrite</a> [1355] => <a href="/php/functions/glob/">glob</a> [1356] => <a href="/php/functions/is_dir/">is_dir</a> [1357] => <a href="/php/functions/is_executable/">is_executable</a> [1358] => <a href="/php/functions/is_file/">is_file</a> [1359] => <a href="/php/functions/is_link/">is_link</a> [1360] => <a href="/php/functions/is_readable/">is_readable</a> [1361] => <a href="/php/functions/is_uploaded_file/">is_uploaded_file</a> [1362] => <a href="/php/functions/is_writable/">is_writable</a> [1363] => <a href="/php/functions/is_writeable/">is_writeable</a> [1364] => <a href="/php/functions/lchgrp/">lchgrp</a> [1365] => <a href="/php/functions/lchown/">lchown</a> [1366] => <a href="/php/functions/link/">link</a> [1367] => <a href="/php/functions/linkinfo/">linkinfo</a> [1368] => <a href="/php/functions/lstat/">lstat</a> [1369] => <a href="/php/functions/mkdir/">mkdir</a> [1370] => <a href="/php/functions/move_uploaded_file/">move_uploaded_file</a> [1371] => <a href="/php/functions/pathinfo/">pathinfo</a> [1372] => <a href="/php/functions/pclose/">pclose</a> [1373] => <a href="/php/functions/popen/">popen</a> [1374] => <a href="/php/functions/readfile/">readfile</a> [1375] => <a href="/php/functions/readlink/">readlink</a> [1376] => <a href="/php/functions/realpath/">realpath</a> [1377] => <a href="/php/functions/realpath_cache_get/">realpath_cache_get</a> [1378] => <a href="/php/functions/realpath_cache_size/">realpath_cache_size</a> [1379] => <a href="/php/functions/rename/">rename</a> [1380] => <a href="/php/functions/rewind/">rewind</a> [1381] => <a href="/php/functions/rmdir/">rmdir</a> [1382] => <a href="/php/functions/set_file_buffer/">set_file_buffer</a> [1383] => <a href="/php/functions/stat/">stat</a> [1384] => <a href="/php/functions/symlink/">symlink</a> [1385] => <a href="/php/functions/tempnam/">tempnam</a> [1386] => <a href="/php/functions/tmpfile/">tmpfile</a> [1387] => <a href="/php/functions/touch/">touch</a> [1388] => <a href="/php/functions/umask/">umask</a> [1389] => <a href="/php/functions/unlink/">unlink</a> [1390] => </div> [1391] => <h3>Filter</h3> [1392] => <div class="nav-content section"> [1393] => <a href="/php/functions/filter_has_var/">filter_has_var</a> [1394] => <a href="/php/functions/filter_id/">filter_id</a> [1395] => <a href="/php/functions/filter_input/">filter_input</a> [1396] => <a href="/php/functions/filter_input_array/">filter_input_array</a> [1397] => <a href="/php/functions/filter_list/">filter_list</a> [1398] => <a href="/php/functions/filter_var/">filter_var</a> [1399] => <a href="/php/functions/filter_var_array/">filter_var_array</a> [1400] => </div> [1401] => <h3>Function Handling</h3> [1402] => <div class="nav-content section"> [1403] => <a href="/php/functions/call_user_func/">call_user_func</a> [1404] => <a href="/php/functions/call_user_func_array/">call_user_func_array</a> [1405] => <a href="/php/functions/forward_static_call/">forward_static_call</a> [1406] => <a href="/php/functions/forward_static_call_array/">forward_static_call_array</a> [1407] => <a href="/php/functions/func_get_arg/">func_get_arg</a> [1408] => <a href="/php/functions/func_get_args/">func_get_args</a> [1409] => <a href="/php/functions/func_num_args/">func_num_args</a> [1410] => <a href="/php/functions/function_exists/">function_exists</a> [1411] => <a href="/php/functions/get_defined_functions/">get_defined_functions</a> [1412] => <a href="/php/functions/register_shutdown_function/">register_shutdown_function</a> [1413] => <a href="/php/functions/register_tick_function/">register_tick_function</a> [1414] => <a href="/php/functions/unregister_tick_function/">unregister_tick_function</a> [1415] => </div> [1416] => <h3>Mail</h3> [1417] => <div class="nav-content section"> [1418] => <a href="/php/functions/mail/">mail</a> [1419] => </div> [1420] => <h3>Math</h3> [1421] => <div class="nav-content section"> [1422] => <a href="/php/functions/abs/">abs</a> [1423] => <a href="/php/functions/acos/">acos</a> [1424] => <a href="/php/functions/acosh/">acosh</a> [1425] => <a href="/php/functions/asin/">asin</a> [1426] => <a href="/php/functions/asinh/">asinh</a> [1427] => <a href="/php/functions/atan/">atan</a> [1428] => <a href="/php/functions/atan2/">atan2</a> [1429] => <a href="/php/functions/atanh/">atanh</a> [1430] => <a href="/php/functions/base_convert/">base_convert</a> [1431] => <a href="/php/functions/bindec/">bindec</a> [1432] => <a href="/php/functions/ceil/">ceil</a> [1433] => <a href="/php/functions/cos/">cos</a> [1434] => <a href="/php/functions/cosh/">cosh</a> [1435] => <a href="/php/functions/decbin/">decbin</a> [1436] => <a href="/php/functions/dechex/">dechex</a> [1437] => <a href="/php/functions/decoct/">decoct</a> [1438] => <a href="/php/functions/deg2rad/">deg2rad</a> [1439] => <a href="/php/functions/exp/">exp</a> [1440] => <a href="/php/functions/expm1/">expm1</a> [1441] => <a href="/php/functions/floor/">floor</a> [1442] => <a href="/php/functions/fmod/">fmod</a> [1443] => <a href="/php/functions/getrandmax/">getrandmax</a> [1444] => <a href="/php/functions/hexdec/">hexdec</a> [1445] => <a href="/php/functions/hypot/">hypot</a> [1446] => <a href="/php/functions/intdiv/">intdiv</a> [1447] => <a href="/php/functions/is_finite/">is_finite</a> [1448] => <a href="/php/functions/is_infinite/">is_infinite</a> [1449] => <a href="/php/functions/is_nan/">is_nan</a> [1450] => <a href="/php/functions/lcg_value/">lcg_value</a> [1451] => <a href="/php/functions/log/">log</a> [1452] => <a href="/php/functions/log10/">log10</a> [1453] => <a href="/php/functions/log1p/">log1p</a> [1454] => <a href="/php/functions/max/">max</a> [1455] => <a href="/php/functions/min/">min</a> [1456] => <a href="/php/functions/mt_getrandmax/">mt_getrandmax</a> [1457] => <a href="/php/functions/mt_rand/">mt_rand</a> [1458] => <a href="/php/functions/mt_srand/">mt_srand</a> [1459] => <a href="/php/functions/octdec/">octdec</a> [1460] => <a href="/php/functions/pi/">pi</a> [1461] => <a href="/php/functions/pow/">pow</a> [1462] => <a href="/php/functions/rad2deg/">rad2deg</a> [1463] => <a href="/php/functions/rand/">rand</a> [1464] => <a href="/php/functions/round/">round</a> [1465] => <a href="/php/functions/sin/">sin</a> [1466] => <a href="/php/functions/sinh/">sinh</a> [1467] => <a href="/php/functions/sqrt/">sqrt</a> [1468] => <a href="/php/functions/srand/">srand</a> [1469] => <a href="/php/functions/tan/">tan</a> [1470] => <a href="/php/functions/tanh/">tanh</a> [1471] => </div> [1472] => <h3>Miscellaneous</h3> [1473] => <div class="nav-content section"> [1474] => <a href="/php/functions/__halt_compiler/">__halt_compiler</a> [1475] => <a href="/php/functions/connection_aborted/">connection_aborted</a> [1476] => <a href="/php/functions/connection_status/">connection_status</a> [1477] => <a href="/php/functions/constant/">constant</a> [1478] => <a href="/php/functions/define/">define</a> [1479] => <a href="/php/functions/defined/">defined</a> [1480] => <a href="/php/functions/die/">die</a> [1481] => <a href="/php/functions/eval/">eval</a> [1482] => <a href="/php/functions/exit/">exit</a> [1483] => <a href="/php/functions/highlight_file/">highlight_file</a> [1484] => <a href="/php/functions/highlight_string/">highlight_string</a> [1485] => <a href="/php/functions/hrtime/">hrtime</a> [1486] => <a href="/php/functions/ignore_user_abort/">ignore_user_abort</a> [1487] => <a href="/php/functions/pack/">pack</a> [1488] => <a href="/php/functions/php_strip_whitespace/">php_strip_whitespace</a> [1489] => <a href="/php/functions/show_source/">show_source</a> [1490] => <a href="/php/functions/sleep/">sleep</a> [1491] => <a href="/php/functions/sys_getloadavg/">sys_getloadavg</a> [1492] => <a href="/php/functions/time_nanosleep/">time_nanosleep</a> [1493] => <a href="/php/functions/time_sleep_until/">time_sleep_until</a> [1494] => <a href="/php/functions/uniqid/">uniqid</a> [1495] => <a href="/php/functions/unpack/">unpack</a> [1496] => <a href="/php/functions/usleep/">usleep</a> [1497] => </div> [1498] => <h3>Network</h3> [1499] => <div class="nav-content section"> [1500] => <a href="/php/functions/checkdnsrr/">checkdnsrr</a> [1501] => <a href="/php/functions/closelog/">closelog</a> [1502] => <a href="/php/functions/dns_check_record/">dns_check_record</a> [1503] => <a href="/php/functions/dns_get_mx/">dns_get_mx</a> [1504] => <a href="/php/functions/dns_get_record/">dns_get_record</a> [1505] => <a href="/php/functions/fsockopen/">fsockopen</a> [1506] => <a href="/php/functions/gethostbyaddr/">gethostbyaddr</a> [1507] => <a href="/php/functions/gethostbyname/">gethostbyname</a> [1508] => <a href="/php/functions/gethostbynamel/">gethostbynamel</a> [1509] => <a href="/php/functions/gethostname/">gethostname</a> [1510] => <a href="/php/functions/getmxrr/">getmxrr</a> [1511] => <a href="/php/functions/getprotobyname/">getprotobyname</a> [1512] => <a href="/php/functions/getprotobynumber/">getprotobynumber</a> [1513] => <a href="/php/functions/getservbyname/">getservbyname</a> [1514] => <a href="/php/functions/getservbyport/">getservbyport</a> [1515] => <a href="/php/functions/header/">header</a> [1516] => <a href="/php/functions/header_register_callback/">header_register_callback</a> [1517] => <a href="/php/functions/header_remove/">header_remove</a> [1518] => <a href="/php/functions/headers_list/">headers_list</a> [1519] => <a href="/php/functions/headers_sent/">headers_sent</a> [1520] => <a href="/php/functions/http_response_code/">http_response_code</a> [1521] => <a href="/php/functions/inet_ntop/">inet_ntop</a> [1522] => <a href="/php/functions/inet_pton/">inet_pton</a> [1523] => <a href="/php/functions/ip2long/">ip2long</a> [1524] => <a href="/php/functions/long2ip/">long2ip</a> [1525] => <a href="/php/functions/openlog/">openlog</a> [1526] => <a href="/php/functions/pfsockopen/">pfsockopen</a> [1527] => <a href="/php/functions/setcookie/">setcookie</a> [1528] => <a href="/php/functions/setrawcookie/">setrawcookie</a> [1529] => <a href="/php/functions/socket_get_status/">socket_get_status</a> [1530] => <a href="/php/functions/socket_set_blocking/">socket_set_blocking</a> [1531] => <a href="/php/functions/socket_set_timeout/">socket_set_timeout</a> [1532] => <a href="/php/functions/syslog/">syslog</a> [1533] => </div> [1534] => <h3>PCRE</h3> [1535] => <div class="nav-content section"> [1536] => <a href="/php/functions/preg_filter/">preg_filter</a> [1537] => <a href="/php/functions/preg_grep/">preg_grep</a> [1538] => <a href="/php/functions/preg_last_error/">preg_last_error</a> [1539] => <a href="/php/functions/preg_match/">preg_match</a> [1540] => <a href="/php/functions/preg_match_all/">preg_match_all</a> [1541] => <a href="/php/functions/preg_quote/">preg_quote</a> [1542] => <a href="/php/functions/preg_replace/">preg_replace</a> [1543] => <a href="/php/functions/preg_replace_callback/">preg_replace_callback</a> [1544] => <a href="/php/functions/preg_replace_callback_array/">preg_replace_callback_array</a> [1545] => <a href="/php/functions/preg_split/">preg_split</a> [1546] => </div> [1547] => <h3>Stream</h3> [1548] => <div class="nav-content section"> [1549] => <a href="/php/functions/stream_bucket_append/">stream_bucket_append</a> [1550] => <a href="/php/functions/stream_bucket_make_writeable/">stream_bucket_make_writeable</a> [1551] => <a href="/php/functions/stream_bucket_new/">stream_bucket_new</a> [1552] => <a href="/php/functions/stream_bucket_prepend/">stream_bucket_prepend</a> [1553] => <a href="/php/functions/stream_context_create/">stream_context_create</a> [1554] => <a href="/php/functions/stream_context_get_default/">stream_context_get_default</a> [1555] => <a href="/php/functions/stream_context_get_options/">stream_context_get_options</a> [1556] => <a href="/php/functions/stream_context_get_params/">stream_context_get_params</a> [1557] => <a href="/php/functions/stream_context_set_default/">stream_context_set_default</a> [1558] => <a href="/php/functions/stream_context_set_option/">stream_context_set_option</a> [1559] => <a href="/php/functions/stream_context_set_params/">stream_context_set_params</a> [1560] => <a href="/php/functions/stream_copy_to_stream/">stream_copy_to_stream</a> [1561] => <a href="/php/functions/stream_filter_append/">stream_filter_append</a> [1562] => <a href="/php/functions/stream_filter_prepend/">stream_filter_prepend</a> [1563] => <a href="/php/functions/stream_filter_register/">stream_filter_register</a> [1564] => <a href="/php/functions/stream_filter_remove/">stream_filter_remove</a> [1565] => <a href="/php/functions/stream_get_contents/">stream_get_contents</a> [1566] => <a href="/php/functions/stream_get_filters/">stream_get_filters</a> [1567] => <a href="/php/functions/stream_get_line/">stream_get_line</a> [1568] => <a href="/php/functions/stream_get_meta_data/">stream_get_meta_data</a> [1569] => <a href="/php/functions/stream_get_transports/">stream_get_transports</a> [1570] => <a href="/php/functions/stream_get_wrappers/">stream_get_wrappers</a> [1571] => <a href="/php/functions/stream_is_local/">stream_is_local</a> [1572] => <a href="/php/functions/stream_isatty/">stream_isatty</a> [1573] => <a href="/php/functions/stream_notification_callback/">stream_notification_callback</a> [1574] => <a href="/php/functions/stream_register_wrapper/">stream_register_wrapper</a> [1575] => <a href="/php/functions/stream_resolve_include_path/">stream_resolve_include_path</a> [1576] => <a href="/php/functions/stream_select/">stream_select</a> [1577] => <a href="/php/functions/stream_set_blocking/">stream_set_blocking</a> [1578] => <a href="/php/functions/stream_set_chunk_size/">stream_set_chunk_size</a> [1579] => <a href="/php/functions/stream_set_read_buffer/">stream_set_read_buffer</a> [1580] => <a href="/php/functions/stream_set_timeout/">stream_set_timeout</a> [1581] => <a href="/php/functions/stream_set_write_buffer/">stream_set_write_buffer</a> [1582] => <a href="/php/functions/stream_socket_accept/">stream_socket_accept</a> [1583] => <a href="/php/functions/stream_socket_client/">stream_socket_client</a> [1584] => <a href="/php/functions/stream_socket_enable_crypto/">stream_socket_enable_crypto</a> [1585] => <a href="/php/functions/stream_socket_get_name/">stream_socket_get_name</a> [1586] => <a href="/php/functions/stream_socket_pair/">stream_socket_pair</a> [1587] => <a href="/php/functions/stream_socket_recvfrom/">stream_socket_recvfrom</a> [1588] => <a href="/php/functions/stream_socket_sendto/">stream_socket_sendto</a> [1589] => <a href="/php/functions/stream_socket_server/">stream_socket_server</a> [1590] => <a href="/php/functions/stream_socket_shutdown/">stream_socket_shutdown</a> [1591] => <a href="/php/functions/stream_supports_lock/">stream_supports_lock</a> [1592] => <a href="/php/functions/stream_wrapper_register/">stream_wrapper_register</a> [1593] => <a href="/php/functions/stream_wrapper_restore/">stream_wrapper_restore</a> [1594] => <a href="/php/functions/stream_wrapper_unregister/">stream_wrapper_unregister</a> [1595] => </div> [1596] => <h3>String</h3> [1597] => <div class="nav-content section"> [1598] => <a href="/php/functions/addcslashes/">addcslashes</a> [1599] => <a href="/php/functions/addslashes/">addslashes</a> [1600] => <a href="/php/functions/bin2hex/">bin2hex</a> [1601] => <a href="/php/functions/chop/">chop</a> [1602] => <a href="/php/functions/chr/">chr</a> [1603] => <a href="/php/functions/chunk_split/">chunk_split</a> [1604] => <a href="/php/functions/convert_uudecode/">convert_uudecode</a> [1605] => <a href="/php/functions/convert_uuencode/">convert_uuencode</a> [1606] => <a href="/php/functions/count_chars/">count_chars</a> [1607] => <a href="/php/functions/crc32/">crc32</a> [1608] => <a href="/php/functions/crypt/">crypt</a> [1609] => <a href="/php/functions/echo/">echo</a> [1610] => <a href="/php/functions/explode/">explode</a> [1611] => <a href="/php/functions/fprintf/">fprintf</a> [1612] => <a href="/php/functions/get_html_translation_table/">get_html_translation_table</a> [1613] => <a href="/php/functions/hebrev/">hebrev</a> [1614] => <a href="/php/functions/hebrevc/">hebrevc</a> [1615] => <a href="/php/functions/hex2bin/">hex2bin</a> [1616] => <a href="/php/functions/html_entity_decode/">html_entity_decode</a> [1617] => <a href="/php/functions/htmlentities/">htmlentities</a> [1618] => <a href="/php/functions/htmlspecialchars/">htmlspecialchars</a> [1619] => <a href="/php/functions/htmlspecialchars_decode/">htmlspecialchars_decode</a> [1620] => <a href="/php/functions/implode/">implode</a> [1621] => <a href="/php/functions/join/">join</a> [1622] => <a href="/php/functions/lcfirst/">lcfirst</a> [1623] => <a href="/php/functions/levenshtein/">levenshtein</a> [1624] => <a href="/php/functions/localeconv/">localeconv</a> [1625] => <a href="/php/functions/ltrim/">ltrim</a> [1626] => <a href="/php/functions/md5/">md5</a> [1627] => <a href="/php/functions/md5_file/">md5_file</a> [1628] => <a href="/php/functions/metaphone/">metaphone</a> [1629] => <a href="/php/functions/nl_langinfo/">nl_langinfo</a> [1630] => <a href="/php/functions/nl2br/">nl2br</a> [1631] => <a href="/php/functions/number_format/">number_format</a> [1632] => <a href="/php/functions/ord/">ord</a> [1633] => <a href="/php/functions/parse_str/">parse_str</a> [1634] => <a href="/php/functions/print/">print</a> [1635] => <a href="/php/functions/printf/">printf</a> [1636] => <a href="/php/functions/quoted_printable_decode/">quoted_printable_decode</a> [1637] => <a href="/php/functions/quoted_printable_encode/">quoted_printable_encode</a> [1638] => <a href="/php/functions/quotemeta/">quotemeta</a> [1639] => <a href="/php/functions/rtrim/">rtrim</a> [1640] => <a href="/php/functions/setlocale/">setlocale</a> [1641] => <a href="/php/functions/sha1/">sha1</a> [1642] => <a href="/php/functions/sha1_file/">sha1_file</a> [1643] => <a href="/php/functions/similar_text/">similar_text</a> [1644] => <a href="/php/functions/soundex/">soundex</a> [1645] => <a href="/php/functions/sprintf/">sprintf</a> [1646] => <a href="/php/functions/sscanf/">sscanf</a> [1647] => <a href="/php/functions/str_contains/">str_contains</a> [1648] => <a href="/php/functions/str_ends_with/">str_ends_with</a> [1649] => <a href="/php/functions/str_getcsv/">str_getcsv</a> [1650] => <a href="/php/functions/str_ireplace/">str_ireplace</a> [1651] => <a href="/php/functions/str_pad/">str_pad</a> [1652] => <a href="/php/functions/str_repeat/">str_repeat</a> [1653] => <a href="/php/functions/str_replace/">str_replace</a> [1654] => <a href="/php/functions/str_rot13/">str_rot13</a> [1655] => <a href="/php/functions/str_shuffle/">str_shuffle</a> [1656] => <a href="/php/functions/str_split/">str_split</a> [1657] => <a href="/php/functions/str_starts_with/">str_starts_with</a> [1658] => <a href="/php/functions/str_word_count/">str_word_count</a> [1659] => <a href="/php/functions/strcasecmp/">strcasecmp</a> [1660] => <a href="/php/functions/strchr/">strchr</a> [1661] => <a href="/php/functions/strcmp/">strcmp</a> [1662] => <a href="/php/functions/strcoll/">strcoll</a> [1663] => <a href="/php/functions/strcspn/">strcspn</a> [1664] => <a href="/php/functions/strip_tags/">strip_tags</a> [1665] => <a href="/php/functions/stripcslashes/">stripcslashes</a> [1666] => <a href="/php/functions/stripos/">stripos</a> [1667] => <a href="/php/functions/stripslashes/">stripslashes</a> [1668] => <a href="/php/functions/stristr/">stristr</a> [1669] => <a href="/php/functions/strlen/">strlen</a> [1670] => <a href="/php/functions/strnatcasecmp/">strnatcasecmp</a> [1671] => <a href="/php/functions/strnatcmp/">strnatcmp</a> [1672] => <a href="/php/functions/strncasecmp/">strncasecmp</a> [1673] => <a href="/php/functions/strncmp/">strncmp</a> [1674] => <a href="/php/functions/strpbrk/">strpbrk</a> [1675] => <a href="/php/functions/strpos/">strpos</a> [1676] => <a href="/php/functions/strrchr/">strrchr</a> [1677] => <a href="/php/functions/strrev/">strrev</a> [1678] => <a href="/php/functions/strripos/">strripos</a> [1679] => <a href="/php/functions/strrpos/">strrpos</a> [1680] => <a href="/php/functions/strspn/">strspn</a> [1681] => <a href="/php/functions/strstr/">strstr</a> [1682] => <a href="/php/functions/strtok/">strtok</a> [1683] => <a href="/php/functions/strtolower/">strtolower</a> [1684] => <a href="/php/functions/strtoupper/">strtoupper</a> [1685] => <a href="/php/functions/strtr/">strtr</a> [1686] => <a href="/php/functions/substr/">substr</a> [1687] => <a href="/php/functions/substr_compare/">substr_compare</a> [1688] => <a href="/php/functions/substr_count/">substr_count</a> [1689] => <a href="/php/functions/substr_replace/">substr_replace</a> [1690] => <a href="/php/functions/trim/">trim</a> [1691] => <a href="/php/functions/ucfirst/">ucfirst</a> [1692] => <a href="/php/functions/ucwords/">ucwords</a> [1693] => <a href="/php/functions/vfprintf/">vfprintf</a> [1694] => <a href="/php/functions/vprintf/">vprintf</a> [1695] => <a href="/php/functions/vsprintf/">vsprintf</a> [1696] => <a href="/php/functions/wordwrap/">wordwrap</a> [1697] => </div> [1698] => <h3>Tokenizer</h3> [1699] => <div class="nav-content section"> [1700] => <a href="/php/functions/token_get_all/">token_get_all</a> [1701] => <a href="/php/functions/token_name/">token_name</a> [1702] => </div> [1703] => <h3>URL</h3> [1704] => <div class="nav-content section"> [1705] => <a href="/php/functions/base64_decode/">base64_decode</a> [1706] => <a href="/php/functions/base64_encode/">base64_encode</a> [1707] => <a href="/php/functions/get_headers/">get_headers</a> [1708] => <a href="/php/functions/get_meta_tags/">get_meta_tags</a> [1709] => <a href="/php/functions/http_build_query/">http_build_query</a> [1710] => <a href="/php/functions/parse_url/">parse_url</a> [1711] => <a href="/php/functions/rawurldecode/">rawurldecode</a> [1712] => <a href="/php/functions/rawurlencode/">rawurlencode</a> [1713] => <a href="/php/functions/urldecode/">urldecode</a> [1714] => <a href="/php/functions/urlencode/">urlencode</a> [1715] => </div> [1716] => <h3>Variable Handling</h3> [1717] => <div class="nav-content section"> [1718] => <a href="/php/functions/boolval/">boolval</a> [1719] => <a href="/php/functions/debug_zval_dump/">debug_zval_dump</a> [1720] => <a href="/php/functions/doubleval/">doubleval</a> [1721] => <a href="/php/functions/empty/">empty</a> [1722] => <a href="/php/functions/floatval/">floatval</a> [1723] => <a href="/php/functions/get_defined_vars/">get_defined_vars</a> [1724] => <a href="/php/functions/get_resource_id/">get_resource_id</a> [1725] => <a href="/php/functions/get_resource_type/">get_resource_type</a> [1726] => <a href="/php/functions/gettype/">gettype</a> [1727] => <a href="/php/functions/intval/">intval</a> [1728] => <a href="/php/functions/is_array/">is_array</a> [1729] => <a href="/php/functions/is_bool/">is_bool</a> [1730] => <a href="/php/functions/is_callable/">is_callable</a> [1731] => <a href="/php/functions/is_countable/">is_countable</a> [1732] => <a href="/php/functions/is_double/">is_double</a> [1733] => <a href="/php/functions/is_float/">is_float</a> [1734] => <a href="/php/functions/is_int/">is_int</a> [1735] => <a href="/php/functions/is_integer/">is_integer</a> [1736] => <a href="/php/functions/is_iterable/">is_iterable</a> [1737] => <a href="/php/functions/is_long/">is_long</a> [1738] => <a href="/php/functions/is_null/">is_null</a> [1739] => <a href="/php/functions/is_numeric/">is_numeric</a> [1740] => <a href="/php/functions/is_object/">is_object</a> [1741] => <a href="/php/functions/is_real/">is_real</a> [1742] => <a href="/php/functions/is_resource/">is_resource</a> [1743] => <a href="/php/functions/is_scalar/">is_scalar</a> [1744] => <a href="/php/functions/is_string/">is_string</a> [1745] => <a href="/php/functions/isset/">isset</a> [1746] => <a href="/php/functions/print_r/">print_r</a> [1747] => <a href="/php/functions/serialize/">serialize</a> [1748] => <a href="/php/functions/settype/">settype</a> [1749] => <a href="/php/functions/strval/">strval</a> [1750] => <a href="/php/functions/unserialize/">unserialize</a> [1751] => <a href="/php/functions/unset/">unset</a> [1752] => <a href="/php/functions/var_dump/">var_dump</a> [1753] => <a href="/php/functions/var_export/">var_export</a> [1754] => </div> [1755] => </div> [1756] => <div class="nav-h1"> [1757] => <a id="nav-svg-switch">SVG</a> [1758] => </div> [1759] => <div id="nav-svg"> [1760] => <h3>Overview</h3> [1761] => <div class="nav-content section"> [1762] => <a href="/svg/">Overview</a> [1763] => </div> [1764] => <h3>Attributes</h3> [1765] => <div class="nav-content section"> [1766] => <a href="/svg/attributes/accumulate/">accumulate</a> [1767] => <a href="/svg/attributes/additive/">additive</a> [1768] => <a href="/svg/attributes/amplitude/">amplitude</a> [1769] => <a href="/svg/attributes/attributename/">attributeName</a> [1770] => <a href="/svg/attributes/azimuth/">azimuth</a> [1771] => <a href="/svg/attributes/basefrequency/">baseFrequency</a> [1772] => <a href="/svg/attributes/begin/">begin</a> [1773] => <a href="/svg/attributes/bias/">bias</a> [1774] => <a href="/svg/attributes/by/">by</a> [1775] => <a href="/svg/attributes/calcmode/">calcMode</a> [1776] => <a href="/svg/attributes/clippathunits/">clipPathUnits</a> [1777] => <a href="/svg/attributes/crossorigin/">crossorigin</a> [1778] => <a href="/svg/attributes/cx/">cx</a> [1779] => <a href="/svg/attributes/cy/">cy</a> [1780] => <a href="/svg/attributes/d/">d</a> [1781] => <a href="/svg/attributes/diffuseconstant/">diffuseConstant</a> [1782] => <a href="/svg/attributes/divisor/">divisor</a> [1783] => <a href="/svg/attributes/download/">download</a> [1784] => <a href="/svg/attributes/dur/">dur</a> [1785] => <a href="/svg/attributes/dx/">dx</a> [1786] => <a href="/svg/attributes/dy/">dy</a> [1787] => <a href="/svg/attributes/edgemode/">edgeMode</a> [1788] => <a href="/svg/attributes/elevation/">elevation</a> [1789] => <a href="/svg/attributes/end/">end</a> [1790] => <a href="/svg/attributes/exponent/">exponent</a> [1791] => <a href="/svg/attributes/fill/">fill</a> [1792] => <a href="/svg/attributes/filterunits/">filterUnits</a> [1793] => <a href="/svg/attributes/flood-color/">flood-color</a> [1794] => <a href="/svg/attributes/flood-opacity/">flood-opacity</a> [1795] => <a href="/svg/attributes/fr/">fr</a> [1796] => <a href="/svg/attributes/from/">from</a> [1797] => <a href="/svg/attributes/fx/">fx</a> [1798] => <a href="/svg/attributes/fy/">fy</a> [1799] => <a href="/svg/attributes/gradienttransform/">gradientTransform</a> [1800] => <a href="/svg/attributes/gradientunits/">gradientUnits</a> [1801] => <a href="/svg/attributes/height/">height</a> [1802] => <a href="/svg/attributes/href/">href</a> [1803] => <a href="/svg/attributes/hreflang/">hreflang</a> [1804] => <a href="/svg/attributes/id/">id</a> [1805] => <a href="/svg/attributes/in/">in</a> [1806] => <a href="/svg/attributes/in2/">in2</a> [1807] => <a href="/svg/attributes/intercept/">intercept</a> [1808] => <a href="/svg/attributes/k1/">k1</a> [1809] => <a href="/svg/attributes/k2/">k2</a> [1810] => <a href="/svg/attributes/k3/">k3</a> [1811] => <a href="/svg/attributes/k4/">k4</a> [1812] => <a href="/svg/attributes/kernelmatrix/">kernelMatrix</a> [1813] => <a href="/svg/attributes/keypoints/">keyPoints</a> [1814] => <a href="/svg/attributes/keysplines/">keySplines</a> [1815] => <a href="/svg/attributes/keytimes/">keyTimes</a> [1816] => <a href="/svg/attributes/lengthadjust/">lengthAdjust</a> [1817] => <a href="/svg/attributes/limitingconeangle/">limitingConeAngle</a> [1818] => <a href="/svg/attributes/markerheight/">markerHeight</a> [1819] => <a href="/svg/attributes/markerunits/">markerUnits</a> [1820] => <a href="/svg/attributes/markerwidth/">markerWidth</a> [1821] => <a href="/svg/attributes/maskcontentunits/">maskContentUnits</a> [1822] => <a href="/svg/attributes/maskunits/">maskUnits</a> [1823] => <a href="/svg/attributes/max/">max</a> [1824] => <a href="/svg/attributes/media/">media</a> [1825] => <a href="/svg/attributes/method/">method</a> [1826] => <a href="/svg/attributes/min/">min</a> [1827] => <a href="/svg/attributes/mode/">mode</a> [1828] => <a href="/svg/attributes/no-composite/">no-composite</a> [1829] => <a href="/svg/attributes/numoctaves/">numOctaves</a> [1830] => <a href="/svg/attributes/offset/">offset</a> [1831] => <a href="/svg/attributes/onbegin/">onbegin</a> [1832] => <a href="/svg/attributes/onend/">onend</a> [1833] => <a href="/svg/attributes/onrepeat/">onrepeat</a> [1834] => <a href="/svg/attributes/operator/">operator</a> [1835] => <a href="/svg/attributes/order/">order</a> [1836] => <a href="/svg/attributes/orient/">orient</a> [1837] => <a href="/svg/attributes/origin/">origin</a> [1838] => <a href="/svg/attributes/path/">path</a> [1839] => <a href="/svg/attributes/pathlength/">pathLength</a> [1840] => <a href="/svg/attributes/patterncontentunits/">patternContentUnits</a> [1841] => <a href="/svg/attributes/patterntransform/">patternTransform</a> [1842] => <a href="/svg/attributes/patternunits/">patternUnits</a> [1843] => <a href="/svg/attributes/ping/">ping</a> [1844] => <a href="/svg/attributes/points/">points</a> [1845] => <a href="/svg/attributes/pointsatx/">pointsAtX</a> [1846] => <a href="/svg/attributes/pointsaty/">pointsAtY</a> [1847] => <a href="/svg/attributes/pointsatz/">pointsAtZ</a> [1848] => <a href="/svg/attributes/preservealpha/">preserveAlpha</a> [1849] => <a href="/svg/attributes/preserveaspectratio/">preserveAspectRatio</a> [1850] => <a href="/svg/attributes/primitiveunits/">primitiveUnits</a> [1851] => <a href="/svg/attributes/r/">r</a> [1852] => <a href="/svg/attributes/radius/">radius</a> [1853] => <a href="/svg/attributes/referrerpolicy/">referrerPolicy</a> [1854] => <a href="/svg/attributes/refx/">refx</a> [1855] => <a href="/svg/attributes/refy/">refy</a> [1856] => <a href="/svg/attributes/rel/">rel</a> [1857] => <a href="/svg/attributes/repeatcount/">repeatCount</a> [1858] => <a href="/svg/attributes/repeatdur/">repeatDur</a> [1859] => <a href="/svg/attributes/requiredextensions/">requiredExtensions</a> [1860] => <a href="/svg/attributes/restart/">restart</a> [1861] => <a href="/svg/attributes/rotate/">rotate</a> [1862] => <a href="/svg/attributes/rx/">rx</a> [1863] => <a href="/svg/attributes/ry/">ry</a> [1864] => <a href="/svg/attributes/scale/">scale</a> [1865] => <a href="/svg/attributes/seed/">seed</a> [1866] => <a href="/svg/attributes/side/">side</a> [1867] => <a href="/svg/attributes/slope/">slope</a> [1868] => <a href="/svg/attributes/spacing/">spacing</a> [1869] => <a href="/svg/attributes/specularconstant/">specularConstant</a> [1870] => <a href="/svg/attributes/specularexponent/">specularExponent</a> [1871] => <a href="/svg/attributes/spreadmethod/">spreadMethod</a> [1872] => <a href="/svg/attributes/startoffset/">startoffset</a> [1873] => <a href="/svg/attributes/stddeviation/">stdDeviation</a> [1874] => <a href="/svg/attributes/stitchtiles/">stitchTiles</a> [1875] => <a href="/svg/attributes/stop-color/">stop-color</a> [1876] => <a href="/svg/attributes/stop-opacity/">stop-opacity</a> [1877] => <a href="/svg/attributes/surfacescale/">surfaceScale</a> [1878] => <a href="/svg/attributes/systemlanguage/">systemLanguage</a> [1879] => <a href="/svg/attributes/tablevalues/">tableValues</a> [1880] => <a href="/svg/attributes/target/">target</a> [1881] => <a href="/svg/attributes/targetx/">targetX</a> [1882] => <a href="/svg/attributes/targety/">targetY</a> [1883] => <a href="/svg/attributes/textlength/">textLength</a> [1884] => <a href="/svg/attributes/title/">title</a> [1885] => <a href="/svg/attributes/to/">to</a> [1886] => <a href="/svg/attributes/transform/">transform</a> [1887] => <a href="/svg/attributes/type/">type</a> [1888] => <a href="/svg/attributes/values/">values</a> [1889] => <a href="/svg/attributes/viewbox/">viewBox</a> [1890] => <a href="/svg/attributes/width/">width</a> [1891] => <a href="/svg/attributes/x/">x</a> [1892] => <a href="/svg/attributes/x1/">x1</a> [1893] => <a href="/svg/attributes/x2/">x2</a> [1894] => <a href="/svg/attributes/xchannelselector/">xChannelSelector</a> [1895] => <a href="/svg/attributes/y/">y</a> [1896] => <a href="/svg/attributes/y1/">y1</a> [1897] => <a href="/svg/attributes/y2/">y2</a> [1898] => <a href="/svg/attributes/ychannelselector/">yChannelSelector</a> [1899] => <a href="/svg/attributes/z/">z</a> [1900] => <a href="/svg/attributes/zoomandpan/">zoomAndPan</a> [1901] => </div> [1902] => <h3>Elements</h3> [1903] => <div class="nav-content section"> [1904] => <a href="/svg/elements/a/">a</a> [1905] => <a href="/svg/elements/animate/">animate</a> [1906] => <a href="/svg/elements/animatemotion/">animateMotion</a> [1907] => <a href="/svg/elements/animatetransform/">animateTransform</a> [1908] => <a href="/svg/elements/circle/">circle</a> [1909] => <a href="/svg/elements/clippath/">clipPath</a> [1910] => <a href="/svg/elements/defs/">defs</a> [1911] => <a href="/svg/elements/desc/">desc</a> [1912] => <a href="/svg/elements/discard/">discard</a> [1913] => <a href="/svg/elements/ellipse/">ellipse</a> [1914] => <a href="/svg/elements/feblend/">feBlend</a> [1915] => <a href="/svg/elements/fecolormatrix/">feColorMatrix</a> [1916] => <a href="/svg/elements/fecomponenttransfer/">feComponentTransfer</a> [1917] => <a href="/svg/elements/fecomposite/">feComposite</a> [1918] => <a href="/svg/elements/feconvolvematrix/">feConvolveMatrix</a> [1919] => <a href="/svg/elements/fediffuselighting/">feDiffuseLighting</a> [1920] => <a href="/svg/elements/fedisplacementmap/">feDisplacementMap</a> [1921] => <a href="/svg/elements/fedistantlight/">feDistantLight</a> [1922] => <a href="/svg/elements/fedropshadow/">feDropShadow</a> [1923] => <a href="/svg/elements/feflood/">feFlood</a> [1924] => <a href="/svg/elements/fefunca/">feFuncA</a> [1925] => <a href="/svg/elements/fefuncb/">feFuncB</a> [1926] => <a href="/svg/elements/fefuncg/">feFuncG</a> [1927] => <a href="/svg/elements/fefuncr/">feFuncR</a> [1928] => <a href="/svg/elements/fegaussianblur/">feGaussianBlur</a> [1929] => <a href="/svg/elements/feimage/">feImage</a> [1930] => <a href="/svg/elements/femerge/">feMerge</a> [1931] => <a href="/svg/elements/femergenode/">feMergeNode</a> [1932] => <a href="/svg/elements/femorphology/">feMorphology</a> [1933] => <a href="/svg/elements/feoffset/">feOffset</a> [1934] => <a href="/svg/elements/fepointlight/">fePointLight</a> [1935] => <a href="/svg/elements/fespecularlighting/">feSpecularLighting</a> [1936] => <a href="/svg/elements/fespotlight/">feSpotLight</a> [1937] => <a href="/svg/elements/fetile/">feTile</a> [1938] => <a href="/svg/elements/feturbulence/">feTurbulence</a> [1939] => <a href="/svg/elements/filter/">filter</a> [1940] => <a href="/svg/elements/foreignobject/">foreignObject</a> [1941] => <a href="/svg/elements/g/">g</a> [1942] => <a href="/svg/elements/image/">image</a> [1943] => <a href="/svg/elements/line/">line</a> [1944] => <a href="/svg/elements/lineargradient/">linearGradient</a> [1945] => <a href="/svg/elements/marker/">marker</a> [1946] => <a href="/svg/elements/mask/">mask</a> [1947] => <a href="/svg/elements/metadata/">metadata</a> [1948] => <a href="/svg/elements/mpath/">mpath</a> [1949] => <a href="/svg/elements/path/">path</a> [1950] => <a href="/svg/elements/pattern/">pattern</a> [1951] => <a href="/svg/elements/polygon/">polygon</a> [1952] => <a href="/svg/elements/polyline/">polyline</a> [1953] => <a href="/svg/elements/radialgradient/">radialGradient</a> [1954] => <a href="/svg/elements/rect/">rect</a> [1955] => <a href="/svg/elements/script/">script</a> [1956] => <a href="/svg/elements/set/">set</a> [1957] => <a href="/svg/elements/stop/">stop</a> [1958] => <a href="/svg/elements/style/">style</a> [1959] => <a href="/svg/elements/svg/">svg</a> [1960] => <a href="/svg/elements/switch/">switch</a> [1961] => <a href="/svg/elements/symbol/">symbol</a> [1962] => <a href="/svg/elements/text/">text</a> [1963] => <a href="/svg/elements/textpath/">textPath</a> [1964] => <a href="/svg/elements/title/">title</a> [1965] => <a href="/svg/elements/tspan/">tspan</a> [1966] => <a href="/svg/elements/unknown/">unknown</a> [1967] => <a href="/svg/elements/use/">use</a> [1968] => <a href="/svg/elements/view/">view</a> [1969] => </div> [1970] => <h3>Values</h3> [1971] => <div class="nav-content section"> [1972] => <a href="/svg/values/_blank/">_blank</a> [1973] => <a href="/svg/values/_parent/">_parent</a> [1974] => <a href="/svg/values/_self/">_self</a> [1975] => <a href="/svg/values/_top/">_top</a> [1976] => <a href="/svg/values/a/">A</a> [1977] => <a href="/svg/values/align/">align</a> [1978] => <a href="/svg/values/alpha-value/">alpha-value</a> [1979] => <a href="/svg/values/always/">always</a> [1980] => <a href="/svg/values/angle/">angle</a> [1981] => <a href="/svg/values/anonymous/">anonymous</a> [1982] => <a href="/svg/values/arithmetic/">arithmetic</a> [1983] => <a href="/svg/values/atop/">atop</a> [1984] => <a href="/svg/values/auto/">auto</a> [1985] => <a href="/svg/values/auto-start-reverse/">auto-start-reverse</a> [1986] => <a href="/svg/values/auto-reverse/">auto-reverse</a> [1987] => <a href="/svg/values/b/">B</a> [1988] => <a href="/svg/values/backgroundalpha/">BackgroundAlpha</a> [1989] => <a href="/svg/values/backgroundimage/">BackgroundImage</a> [1990] => <a href="/svg/values/begin-value-list/">begin-value-list</a> [1991] => <a href="/svg/values/blend-mode/">blend-mode</a> [1992] => <a href="/svg/values/bottom/">bottom</a> [1993] => <a href="/svg/values/center/">center</a> [1994] => <a href="/svg/values/clock-value/">clock-value</a> [1995] => <a href="/svg/values/color/">color</a> [1996] => <a href="/svg/values/control-point/">control-point</a> [1997] => <a href="/svg/values/currentcolor/">currentColor</a> [1998] => <a href="/svg/values/default/">default</a> [1999] => <a href="/svg/values/dilate/">dilate</a> [2000] => <a href="/svg/values/disable/">disable</a> [2001] => <a href="/svg/values/discrete/">discrete</a> [2002] => <a href="/svg/values/duplicate/">duplicate</a> [2003] => <a href="/svg/values/empty-string/">empty-string</a> [2004] => <a href="/svg/values/end-value-list/">end-value-list</a> [2005] => <a href="/svg/values/erode/">erode</a> [2006] => <a href="/svg/values/exact/">exact</a> [2007] => <a href="/svg/values/false/">false</a> [2008] => <a href="/svg/values/fillpaint/">FillPaint</a> [2009] => <a href="/svg/values/filter-primitive-reference/">filter-primitive-reference</a> [2010] => <a href="/svg/values/fractalnoise/">fractalNoise</a> [2011] => <a href="/svg/values/freeze/">freeze</a> [2012] => <a href="/svg/values/g/">G</a> [2013] => <a href="/svg/values/gamma/">gamma</a> [2014] => <a href="/svg/values/height/">height</a> [2015] => <a href="/svg/values/huerotate/">hueRotate</a> [2016] => <a href="/svg/values/icccolor/">icccolor</a> [2017] => <a href="/svg/values/id/">id</a> [2018] => <a href="/svg/values/identity/">identity</a> [2019] => <a href="/svg/values/in/">in</a> [2020] => <a href="/svg/values/indefinite/">indefinite</a> [2021] => <a href="/svg/values/integer/">integer</a> [2022] => <a href="/svg/values/left/">left</a> [2023] => <a href="/svg/values/length/">length</a> [2024] => <a href="/svg/values/length-percentage/">length-percentage</a> [2025] => <a href="/svg/values/lighter/">lighter</a> [2026] => <a href="/svg/values/linear/">linear</a> [2027] => <a href="/svg/values/list/">list</a> [2028] => <a href="/svg/values/list-of-numbers/">list-of-numbers</a> [2029] => <a href="/svg/values/luminancetoalpha/">luminanceToAlpha</a> [2030] => <a href="/svg/values/magnify/">magnify</a> [2031] => <a href="/svg/values/matrix/">matrix</a> [2032] => <a href="/svg/values/media/">media</a> [2033] => <a href="/svg/values/meetorslice/">meetOrSlice</a> [2034] => <a href="/svg/values/min-x/">min-x</a> [2035] => <a href="/svg/values/min-y/">min-y</a> [2036] => <a href="/svg/values/name/">name</a> [2037] => <a href="/svg/values/never/">never</a> [2038] => <a href="/svg/values/no-composite/">no-composite</a> [2039] => <a href="/svg/values/no-referrer/">no-referrer</a> [2040] => <a href="/svg/values/no-referrer-when-downgrade/">no-referrer-when-downgrade</a> [2041] => <a href="/svg/values/none/">none</a> [2042] => <a href="/svg/values/nostitch/">noStitch</a> [2043] => <a href="/svg/values/number/">number</a> [2044] => <a href="/svg/values/number-optional-number/">number-optional-number</a> [2045] => <a href="/svg/values/objectboundingbox/">objectBoundingBox</a> [2046] => <a href="/svg/values/origin/">origin</a> [2047] => <a href="/svg/values/origin-when-cross-origin/">origin-when-cross-origin</a> [2048] => <a href="/svg/values/out/">out</a> [2049] => <a href="/svg/values/over/">over</a> [2050] => <a href="/svg/values/paced/">paced</a> [2051] => <a href="/svg/values/pad/">pad</a> [2052] => <a href="/svg/values/path-data/">path-data</a> [2053] => <a href="/svg/values/percentage/">percentage</a> [2054] => <a href="/svg/values/points/">points</a> [2055] => <a href="/svg/values/r/">R</a> [2056] => <a href="/svg/values/reflect/">reflect</a> [2057] => <a href="/svg/values/remove/">remove</a> [2058] => <a href="/svg/values/repeat/">repeat</a> [2059] => <a href="/svg/values/replace/">replace</a> [2060] => <a href="/svg/values/right/">right</a> [2061] => <a href="/svg/values/rotate/">rotate</a> [2062] => <a href="/svg/values/same-origin/">same-origin</a> [2063] => <a href="/svg/values/saturate/">saturate</a> [2064] => <a href="/svg/values/scale/">scale</a> [2065] => <a href="/svg/values/script/">script</a> [2066] => <a href="/svg/values/set-of-comma-separated-tokens/">set-of-comma-separated-tokens</a> [2067] => <a href="/svg/values/set-of-space-separated-tokens/">set-of-space-separated-tokens</a> [2068] => <a href="/svg/values/skewx/">skewx</a> [2069] => <a href="/svg/values/skewy/">skewy</a> [2070] => <a href="/svg/values/sourcealpha/">SourceAlpha</a> [2071] => <a href="/svg/values/sourcegraphic/">SourceGraphic</a> [2072] => <a href="/svg/values/spacing/">spacing</a> [2073] => <a href="/svg/values/spacingandglyphs/">spacingAndGlyphs</a> [2074] => <a href="/svg/values/spline/">spline</a> [2075] => <a href="/svg/values/stitch/">stitch</a> [2076] => <a href="/svg/values/stretch/">stretch</a> [2077] => <a href="/svg/values/strict-origin/">strict-origin</a> [2078] => <a href="/svg/values/strict-origin-when-cross-origin/">strict-origin-when-cross-origin</a> [2079] => <a href="/svg/values/string/">string</a> [2080] => <a href="/svg/values/strokepaint/">StrokePaint</a> [2081] => <a href="/svg/values/strokewidth/">strokeWidth</a> [2082] => <a href="/svg/values/sum/">sum</a> [2083] => <a href="/svg/values/table/">table</a> [2084] => <a href="/svg/values/tokens/">tokens</a> [2085] => <a href="/svg/values/top/">top</a> [2086] => <a href="/svg/values/transform-list/">transform-list</a> [2087] => <a href="/svg/values/translate/">translate</a> [2088] => <a href="/svg/values/true/">true</a> [2089] => <a href="/svg/values/turbulence/">turbulence</a> [2090] => <a href="/svg/values/unsafe-url/">unsafe-url</a> [2091] => <a href="/svg/values/url/">url</a> [2092] => <a href="/svg/values/use-credentials/">use-credentials</a> [2093] => <a href="/svg/values/userspaceonuse/">userSpaceOnUse</a> [2094] => <a href="/svg/values/value/">value</a> [2095] => <a href="/svg/values/whennotactive/">whenNotActive</a> [2096] => <a href="/svg/values/width/">width</a> [2097] => <a href="/svg/values/wrap/">wrap</a> [2098] => <a href="/svg/values/xml-name/">XML-Name</a> [2099] => <a href="/svg/values/xor/">xor</a> [2100] => </div> [2101] => </div> [2102] => <div class="nav-h1"> [2103] => <a id="nav-more-switch">MORE</a> [2104] => </div> [2105] => <div id="nav-more"> [2106] => <div class="nav-h2"> [2107] => <a href="/htaccess/">.htaccess</a> [2108] => </div> [2109] => <div class="nav-h2"> [2110] => <a href="/acme.sh/">acme.sh</a> [2111] => </div> [2112] => <div class="nav-h2"> [2113] => <a id="nav-applications-switch">Applications</a> [2114] => </div> [2115] => <div id="nav-applications"> [2116] => <h3>Bible</h3> [2117] => <div class="nav-content section"> [2118] => <a href="/applications/Bible-passages/">Bible Passages</a> [2119] => <a href="/applications/Bible-pictures/">Bible Pictures</a> [2120] => <a href="/applications/Jesus-loves-the-little-children/">Jesus Loves the Little Children</a> [2121] => <a href="/applications/merry-Christmas/">Merry Christmas</a> [2122] => <a href="/applications/one-man-one-woman-one-lifetime/">One Man. One Woman. One Lifetime.</a> [2123] => <a href="/applications/The-Armor-of-God/">The Armor of God</a> [2124] => </div> [2125] => <h3>Cards</h3> [2126] => <div class="nav-content section"> [2127] => <a href="/applications/euchre/">Euchre</a> [2128] => <a href="/applications/sevens/">Sevens</a> [2129] => <a href="/applications/solitaire/">Solitaire</a> [2130] => </div> [2131] => <h3>LEGO</h3> [2132] => <div class="nav-content section"> [2133] => <a href="/applications/lego-cannonball-bingo/">LEGO Cannonball Bingo</a> [2134] => <a href="/applications/lego-pandamonium/">LEGO Pandamonium</a> [2135] => <a href="/applications/lego-pirate-plunder/">LEGO Pirate Plunder</a> [2136] => <a href="/applications/lego-the-machine/">LEGO The Machine</a> [2137] => </div> [2138] => <h3>Other</h3> [2139] => <div class="nav-content section"> [2140] => <a href="/applications/miniature-golf/">Miniature Golf</a> [2141] => <a href="/applications/space-station/">Space Station</a> [2142] => </div> [2143] => </div> [2144] => <div class="nav-h2"> [2145] => <a href="/editor/">Editor</a> [2146] => </div> [2147] => <div class="nav-h2"> [2148] => <a href="/favicon/">Favicon</a> [2149] => </div> [2150] => <div class="nav-h2"> [2151] => <a id="nav-flash-switch">Flash</a> [2152] => </div> [2153] => <div id="nav-flash"> [2154] => <div class="nav-h3"> [2155] => <a href="/flash/detect/">Detect</a> [2156] => </div> [2157] => <div class="nav-h3"> [2158] => <a id="nav-flash-actionscript-switch">ActionScript</a> [2159] => </div> [2160] => <div id="nav-flash-actionscript"> [2161] => <div class="nav-content section"> [2162] => <a href="/flash/actionscript/embed/">Embed</a> [2163] => <a href="/flash/actionscript/load/">Load</a> [2164] => </div> [2165] => </div> [2166] => <div class="nav-h3"> [2167] => <a id="nav-flash-as3dmod-switch">AS3Dmod</a> [2168] => </div> [2169] => <div id="nav-flash-as3dmod"> [2170] => <h4>Modifiers</h4> [2171] => <div class="nav-content section"> [2172] => <a href="/flash/as3dmod/bend/">Bend</a> [2173] => <a href="/flash/as3dmod/bloat/">Bloat</a> [2174] => <a href="/flash/as3dmod/cloth/">Cloth</a> [2175] => <a href="/flash/as3dmod/noise/">Noise</a> [2176] => <a href="/flash/as3dmod/perlin/">Perlin</a> [2177] => <a href="/flash/as3dmod/pivot/">Pivot</a> [2178] => <a href="/flash/as3dmod/skew/">Skew</a> [2179] => <a href="/flash/as3dmod/taper/">Taper</a> [2180] => <a href="/flash/as3dmod/twist/">Twist</a> [2181] => </div> [2182] => <h4>Other</h4> [2183] => <div class="nav-content section"> [2184] => <a href="/flash/as3dmod/flag/">Flag</a> [2185] => </div> [2186] => </div> [2187] => <div class="nav-h3"> [2188] => <a href="/flash/flartoolkit/">FLARToolKit</a> [2189] => </div> [2190] => <div class="nav-h3"> [2191] => <a id="nav-flash-jiglibflash-switch">JigLibFlash</a> [2192] => </div> [2193] => <div id="nav-flash-jiglibflash"> [2194] => <h4>Objects</h4> [2195] => <div class="nav-content section"> [2196] => <a href="/flash/jiglibflash/jbox/">JBox</a> [2197] => <a href="/flash/jiglibflash/jcapsule/">JCapsule</a> [2198] => <a href="/flash/jiglibflash/jplane/">JPlane</a> [2199] => <a href="/flash/jiglibflash/jsphere/">JSphere</a> [2200] => </div> [2201] => <h4>Other</h4> [2202] => <div class="nav-content section"> [2203] => <a href="/flash/jiglibflash/physics/">Physics</a> [2204] => </div> [2205] => </div> [2206] => <div class="nav-h3"> [2207] => <a id="nav-flash-papervision3d-switch">Papervision3D</a> [2208] => </div> [2209] => <div id="nav-flash-papervision3d"> [2210] => <h4>Install</h4> [2211] => <div class="nav-content section"> [2212] => <a href="/flash/papervision3d/install/">Install</a> [2213] => </div> [2214] => <h4>Example</h4> [2215] => <div class="nav-content section"> [2216] => <a href="/flash/papervision3d/1/">1</a> [2217] => <a href="/flash/papervision3d/2/">2</a> [2218] => <a href="/flash/papervision3d/3/">3</a> [2219] => <a href="/flash/papervision3d/4/">4</a> [2220] => <a href="/flash/papervision3d/5/">5</a> [2221] => </div> [2222] => <h4>Cameras</h4> [2223] => <div class="nav-content section"> [2224] => <a href="/flash/papervision3d/camera3d/">Camera3D</a> [2225] => <a href="/flash/papervision3d/debugcamera3d/">DebugCamera3D</a> [2226] => <a href="/flash/papervision3d/springcamera3d/">SpringCamera3D</a> [2227] => </div> [2228] => <h4>Core</h4> [2229] => <div class="nav-content section"> [2230] => <a href="/flash/papervision3d/lines3d/">Lines3D</a> [2231] => <a href="/flash/papervision3d/fogfilter/">FogFilter</a> [2232] => </div> [2233] => <h4>Light</h4> [2234] => <div class="nav-content section"> [2235] => <a href="/flash/papervision3d/pointlight3d/">PointLight3D</a> [2236] => </div> [2237] => <h4>Materials</h4> [2238] => <div class="nav-content section"> [2239] => <a href="/flash/papervision3d/bitmapfilematerial/">BitmapFileMaterial</a> [2240] => <a href="/flash/papervision3d/bitmapmaterial/">BitmapMaterial</a> [2241] => <a href="/flash/papervision3d/bitmapviewportmaterial/">BitmapViewportMaterial</a> [2242] => <a href="/flash/papervision3d/colormaterial/">ColorMaterial</a> [2243] => <a href="/flash/papervision3d/compositematerial/">CompositeMaterial</a> [2244] => <a href="/flash/papervision3d/moviematerial/">MovieMaterial</a> [2245] => <a href="/flash/papervision3d/wireframematerial/">WireframeMaterial</a> [2246] => </div> [2247] => <h4>Shade Materials</h4> [2248] => <div class="nav-content section"> [2249] => <a href="/flash/papervision3d/cellmaterial/">CellMaterial</a> [2250] => <a href="/flash/papervision3d/envmapmaterial/">EnvMapMaterial</a> [2251] => <a href="/flash/papervision3d/flatshadematerial/">FlatShadeMaterial</a> [2252] => <a href="/flash/papervision3d/gouraudmaterial/">GouraudMaterial</a> [2253] => <a href="/flash/papervision3d/phongmaterial/">PhongMaterial</a> [2254] => </div> [2255] => <h4>Special Material</h4> [2256] => <div class="nav-content section"> [2257] => <a href="/flash/papervision3d/particlematerial/">ParticleMaterial</a> [2258] => </div> [2259] => <h4>Parser Objects</h4> [2260] => <div class="nav-content section"> [2261] => <a href="/flash/papervision3d/dae/">DAE</a> [2262] => <a href="/flash/papervision3d/kmz/">KMZ</a> [2263] => </div> [2264] => <h4>Primitive Objects</h4> [2265] => <div class="nav-content section"> [2266] => <a href="/flash/papervision3d/arrow/">Arrow</a> [2267] => <a href="/flash/papervision3d/cone/">Cone</a> [2268] => <a href="/flash/papervision3d/cube/">Cube</a> [2269] => <a href="/flash/papervision3d/cylinder/">Cylinder</a> [2270] => <a href="/flash/papervision3d/paperplane/">PaperPlane</a> [2271] => <a href="/flash/papervision3d/plane/">Plane</a> [2272] => <a href="/flash/papervision3d/sphere/">Sphere</a> [2273] => </div> [2274] => <h4>Special Objects</h4> [2275] => <div class="nav-content section"> [2276] => <a href="/flash/papervision3d/particlefield/">ParticleField</a> [2277] => <a href="/flash/papervision3d/ucs/">UCS</a> [2278] => </div> [2279] => <h4>Render</h4> [2280] => <div class="nav-content section"> [2281] => <a href="/flash/papervision3d/basicrenderengine/">BasicRenderEngine</a> [2282] => <a href="/flash/papervision3d/lazyrenderengine/">LazyRenderEngine</a> [2283] => <a href="/flash/papervision3d/quadrantrenderengine/">QuadrantRenderEngine</a> [2284] => </div> [2285] => <h4>Scene</h4> [2286] => <div class="nav-content section"> [2287] => <a href="/flash/papervision3d/scene3d/">Scene3D</a> [2288] => </div> [2289] => <h4>Typography</h4> [2290] => <div class="nav-content section"> [2291] => <a href="/flash/papervision3d/text3d/">Text3D</a> [2292] => </div> [2293] => <h4>Views</h4> [2294] => <div class="nav-content section"> [2295] => <a href="/flash/papervision3d/basicview/">BasicView</a> [2296] => <a href="/flash/papervision3d/reflectionview/">ReflectionView</a> [2297] => <a href="/flash/papervision3d/statsview/">StatsView</a> [2298] => <a href="/flash/papervision3d/viewport3d/">Viewport3D</a> [2299] => </div> [2300] => <h4>View Layers</h4> [2301] => <div class="nav-content section"> [2302] => <a href="/flash/papervision3d/bitmapeffectlayer/">BitmapEffectLayer</a> [2303] => <a href="/flash/papervision3d/viewportlayer/">ViewportLayer</a> [2304] => </div> [2305] => <h4>Other</h4> [2306] => <div class="nav-content section"> [2307] => <a href="/flash/papervision3d/anaglyph/">Anaglyph</a> [2308] => <a href="/flash/papervision3d/camera-move/">Camera Move</a> [2309] => <a href="/flash/papervision3d/camera-rotate/">Camera Rotate</a> [2310] => <a href="/flash/papervision3d/camera-target-move/">Camera Target Move</a> [2311] => <a href="/flash/papervision3d/object-move/">Object Move</a> [2312] => <a href="/flash/papervision3d/object-rotate/">Object Rotate</a> [2313] => <a href="/flash/papervision3d/object-scale/">Object Scale</a> [2314] => <a href="/flash/papervision3d/panorama/">Panorama</a> [2315] => </div> [2316] => </div> [2317] => </div> [2318] => <div class="nav-h2"> [2319] => <a id="nav-sketchup-switch">SketchUp</a> [2320] => </div> [2321] => <div id="nav-sketchup"> [2322] => <div class="nav-content section"> [2323] => <a href="/sketchup/papervision3d/">Papervision3D</a> [2324] => <a href="/sketchup/triangulate/">Triangulate</a> [2325] => </div> [2326] => </div> [2327] => <div class="nav-h2"> [2328] => <a id="nav-unity-switch">Unity</a> [2329] => </div> [2330] => <div id="nav-unity"> [2331] => <h3>Detect</h3> [2332] => <div class="nav-content section"> [2333] => <a href="/unity/detect/">Detect</a> [2334] => </div> [2335] => <h3>Games</h3> [2336] => <div class="nav-content section"> [2337] => <a href="/unity/air-hockey/">Air Hockey</a> [2338] => <a href="/unity/foosball/">Foosball</a> [2339] => <a href="/unity/pool/">Pool</a> [2340] => </div> [2341] => <h3>Unity</h3> [2342] => <div class="nav-content section"> [2343] => <a href="/unity/car/">Car</a> [2344] => <a href="/unity/lerpz-escapes/">Lerpz Escapes</a> [2345] => <a href="/unity/mecanim/">Mecanim</a> [2346] => </div> [2347] => </div> [2348] => <div class="nav-h2"> [2349] => <a id="nav-xcode-switch">Xcode</a> [2350] => </div> [2351] => <div id="nav-xcode"> [2352] => <h3>Example</h3> [2353] => <div class="nav-content section"> [2354] => <a href="/xcode/1/">1</a> [2355] => <a href="/xcode/2/">2</a> [2356] => <a href="/xcode/3/">3</a> [2357] => <a href="/xcode/4/">4</a> [2358] => <a href="/xcode/5/">5</a> [2359] => <a href="/xcode/6/">6</a> [2360] => </div> [2361] => <h3>CSV2Plist</h3> [2362] => <div class="nav-content section"> [2363] => <a href="/xcode/csv2plist/">CSV2Plist</a> [2364] => </div> [2365] => <h3>UI</h3> [2366] => <div class="nav-content section"> [2367] => <a href="/xcode/uiactivityindicatorview/">UIActivityIndicatorView</a> [2368] => <a href="/xcode/uibutton/">UIButton</a> [2369] => <a href="/xcode/uiimageview/">UIImageView</a> [2370] => <a href="/xcode/uilabel/">UILabel</a> [2371] => <a href="/xcode/uipagecontrol/">UIPageControl</a> [2372] => <a href="/xcode/uiprogressview/">UIProgressView</a> [2373] => <a href="/xcode/uisegmentedcontrol/">UISegmentedControl</a> [2374] => <a href="/xcode/uislider/">UISlider</a> [2375] => <a href="/xcode/uistepper/">UIStepper</a> [2376] => <a href="/xcode/uiswitch/">UISwitch</a> [2377] => <a href="/xcode/uitextfield/">UITextField</a> [2378] => </div> [2379] => </div> [2380] => </div> [2381] => </nav> [2382] => <footer> [2383] => <div class="boilerplate"> [2384] => <a href="/Jesus/">Jesus</a> [2385] => • <a href="/Bible/">Bible</a> [2386] => </div> [2387] => <div class="boilerplate"> [2388] => <a href="/html/">HTML</a> [2389] => • <a href="/css/">CSS</a> [2390] => • <a href="/js/">JS</a> [2391] => • <a href="/php/">PHP</a> [2392] => • <a href="/svg/">SVG</a> [2393] => • <a href="/more/">More</a> [2394] => </div> [2395] => <div class="boilerplate"> [2396] => <a href="/about/">About</a> [2397] => • <a href="/terms/">Terms</a> [2398] => </div> [2399] => <p id="copyright">© 2022 Osbo Design</p> [2400] => </footer> [2401] => <div id="foreground-header"> [2402] => <a href="/"><img alt="Home" id="home" src="/assets/svg/Home.svg" title="Home"></a> [2403] => <img alt="Menu" id="menu" src="/assets/svg/Menu.svg" title="Menu"> [2404] => <form action="/search/"> [2405] => <input id="search-site" name="search-site" title="Search" type="search"> [2406] => </form> [2407] => </div> [2408] => <div id="foreground-footer"> [2409] => <a href="#"><img alt="Top" id="top" src="/assets/svg/Top.svg" title="Top"></a> [2410] => </div> [2411] => </body> [2412] => </html> )
flags | FILE_USE_INCLUDE_PATH
<? $filename = "https://osbo.com"; $flags = FILE_USE_INCLUDE_PATH; $return = file($filename, $flags); print_r($return); ?>
Array ( [0] => <!doctype html> [1] => <html lang="en"> [2] => <head> [3] => <meta charset="utf-8"> [4] => <meta content="osbo.com" name="description"> [5] => <meta content="width=device-width" name="viewport"> [6] => <title>osbo.com</title> [7] => <link href="/assets/svg/Icon.svg" rel="icon"> [8] => <link href="/assets/css/" rel="stylesheet"> [9] => <script src="/assets/js/"></script> [10] => </head> [11] => <body> [12] => <div id="background"></div> [13] => <header> [14] => <h1>osbo.com</h1> [15] => </header> [16] => <main> [17] => <h2 id="html"><a href="#html">HTML</a></h2> [18] => <div class="editor1 section"> [19] => <form id="form1"> [20] => <textarea id="textarea1" spellcheck="false" title="Edit"><!doctype html> [21] => <html> [22] => <head> [23] => <title>HTML</title> [24] => </head> [25] => <body> [26] => <a href="/html/" target="_parent">HTML</a> [27] => </body> [28] => </html></textarea> [29] => <input id="input1-1" type="button" value="↻" title="Reset"> [30] => <input id="input2-1" type="button" value="→" title="Editor"> [31] => </form> [32] => <iframe id="iframe1" title="Editor"></iframe> [33] => </div> [34] => <h2 id="css"><a href="#css">CSS</a></h2> [35] => <div class="editor1 section"> [36] => <form id="form2"> [37] => <textarea id="textarea2" spellcheck="false" title="Edit"><!doctype html> [38] => <html> [39] => <head> [40] => <title>CSS</title> [41] => <style> [42] => a [43] => { [44] => background-color: rgba(255,0,0,0.1); [45] => color: red; [46] => } [47] => a:hover [48] => { [49] => background-color: rgba(0,0,0,0.1); [50] => color: black; [51] => } [52] => </style> [53] => </head> [54] => <body> [55] => <a href="/css/" target="_parent">CSS</a> [56] => </body> [57] => </html></textarea> [58] => <input id="input1-2" type="button" value="↻" title="Reset"> [59] => <input id="input2-2" type="button" value="→" title="Editor"> [60] => </form> [61] => <iframe id="iframe2" title="Editor"></iframe> [62] => </div> [63] => <h2 id="js"><a href="#js">JS</a></h2> [64] => <div class="editor1 section"> [65] => <form id="form3"> [66] => <textarea id="textarea3" spellcheck="false" title="Edit"><!doctype html> [67] => <html> [68] => <head> [69] => <title>JS</title> [70] => <style> [71] => a [72] => { [73] => background-color: rgba(0,255,0,0.1); [74] => color: green; [75] => } [76] => a:hover [77] => { [78] => background-color: rgba(0,0,0,0.1); [79] => color: black; [80] => } [81] => </style> [82] => </head> [83] => <body> [84] => <a href="/js/" target="_parent">JS</a> [85] => <script> [86] => function myfunction() [87] => { [88] => var element = document.querySelector("a"); [89] => element.style.position = "absolute"; [90] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [91] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [92] => } [93] => document.querySelector("a").addEventListener("mouseout", myfunction); [94] => </script> [95] => </body> [96] => </html></textarea> [97] => <input id="input1-3" type="button" value="↻" title="Reset"> [98] => <input id="input2-3" type="button" value="→" title="Editor"> [99] => </form> [100] => <iframe id="iframe3" title="Editor"></iframe> [101] => </div> [102] => <h2 id="php"><a href="#php">PHP</a></h2> [103] => <div class="editor3 section"> [104] => <pre><? [105] => [106] => echo '<!doctype html> [107] => <html> [108] => <head> [109] => <title>PHP</title> [110] => <style> [111] => a [112] => { [113] => background-color: rgba(255,0,255,0.1); [114] => color: purple; [115] => } [116] => a:hover [117] => { [118] => background-color: rgba(0,0,0,0.1); [119] => color: black; [120] => } [121] => </style> [122] => </head> [123] => <body> [124] => <a href="/php/" target="_parent">PHP</a> [125] => <script> [126] => function myfunction() [127] => { [128] => var element = document.querySelector("a"); [129] => element.style.position = "absolute"; [130] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [131] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [132] => } [133] => document.querySelector("a").addEventListener("mouseout", myfunction); [134] => </script> [135] => </body> [136] => </html>'; [137] => [138] => ?></pre> [139] => <pre><!doctype html> [140] => <html> [141] => <head> [142] => <title>PHP</title> [143] => <style> [144] => a [145] => { [146] => background-color: rgba(255,0,255,0.1); [147] => color: purple; [148] => } [149] => a:hover [150] => { [151] => background-color: rgba(0,0,0,0.1); [152] => color: black; [153] => } [154] => </style> [155] => </head> [156] => <body> [157] => <a href="/php/" target="_parent">PHP</a> [158] => <script> [159] => function myfunction() [160] => { [161] => var element = document.querySelector("a"); [162] => element.style.position = "absolute"; [163] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [164] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [165] => } [166] => document.querySelector("a").addEventListener("mouseout", myfunction); [167] => </script> [168] => </body> [169] => </html></pre> [170] => <iframe srcdoc="<!doctype html> [171] => <html> [172] => <head> [173] => <title>PHP</title> [174] => <style> [175] => a [176] => { [177] => background-color: rgba(255,0,255,0.1); [178] => color: purple; [179] => } [180] => a:hover [181] => { [182] => background-color: rgba(0,0,0,0.1); [183] => color: black; [184] => } [185] => </style> [186] => </head> [187] => <body> [188] => <a href="/php/" target="_parent">PHP</a> [189] => <script> [190] => function myfunction() [191] => { [192] => var element = document.querySelector("a"); [193] => element.style.position = "absolute"; [194] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [195] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [196] => } [197] => document.querySelector("a").addEventListener("mouseout", myfunction); [198] => </script> [199] => </body> [200] => </html>" title="Editor"></iframe> [201] => </div> [202] => <h2 id="svg"><a href="#svg">SVG</a></h2> [203] => <div class="editor1 section"> [204] => <form id="form4"> [205] => <textarea id="textarea4" spellcheck="false" title="Edit"><svg height="100%" width="100%" xmlns="http://www.w3.org/2000/svg"> [206] => <a href="/svg/" target="_parent"> [207] => <rect fill="yellow" height="100%" opacity="0.1" width="100%"/> [208] => <circle cx="50%" cy="50%" fill="yellow" r="50vh"/> [209] => <text dominant-baseline="middle" text-anchor="middle" x="50%" y="50%">SVG</text> [210] => </a> [211] => </svg></textarea> [212] => <input id="input1-4" type="button" value="↻" title="Reset"> [213] => <input id="input2-4" type="button" value="→" title="Editor"> [214] => </form> [215] => <iframe id="iframe4" title="Editor"></iframe> [216] => </div> [217] => </main> [218] => <nav> [219] => <div class="nav-h1"> [220] => <a href="/Jesus/">JESUS</a> [221] => </div> [222] => <div class="nav-h1"> [223] => <a id="nav-Bible-switch">BIBLE</a> [224] => </div> [225] => <div id="nav-Bible"> [226] => <h3>Overview</h3> [227] => <div class="nav-content section"> [228] => <a href="/Bible/">Overview</a> [229] => </div> [230] => <h3>Download</h3> [231] => <div class="nav-content section"> [232] => <a href="/Bible/download/">Download</a> [233] => </div> [234] => <h3>العربية</h3> [235] => <div class="nav-content section"> [236] => <a href="/Bible/asvd/">ASVD الكتاب المقدس ترجمة فانديك وسميث</a> [237] => </div> [238] => <h3>česky</h3> [239] => <div class="nav-content section"> [240] => <a href="/Bible/csbkr/">CSBKR Bible Kralická 1613</a> [241] => </div> [242] => <h3>Dansk</h3> [243] => <div class="nav-content section"> [244] => <a href="/Bible/da1871/">DA1871 Danske Bibel 1871</a> [245] => </div> [246] => <h3>Deutsch</h3> [247] => <div class="nav-content section"> [248] => <a href="/Bible/delut/">DELUT Luther Bible 1912</a> [249] => <a href="/Bible/elb/">ELB Elberfelder 1905</a> [250] => <a href="/Bible/elb71/">ELB71 Elberfelder 1871</a> [251] => </div> [252] => <h3>English</h3> [253] => <div class="nav-content section"> [254] => <a href="/Bible/asv/">ASV American Standard Version</a> [255] => <a href="/Bible/kjv/">KJV King James Version</a> [256] => <a href="/Bible/web/">WEB World English Bible</a> [257] => </div> [258] => <h3>Español</h3> [259] => <div class="nav-content section"> [260] => <a href="/Bible/rves/">RVES Reina-Valera Antigua</a> [261] => </div> [262] => <h3>Suomi</h3> [263] => <div class="nav-content section"> [264] => <a href="/Bible/fi1776/">FI1776 Finnish 1776</a> [265] => <a href="/Bible/finpr/">FINPR Finnish 1938</a> [266] => </div> [267] => <h3>Français</h3> [268] => <div class="nav-content section"> [269] => <a href="/Bible/fmar/">FMAR Martin 1744</a> [270] => <a href="/Bible/frdby/">FRDBY Bible Darby en français</a> [271] => <a href="/Bible/lsg/">LSG Louis Segond 1910</a> [272] => <a href="/Bible/ost/">OST Ostervald</a> [273] => </div> [274] => <h3>Magyar</h3> [275] => <div class="nav-content section"> [276] => <a href="/Bible/kar/">KAR Károli 1590</a> [277] => </div> [278] => <h3>Bahasa Indonesia</h3> [279] => <div class="nav-content section"> [280] => <a href="/Bible/idbar/">IDBAR Terjemahan Baru</a> [281] => </div> [282] => <h3>Italiano</h3> [283] => <div class="nav-content section"> [284] => <a href="/Bible/igd/">IGD Giovanni Diodati Bibbia</a> [285] => <a href="/Bible/itriv/">ITRIV Italian Riveduta 1927</a> [286] => </div> [287] => <h3>日本語</h3> [288] => <div class="nav-content section"> [289] => <a href="/Bible/ja1955/">JA1955 Colloquial Japanese (1955)</a> [290] => </div> [291] => <h3>Malagasy</h3> [292] => <div class="nav-content section"> [293] => <a href="/Bible/mg1865/">MG1865 Malagasy Bible</a> [294] => </div> [295] => <h3>te reo Māori</h3> [296] => <div class="nav-content section"> [297] => <a href="/Bible/maor/">MAOR Maori Bible</a> [298] => </div> [299] => <h3>한국어</h3> [300] => <div class="nav-content section"> [301] => <a href="/Bible/korvb/">KORVB 개역한글</a> [302] => </div> [303] => <h3>Nederlands</h3> [304] => <div class="nav-content section"> [305] => <a href="/Bible/sv1750/">SV1750 Statenvertaling</a> [306] => </div> [307] => <h3>Norsk</h3> [308] => <div class="nav-content section"> [309] => <a href="/Bible/norsk/">NORSK Det Norsk Bibelselskap 1930</a> [310] => </div> [311] => <h3>Polski</h3> [312] => <div class="nav-content section"> [313] => <a href="/Bible/pbg/">PBG Biblia Gdańska</a> [314] => </div> [315] => <h3>Português</h3> [316] => <div class="nav-content section"> [317] => <a href="/Bible/aa/">AA Almeida Atualizada</a> [318] => </div> [319] => <h3>Română</h3> [320] => <div class="nav-content section"> [321] => <a href="/Bible/rmnn/">RMNN Romanian Cornilescu 1928</a> [322] => <a href="/Bible/vdc/">VDC Versiunea Dumitru Cornilescu</a> [323] => <a href="/Bible/vdcc/">VDCC Versiunea Dumitru Cornilescu Corectată</a> [324] => </div> [325] => <h3>Pyccкий</h3> [326] => <div class="nav-content section"> [327] => <a href="/Bible/rursv/">RURSV Синодальный перевод</a> [328] => </div> [329] => <h3>Shqip</h3> [330] => <div class="nav-content section"> [331] => <a href="/Bible/albb/">ALBB Albanian Bible</a> [332] => </div> [333] => <h3>Svenska</h3> [334] => <div class="nav-content section"> [335] => <a href="/Bible/sk73/">SK73 Karl XII 1873</a> [336] => <a href="/Bible/sven/">SVEN Svenska 1917</a> [337] => </div> [338] => <h3>Wikang Tagalog</h3> [339] => <div class="nav-content section"> [340] => <a href="/Bible/tlab/">TLAB Ang Biblia</a> [341] => </div> [342] => <h3>українська</h3> [343] => <div class="nav-content section"> [344] => <a href="/Bible/ubio/">UBIO Біблія в пер. Івана Огієнка, 1962</a> [345] => <a href="/Bible/ukrk/">UKRK Біблія в пер. П.Куліша та І.Пулюя, 1905</a> [346] => </div> [347] => <h3>Tiếng Việt</h3> [348] => <div class="nav-content section"> [349] => <a href="/Bible/vi1934/">VI1934 1934 Vietnamese Bible</a> [350] => </div> [351] => <h3>简体中文</h3> [352] => <div class="nav-content section"> [353] => <a href="/Bible/cuvs/">CUVS 简体和合本</a> [354] => </div> [355] => <h3>繁體中文</h3> [356] => <div class="nav-content section"> [357] => <a href="/Bible/cuv/">CUV 和合本</a> [358] => </div> [359] => </div> [360] => <div class="nav-h1"> [361] => <a id="nav-html-switch">HTML</a> [362] => </div> [363] => <div id="nav-html"> [364] => <h3>Overview</h3> [365] => <div class="nav-content section"> [366] => <a href="/html/">Overview</a> [367] => </div> [368] => <h3>Attributes</h3> [369] => <div class="nav-content section"> [370] => <a href="/html/attributes/accesskey/">accesskey</a> [371] => <a href="/html/attributes/autocapitalize/">autocapitalize</a> [372] => <a href="/html/attributes/class/">class</a> [373] => <a href="/html/attributes/contenteditable/">contenteditable</a> [374] => <a href="/html/attributes/data/">data</a> [375] => <a href="/html/attributes/dir/">dir</a> [376] => <a href="/html/attributes/draggable/">draggable</a> [377] => <a href="/html/attributes/hidden/">hidden</a> [378] => <a href="/html/attributes/id/">id</a> [379] => <a href="/html/attributes/inputmode/">inputmode</a> [380] => <a href="/html/attributes/lang/">lang</a> [381] => <a href="/html/attributes/spellcheck/">spellcheck</a> [382] => <a href="/html/attributes/style/">style</a> [383] => <a href="/html/attributes/tabindex/">tabindex</a> [384] => <a href="/html/attributes/title/">title</a> [385] => </div> [386] => <h3>Elements</h3> [387] => <div class="nav-content section"> [388] => <a href="/html/elements/!doctype/">!doctype</a> [389] => <a href="/html/elements/a/">a</a> [390] => <a href="/html/elements/abbr/">abbr</a> [391] => <a href="/html/elements/address/">address</a> [392] => <a href="/html/elements/area/">area</a> [393] => <a href="/html/elements/article/">article</a> [394] => <a href="/html/elements/aside/">aside</a> [395] => <a href="/html/elements/audio/">audio</a> [396] => <a href="/html/elements/b/">b</a> [397] => <a href="/html/elements/base/">base</a> [398] => <a href="/html/elements/bdi/">bdi</a> [399] => <a href="/html/elements/bdo/">bdo</a> [400] => <a href="/html/elements/blockquote/">blockquote</a> [401] => <a href="/html/elements/body/">body</a> [402] => <a href="/html/elements/br/">br</a> [403] => <a href="/html/elements/button/">button</a> [404] => <a href="/html/elements/canvas/">canvas</a> [405] => <a href="/html/elements/caption/">caption</a> [406] => <a href="/html/elements/cite/">cite</a> [407] => <a href="/html/elements/code/">code</a> [408] => <a href="/html/elements/col/">col</a> [409] => <a href="/html/elements/colgroup/">colgroup</a> [410] => <a href="/html/elements/data/">data</a> [411] => <a href="/html/elements/datalist/">datalist</a> [412] => <a href="/html/elements/dd/">dd</a> [413] => <a href="/html/elements/del/">del</a> [414] => <a href="/html/elements/details/">details</a> [415] => <a href="/html/elements/dfn/">dfn</a> [416] => <a href="/html/elements/dialog/">dialog</a> [417] => <a href="/html/elements/div/">div</a> [418] => <a href="/html/elements/dl/">dl</a> [419] => <a href="/html/elements/dt/">dt</a> [420] => <a href="/html/elements/em/">em</a> [421] => <a href="/html/elements/embed/">embed</a> [422] => <a href="/html/elements/fieldset/">fieldset</a> [423] => <a href="/html/elements/figcaption/">figcaption</a> [424] => <a href="/html/elements/figure/">figure</a> [425] => <a href="/html/elements/footer/">footer</a> [426] => <a href="/html/elements/form/">form</a> [427] => <a href="/html/elements/h1/">h1</a> [428] => <a href="/html/elements/h2/">h2</a> [429] => <a href="/html/elements/h3/">h3</a> [430] => <a href="/html/elements/h4/">h4</a> [431] => <a href="/html/elements/h5/">h5</a> [432] => <a href="/html/elements/h6/">h6</a> [433] => <a href="/html/elements/head/">head</a> [434] => <a href="/html/elements/header/">header</a> [435] => <a href="/html/elements/hgroup/">hgroup</a> [436] => <a href="/html/elements/hr/">hr</a> [437] => <a href="/html/elements/html/">html</a> [438] => <a href="/html/elements/i/">i</a> [439] => <a href="/html/elements/iframe/">iframe</a> [440] => <a href="/html/elements/img/">img</a> [441] => <a href="/html/elements/input/">input</a> [442] => <a href="/html/elements/ins/">ins</a> [443] => <a href="/html/elements/kbd/">kbd</a> [444] => <a href="/html/elements/label/">label</a> [445] => <a href="/html/elements/legend/">legend</a> [446] => <a href="/html/elements/li/">li</a> [447] => <a href="/html/elements/link/">link</a> [448] => <a href="/html/elements/main/">main</a> [449] => <a href="/html/elements/map/">map</a> [450] => <a href="/html/elements/mark/">mark</a> [451] => <a href="/html/elements/meta/">meta</a> [452] => <a href="/html/elements/meter/">meter</a> [453] => <a href="/html/elements/nav/">nav</a> [454] => <a href="/html/elements/noscript/">noscript</a> [455] => <a href="/html/elements/object/">object</a> [456] => <a href="/html/elements/ol/">ol</a> [457] => <a href="/html/elements/optgroup/">optgroup</a> [458] => <a href="/html/elements/option/">option</a> [459] => <a href="/html/elements/output/">output</a> [460] => <a href="/html/elements/p/">p</a> [461] => <a href="/html/elements/param/">param</a> [462] => <a href="/html/elements/picture/">picture</a> [463] => <a href="/html/elements/pre/">pre</a> [464] => <a href="/html/elements/progress/">progress</a> [465] => <a href="/html/elements/q/">q</a> [466] => <a href="/html/elements/rb/">rb</a> [467] => <a href="/html/elements/rp/">rp</a> [468] => <a href="/html/elements/rt/">rt</a> [469] => <a href="/html/elements/rtc/">rtc</a> [470] => <a href="/html/elements/ruby/">ruby</a> [471] => <a href="/html/elements/s/">s</a> [472] => <a href="/html/elements/samp/">samp</a> [473] => <a href="/html/elements/script/">script</a> [474] => <a href="/html/elements/section/">section</a> [475] => <a href="/html/elements/select/">select</a> [476] => <a href="/html/elements/slot/">slot</a> [477] => <a href="/html/elements/small/">small</a> [478] => <a href="/html/elements/source/">source</a> [479] => <a href="/html/elements/span/">span</a> [480] => <a href="/html/elements/strong/">strong</a> [481] => <a href="/html/elements/style/">style</a> [482] => <a href="/html/elements/sub/">sub</a> [483] => <a href="/html/elements/summary/">summary</a> [484] => <a href="/html/elements/sup/">sup</a> [485] => <a href="/html/elements/table/">table</a> [486] => <a href="/html/elements/tbody/">tbody</a> [487] => <a href="/html/elements/td/">td</a> [488] => <a href="/html/elements/template/">template</a> [489] => <a href="/html/elements/textarea/">textarea</a> [490] => <a href="/html/elements/tfoot/">tfoot</a> [491] => <a href="/html/elements/th/">th</a> [492] => <a href="/html/elements/thead/">thead</a> [493] => <a href="/html/elements/time/">time</a> [494] => <a href="/html/elements/title/">title</a> [495] => <a href="/html/elements/tr/">tr</a> [496] => <a href="/html/elements/track/">track</a> [497] => <a href="/html/elements/u/">u</a> [498] => <a href="/html/elements/ul/">ul</a> [499] => <a href="/html/elements/var/">var</a> [500] => <a href="/html/elements/wbr/">wbr</a> [501] => </div> [502] => <h3>Other</h3> [503] => <div class="nav-content section"> [504] => <a href="/html/characters/">Characters</a> [505] => <a href="/html/comments/">Comments</a> [506] => <a href="/html/datatypes/">Datatypes</a> [507] => </div> [508] => </div> [509] => <div class="nav-h1"> [510] => <a id="nav-css-switch">CSS</a> [511] => </div> [512] => <div id="nav-css"> [513] => <h3>Overview</h3> [514] => <div class="nav-content section"> [515] => <a href="/css/">Overview</a> [516] => </div> [517] => <h3>Properties</h3> [518] => <div class="nav-content section"> [519] => <a href="/css/properties/align-content/">align-content</a> [520] => <a href="/css/properties/align-items/">align-items</a> [521] => <a href="/css/properties/align-self/">align-self</a> [522] => <a href="/css/properties/all/">all</a> [523] => <a href="/css/properties/animation/">animation</a> [524] => <a href="/css/properties/animation-delay/">animation-delay</a> [525] => <a href="/css/properties/animation-direction/">animation-direction</a> [526] => <a href="/css/properties/animation-duration/">animation-duration</a> [527] => <a href="/css/properties/animation-fill-mode/">animation-fill-mode</a> [528] => <a href="/css/properties/animation-iteration-count/">animation-iteration-count</a> [529] => <a href="/css/properties/animation-name/">animation-name</a> [530] => <a href="/css/properties/animation-play-state/">animation-play-state</a> [531] => <a href="/css/properties/animation-timing-function/">animation-timing-function</a> [532] => <a href="/css/properties/backdrop-filter/">backdrop-filter</a> [533] => <a href="/css/properties/backface-visibility/">backface-visibility</a> [534] => <a href="/css/properties/background/">background</a> [535] => <a href="/css/properties/background-attachment/">background-attachment</a> [536] => <a href="/css/properties/background-blend-mode/">background-blend-mode</a> [537] => <a href="/css/properties/background-clip/">background-clip</a> [538] => <a href="/css/properties/background-color/">background-color</a> [539] => <a href="/css/properties/background-image/">background-image</a> [540] => <a href="/css/properties/background-origin/">background-origin</a> [541] => <a href="/css/properties/background-position/">background-position</a> [542] => <a href="/css/properties/background-repeat/">background-repeat</a> [543] => <a href="/css/properties/background-size/">background-size</a> [544] => <a href="/css/properties/block-ellipsis/">block-ellipsis</a> [545] => <a href="/css/properties/block-size/">block-size</a> [546] => <a href="/css/properties/border/">border</a> [547] => <a href="/css/properties/border-block/">border-block</a> [548] => <a href="/css/properties/border-block-color/">border-block-color</a> [549] => <a href="/css/properties/border-block-end/">border-block-end</a> [550] => <a href="/css/properties/border-block-end-color/">border-block-end-color</a> [551] => <a href="/css/properties/border-block-end-style/">border-block-end-style</a> [552] => <a href="/css/properties/border-block-end-width/">border-block-end-width</a> [553] => <a href="/css/properties/border-block-start/">border-block-start</a> [554] => <a href="/css/properties/border-block-start-color/">border-block-start-color</a> [555] => <a href="/css/properties/border-block-start-style/">border-block-start-style</a> [556] => <a href="/css/properties/border-block-start-width/">border-block-start-width</a> [557] => <a href="/css/properties/border-block-style/">border-block-style</a> [558] => <a href="/css/properties/border-block-width/">border-block-width</a> [559] => <a href="/css/properties/border-bottom/">border-bottom</a> [560] => <a href="/css/properties/border-bottom-color/">border-bottom-color</a> [561] => <a href="/css/properties/border-bottom-left-radius/">border-bottom-left-radius</a> [562] => <a href="/css/properties/border-bottom-right-radius/">border-bottom-right-radius</a> [563] => <a href="/css/properties/border-bottom-style/">border-bottom-style</a> [564] => <a href="/css/properties/border-bottom-width/">border-bottom-width</a> [565] => <a href="/css/properties/border-collapse/">border-collapse</a> [566] => <a href="/css/properties/border-color/">border-color</a> [567] => <a href="/css/properties/border-end-end-radius/">border-end-end-radius</a> [568] => <a href="/css/properties/border-end-start-radius/">border-end-start-radius</a> [569] => <a href="/css/properties/border-image/">border-image</a> [570] => <a href="/css/properties/border-image-outset/">border-image-outset</a> [571] => <a href="/css/properties/border-image-repeat/">border-image-repeat</a> [572] => <a href="/css/properties/border-image-slice/">border-image-slice</a> [573] => <a href="/css/properties/border-image-source/">border-image-source</a> [574] => <a href="/css/properties/border-image-width/">border-image-width</a> [575] => <a href="/css/properties/border-inline/">border-inline</a> [576] => <a href="/css/properties/border-inline-color/">border-inline-color</a> [577] => <a href="/css/properties/border-inline-end/">border-inline-end</a> [578] => <a href="/css/properties/border-inline-end-color/">border-inline-end-color</a> [579] => <a href="/css/properties/border-inline-end-style/">border-inline-end-style</a> [580] => <a href="/css/properties/border-inline-end-width/">border-inline-end-width</a> [581] => <a href="/css/properties/border-inline-start/">border-inline-start</a> [582] => <a href="/css/properties/border-inline-start-color/">border-inline-start-color</a> [583] => <a href="/css/properties/border-inline-start-style/">border-inline-start-style</a> [584] => <a href="/css/properties/border-inline-start-width/">border-inline-start-width</a> [585] => <a href="/css/properties/border-inline-style/">border-inline-style</a> [586] => <a href="/css/properties/border-inline-width/">border-inline-width</a> [587] => <a href="/css/properties/border-left/">border-left</a> [588] => <a href="/css/properties/border-left-color/">border-left-color</a> [589] => <a href="/css/properties/border-left-style/">border-left-style</a> [590] => <a href="/css/properties/border-left-width/">border-left-width</a> [591] => <a href="/css/properties/border-radius/">border-radius</a> [592] => <a href="/css/properties/border-right/">border-right</a> [593] => <a href="/css/properties/border-right-color/">border-right-color</a> [594] => <a href="/css/properties/border-right-style/">border-right-style</a> [595] => <a href="/css/properties/border-right-width/">border-right-width</a> [596] => <a href="/css/properties/border-spacing/">border-spacing</a> [597] => <a href="/css/properties/border-start-end-radius/">border-start-end-radius</a> [598] => <a href="/css/properties/border-start-start-radius/">border-start-start-radius</a> [599] => <a href="/css/properties/border-style/">border-style</a> [600] => <a href="/css/properties/border-top/">border-top</a> [601] => <a href="/css/properties/border-top-color/">border-top-color</a> [602] => <a href="/css/properties/border-top-left-radius/">border-top-left-radius</a> [603] => <a href="/css/properties/border-top-right-radius/">border-top-right-radius</a> [604] => <a href="/css/properties/border-top-style/">border-top-style</a> [605] => <a href="/css/properties/border-top-width/">border-top-width</a> [606] => <a href="/css/properties/border-width/">border-width</a> [607] => <a href="/css/properties/bottom/">bottom</a> [608] => <a href="/css/properties/box-decoration-break/">box-decoration-break</a> [609] => <a href="/css/properties/box-shadow/">box-shadow</a> [610] => <a href="/css/properties/box-sizing/">box-sizing</a> [611] => <a href="/css/properties/caption-side/">caption-side</a> [612] => <a href="/css/properties/caret/">caret</a> [613] => <a href="/css/properties/caret-color/">caret-color</a> [614] => <a href="/css/properties/caret-shape/">caret-shape</a> [615] => <a href="/css/properties/clear/">clear</a> [616] => <a href="/css/properties/clip/">clip</a> [617] => <a href="/css/properties/clip-path/">clip-path</a> [618] => <a href="/css/properties/color/">color</a> [619] => <a href="/css/properties/color-scheme/">color-scheme</a> [620] => <a href="/css/properties/column-count/">column-count</a> [621] => <a href="/css/properties/column-fill/">column-fill</a> [622] => <a href="/css/properties/column-gap/">column-gap</a> [623] => <a href="/css/properties/column-rule/">column-rule</a> [624] => <a href="/css/properties/column-rule-color/">column-rule-color</a> [625] => <a href="/css/properties/column-rule-style/">column-rule-style</a> [626] => <a href="/css/properties/column-rule-width/">column-rule-width</a> [627] => <a href="/css/properties/column-span/">column-span</a> [628] => <a href="/css/properties/column-width/">column-width</a> [629] => <a href="/css/properties/columns/">columns</a> [630] => <a href="/css/properties/contain/">contain</a> [631] => <a href="/css/properties/content/">content</a> [632] => <a href="/css/properties/content-visibility/">content-visibility</a> [633] => <a href="/css/properties/continue/">continue</a> [634] => <a href="/css/properties/counter-increment/">counter-increment</a> [635] => <a href="/css/properties/counter-reset/">counter-reset</a> [636] => <a href="/css/properties/counter-set/">counter-set</a> [637] => <a href="/css/properties/cursor/">cursor</a> [638] => <a href="/css/properties/direction/">direction</a> [639] => <a href="/css/properties/display/">display</a> [640] => <a href="/css/properties/empty-cells/">empty-cells</a> [641] => <a href="/css/properties/filter/">filter</a> [642] => <a href="/css/properties/flex/">flex</a> [643] => <a href="/css/properties/flex-basis/">flex-basis</a> [644] => <a href="/css/properties/flex-direction/">flex-direction</a> [645] => <a href="/css/properties/flex-flow/">flex-flow</a> [646] => <a href="/css/properties/flex-grow/">flex-grow</a> [647] => <a href="/css/properties/flex-shrink/">flex-shrink</a> [648] => <a href="/css/properties/flex-wrap/">flex-wrap</a> [649] => <a href="/css/properties/float/">float</a> [650] => <a href="/css/properties/font/">font</a> [651] => <a href="/css/properties/font-family/">font-family</a> [652] => <a href="/css/properties/font-feature-settings/">font-feature-settings</a> [653] => <a href="/css/properties/font-kerning/">font-kerning</a> [654] => <a href="/css/properties/font-optical-sizing/">font-optical-sizing</a> [655] => <a href="/css/properties/font-size/">font-size</a> [656] => <a href="/css/properties/font-size-adjust/">font-size-adjust</a> [657] => <a href="/css/properties/font-style/">font-style</a> [658] => <a href="/css/properties/font-variant/">font-variant</a> [659] => <a href="/css/properties/font-variant-caps/">font-variant-caps</a> [660] => <a href="/css/properties/font-variant-numeric/">font-variant-numeric</a> [661] => <a href="/css/properties/font-variant-position/">font-variant-position</a> [662] => <a href="/css/properties/font-variation-settings/">font-variation-settings</a> [663] => <a href="/css/properties/font-weight/">font-weight</a> [664] => <a href="/css/properties/gap/">gap</a> [665] => <a href="/css/properties/grid/">grid</a> [666] => <a href="/css/properties/grid-area/">grid-area</a> [667] => <a href="/css/properties/grid-auto-columns/">grid-auto-columns</a> [668] => <a href="/css/properties/grid-auto-flow/">grid-auto-flow</a> [669] => <a href="/css/properties/grid-auto-rows/">grid-auto-rows</a> [670] => <a href="/css/properties/grid-column/">grid-column</a> [671] => <a href="/css/properties/grid-column-end/">grid-column-end</a> [672] => <a href="/css/properties/grid-column-start/">grid-column-start</a> [673] => <a href="/css/properties/grid-row/">grid-row</a> [674] => <a href="/css/properties/grid-row-end/">grid-row-end</a> [675] => <a href="/css/properties/grid-row-start/">grid-row-start</a> [676] => <a href="/css/properties/grid-template/">grid-template</a> [677] => <a href="/css/properties/grid-template-areas/">grid-template-areas</a> [678] => <a href="/css/properties/grid-template-columns/">grid-template-columns</a> [679] => <a href="/css/properties/grid-template-rows/">grid-template-rows</a> [680] => <a href="/css/properties/height/">height</a> [681] => <a href="/css/properties/hyphens/">hyphens</a> [682] => <a href="/css/properties/inline-size/">inline-size</a> [683] => <a href="/css/properties/inset/">inset</a> [684] => <a href="/css/properties/inset-block/">inset-block</a> [685] => <a href="/css/properties/inset-block-end/">inset-block-end</a> [686] => <a href="/css/properties/inset-block-start/">inset-block-start</a> [687] => <a href="/css/properties/inset-inline/">inset-inline</a> [688] => <a href="/css/properties/inset-inline-end/">inset-inline-end</a> [689] => <a href="/css/properties/inset-inline-start/">inset-inline-start</a> [690] => <a href="/css/properties/isolation/">isolation</a> [691] => <a href="/css/properties/justify-content/">justify-content</a> [692] => <a href="/css/properties/justify-items/">justify-items</a> [693] => <a href="/css/properties/justify-self/">justify-self</a> [694] => <a href="/css/properties/left/">left</a> [695] => <a href="/css/properties/letter-spacing/">letter-spacing</a> [696] => <a href="/css/properties/line-break/">line-break</a> [697] => <a href="/css/properties/line-clamp/">line-clamp</a> [698] => <a href="/css/properties/line-height/">line-height</a> [699] => <a href="/css/properties/list-style/">list-style</a> [700] => <a href="/css/properties/list-style-image/">list-style-image</a> [701] => <a href="/css/properties/list-style-position/">list-style-position</a> [702] => <a href="/css/properties/list-style-type/">list-style-type</a> [703] => <a href="/css/properties/margin/">margin</a> [704] => <a href="/css/properties/margin-block/">margin-block</a> [705] => <a href="/css/properties/margin-block-end/">margin-block-end</a> [706] => <a href="/css/properties/margin-block-start/">margin-block-start</a> [707] => <a href="/css/properties/margin-bottom/">margin-bottom</a> [708] => <a href="/css/properties/margin-inline/">margin-inline</a> [709] => <a href="/css/properties/margin-inline-end/">margin-inline-end</a> [710] => <a href="/css/properties/margin-inline-start/">margin-inline-start</a> [711] => <a href="/css/properties/margin-left/">margin-left</a> [712] => <a href="/css/properties/margin-right/">margin-right</a> [713] => <a href="/css/properties/margin-top/">margin-top</a> [714] => <a href="/css/properties/mask/">mask</a> [715] => <a href="/css/properties/mask-border/">mask-border</a> [716] => <a href="/css/properties/mask-border-mode/">mask-border-mode</a> [717] => <a href="/css/properties/mask-border-outset/">mask-border-outset</a> [718] => <a href="/css/properties/mask-border-repeat/">mask-border-repeat</a> [719] => <a href="/css/properties/mask-border-slice/">mask-border-slice</a> [720] => <a href="/css/properties/mask-border-source/">mask-border-source</a> [721] => <a href="/css/properties/mask-border-width/">mask-border-width</a> [722] => <a href="/css/properties/mask-clip/">mask-clip</a> [723] => <a href="/css/properties/mask-composite/">mask-composite</a> [724] => <a href="/css/properties/mask-image/">mask-image</a> [725] => <a href="/css/properties/mask-mode/">mask-mode</a> [726] => <a href="/css/properties/mask-origin/">mask-origin</a> [727] => <a href="/css/properties/mask-position/">mask-position</a> [728] => <a href="/css/properties/mask-repeat/">mask-repeat</a> [729] => <a href="/css/properties/mask-size/">mask-size</a> [730] => <a href="/css/properties/mask-type/">mask-type</a> [731] => <a href="/css/properties/max-block-size/">max-block-size</a> [732] => <a href="/css/properties/max-height/">max-height</a> [733] => <a href="/css/properties/max-inline-size/">max-inline-size</a> [734] => <a href="/css/properties/max-lines/">max-lines</a> [735] => <a href="/css/properties/max-width/">max-width</a> [736] => <a href="/css/properties/min-block-size/">min-block-size</a> [737] => <a href="/css/properties/min-height/">min-height</a> [738] => <a href="/css/properties/min-inline-size/">min-inline-size</a> [739] => <a href="/css/properties/min-width/">min-width</a> [740] => <a href="/css/properties/mix-blend-mode/">mix-blend-mode</a> [741] => <a href="/css/properties/object-fit/">object-fit</a> [742] => <a href="/css/properties/object-position/">object-position</a> [743] => <a href="/css/properties/opacity/">opacity</a> [744] => <a href="/css/properties/orphans/">orphans</a> [745] => <a href="/css/properties/outline/">outline</a> [746] => <a href="/css/properties/outline-color/">outline-color</a> [747] => <a href="/css/properties/outline-style/">outline-style</a> [748] => <a href="/css/properties/outline-width/">outline-width</a> [749] => <a href="/css/properties/overflow/">overflow</a> [750] => <a href="/css/properties/overflow-wrap/">overflow-wrap</a> [751] => <a href="/css/properties/overflow-x/">overflow-x</a> [752] => <a href="/css/properties/overflow-y/">overflow-y</a> [753] => <a href="/css/properties/padding/">padding</a> [754] => <a href="/css/properties/padding-bottom/">padding-bottom</a> [755] => <a href="/css/properties/padding-left/">padding-left</a> [756] => <a href="/css/properties/padding-right/">padding-right</a> [757] => <a href="/css/properties/padding-top/">padding-top</a> [758] => <a href="/css/properties/paint-order/">paint-order</a> [759] => <a href="/css/properties/perspective/">perspective</a> [760] => <a href="/css/properties/perspective-origin/">perspective-origin</a> [761] => <a href="/css/properties/place-content/">place-content</a> [762] => <a href="/css/properties/place-items/">place-items</a> [763] => <a href="/css/properties/place-self/">place-self</a> [764] => <a href="/css/properties/pointer-events/">pointer-events</a> [765] => <a href="/css/properties/position/">position</a> [766] => <a href="/css/properties/print-color-adjust/">print-color-adjust</a> [767] => <a href="/css/properties/quotes/">quotes</a> [768] => <a href="/css/properties/resize/">resize</a> [769] => <a href="/css/properties/right/">right</a> [770] => <a href="/css/properties/rotate/">rotate</a> [771] => <a href="/css/properties/row-gap/">row-gap</a> [772] => <a href="/css/properties/scale/">scale</a> [773] => <a href="/css/properties/scroll-behavior/">scroll-behavior</a> [774] => <a href="/css/properties/scroll-margin/">scroll-margin</a> [775] => <a href="/css/properties/scroll-margin-block/">scroll-margin-block</a> [776] => <a href="/css/properties/scroll-margin-block-end/">scroll-margin-block-end</a> [777] => <a href="/css/properties/scroll-margin-block-start/">scroll-margin-block-start</a> [778] => <a href="/css/properties/scroll-margin-bottom/">scroll-margin-bottom</a> [779] => <a href="/css/properties/scroll-margin-inline/">scroll-margin-inline</a> [780] => <a href="/css/properties/scroll-margin-inline-end/">scroll-margin-inline-end</a> [781] => <a href="/css/properties/scroll-margin-inline-start/">scroll-margin-inline-start</a> [782] => <a href="/css/properties/scroll-margin-left/">scroll-margin-left</a> [783] => <a href="/css/properties/scroll-margin-right/">scroll-margin-right</a> [784] => <a href="/css/properties/scroll-margin-top/">scroll-margin-top</a> [785] => <a href="/css/properties/scroll-padding/">scroll-padding</a> [786] => <a href="/css/properties/scroll-padding-block/">scroll-padding-block</a> [787] => <a href="/css/properties/scroll-padding-block-end/">scroll-padding-block-end</a> [788] => <a href="/css/properties/scroll-padding-block-start/">scroll-padding-block-start</a> [789] => <a href="/css/properties/scroll-padding-bottom/">scroll-padding-bottom</a> [790] => <a href="/css/properties/scroll-padding-inline/">scroll-padding-inline</a> [791] => <a href="/css/properties/scroll-padding-inline-end/">scroll-padding-inline-end</a> [792] => <a href="/css/properties/scroll-padding-inline-start/">scroll-padding-inline-start</a> [793] => <a href="/css/properties/scroll-padding-left/">scroll-padding-left</a> [794] => <a href="/css/properties/scroll-padding-right/">scroll-padding-right</a> [795] => <a href="/css/properties/scroll-padding-top/">scroll-padding-top</a> [796] => <a href="/css/properties/scroll-snap-align/">scroll-snap-align</a> [797] => <a href="/css/properties/scroll-snap-stop/">scroll-snap-stop</a> [798] => <a href="/css/properties/scroll-snap-type/">scroll-snap-type</a> [799] => <a href="/css/properties/scrollbar-color/">scrollbar-color</a> [800] => <a href="/css/properties/scrollbar-width/">scrollbar-width</a> [801] => <a href="/css/properties/shape-image-threshold/">shape-image-threshold</a> [802] => <a href="/css/properties/shape-margin/">shape-margin</a> [803] => <a href="/css/properties/shape-outside/">shape-outside</a> [804] => <a href="/css/properties/tab-size/">tab-size</a> [805] => <a href="/css/properties/table-layout/">table-layout</a> [806] => <a href="/css/properties/text-align/">text-align</a> [807] => <a href="/css/properties/text-align-last/">text-align-last</a> [808] => <a href="/css/properties/text-combine-upright/">text-combine-upright</a> [809] => <a href="/css/properties/text-decoration/">text-decoration</a> [810] => <a href="/css/properties/text-decoration-color/">text-decoration-color</a> [811] => <a href="/css/properties/text-decoration-line/">text-decoration-line</a> [812] => <a href="/css/properties/text-decoration-skip-ink/">text-decoration-skip-ink</a> [813] => <a href="/css/properties/text-decoration-style/">text-decoration-style</a> [814] => <a href="/css/properties/text-decoration-thickness/">text-decoration-thickness</a> [815] => <a href="/css/properties/text-emphasis/">text-emphasis</a> [816] => <a href="/css/properties/text-emphasis-color/">text-emphasis-color</a> [817] => <a href="/css/properties/text-emphasis-position/">text-emphasis-position</a> [818] => <a href="/css/properties/text-emphasis-style/">text-emphasis-style</a> [819] => <a href="/css/properties/text-indent/">text-indent</a> [820] => <a href="/css/properties/text-justify/">text-justify</a> [821] => <a href="/css/properties/text-orientation/">text-orientation</a> [822] => <a href="/css/properties/text-overflow/">text-overflow</a> [823] => <a href="/css/properties/text-shadow/">text-shadow</a> [824] => <a href="/css/properties/text-transform/">text-transform</a> [825] => <a href="/css/properties/text-underline-offset/">text-underline-offset</a> [826] => <a href="/css/properties/text-underline-position/">text-underline-position</a> [827] => <a href="/css/properties/top/">top</a> [828] => <a href="/css/properties/transform/">transform</a> [829] => <a href="/css/properties/transform-box/">transform-box</a> [830] => <a href="/css/properties/transform-origin/">transform-origin</a> [831] => <a href="/css/properties/transform-style/">transform-style</a> [832] => <a href="/css/properties/transition/">transition</a> [833] => <a href="/css/properties/transition-delay/">transition-delay</a> [834] => <a href="/css/properties/transition-duration/">transition-duration</a> [835] => <a href="/css/properties/transition-property/">transition-property</a> [836] => <a href="/css/properties/transition-timing-function/">transition-timing-function</a> [837] => <a href="/css/properties/translate/">translate</a> [838] => <a href="/css/properties/unicode-bidi/">unicode-bidi</a> [839] => <a href="/css/properties/vertical-align/">vertical-align</a> [840] => <a href="/css/properties/visibility/">visibility</a> [841] => <a href="/css/properties/white-space/">white-space</a> [842] => <a href="/css/properties/widows/">widows</a> [843] => <a href="/css/properties/width/">width</a> [844] => <a href="/css/properties/word-break/">word-break</a> [845] => <a href="/css/properties/word-spacing/">word-spacing</a> [846] => <a href="/css/properties/word-wrap/">word-wrap</a> [847] => <a href="/css/properties/writing-mode/">writing-mode</a> [848] => <a href="/css/properties/z-index/">z-index</a> [849] => </div> [850] => <h3>Pseudo-Classes</h3> [851] => <div class="nav-content section"> [852] => <a href="/css/pseudo-classes/active/">active</a> [853] => <a href="/css/pseudo-classes/any-link/">any-link</a> [854] => <a href="/css/pseudo-classes/blank/">blank</a> [855] => <a href="/css/pseudo-classes/checked/">checked</a> [856] => <a href="/css/pseudo-classes/default/">default</a> [857] => <a href="/css/pseudo-classes/dir/">dir</a> [858] => <a href="/css/pseudo-classes/disabled/">disabled</a> [859] => <a href="/css/pseudo-classes/empty/">empty</a> [860] => <a href="/css/pseudo-classes/enabled/">enabled</a> [861] => <a href="/css/pseudo-classes/first-child/">first-child</a> [862] => <a href="/css/pseudo-classes/first-of-type/">first-of-type</a> [863] => <a href="/css/pseudo-classes/focus/">focus</a> [864] => <a href="/css/pseudo-classes/focus-within/">focus-within</a> [865] => <a href="/css/pseudo-classes/fullscreen/">fullscreen</a> [866] => <a href="/css/pseudo-classes/hover/">hover</a> [867] => <a href="/css/pseudo-classes/in-range/">in-range</a> [868] => <a href="/css/pseudo-classes/indeterminate/">indeterminate</a> [869] => <a href="/css/pseudo-classes/invalid/">invalid</a> [870] => <a href="/css/pseudo-classes/lang/">lang</a> [871] => <a href="/css/pseudo-classes/last-child/">last-child</a> [872] => <a href="/css/pseudo-classes/last-of-type/">last-of-type</a> [873] => <a href="/css/pseudo-classes/link/">link</a> [874] => <a href="/css/pseudo-classes/local-link/">local-link</a> [875] => <a href="/css/pseudo-classes/not/">not</a> [876] => <a href="/css/pseudo-classes/nth-child/">nth-child</a> [877] => <a href="/css/pseudo-classes/nth-col/">nth-col</a> [878] => <a href="/css/pseudo-classes/nth-last-child/">nth-last-child</a> [879] => <a href="/css/pseudo-classes/nth-last-col/">nth-last-col</a> [880] => <a href="/css/pseudo-classes/nth-last-of-type/">nth-last-of-type</a> [881] => <a href="/css/pseudo-classes/nth-of-type/">nth-of-type</a> [882] => <a href="/css/pseudo-classes/only-child/">only-child</a> [883] => <a href="/css/pseudo-classes/only-of-type/">only-of-type</a> [884] => <a href="/css/pseudo-classes/optional/">optional</a> [885] => <a href="/css/pseudo-classes/out-of-range/">out-of-range</a> [886] => <a href="/css/pseudo-classes/placeholder-shown/">placeholder-shown</a> [887] => <a href="/css/pseudo-classes/read-only/">read-only</a> [888] => <a href="/css/pseudo-classes/read-write/">read-write</a> [889] => <a href="/css/pseudo-classes/required/">required</a> [890] => <a href="/css/pseudo-classes/root/">root</a> [891] => <a href="/css/pseudo-classes/scope/">scope</a> [892] => <a href="/css/pseudo-classes/target/">target</a> [893] => <a href="/css/pseudo-classes/valid/">valid</a> [894] => <a href="/css/pseudo-classes/visited/">visited</a> [895] => </div> [896] => <h3>Pseudo-Elements</h3> [897] => <div class="nav-content section"> [898] => <a href="/css/pseudo-elements/after/">after</a> [899] => <a href="/css/pseudo-elements/before/">before</a> [900] => <a href="/css/pseudo-elements/first-letter/">first-letter</a> [901] => <a href="/css/pseudo-elements/first-line/">first-line</a> [902] => <a href="/css/pseudo-elements/marker/">marker</a> [903] => <a href="/css/pseudo-elements/placeholder/">placeholder</a> [904] => <a href="/css/pseudo-elements/selection/">selection</a> [905] => </div> [906] => <h3>Units</h3> [907] => <div class="nav-content section"> [908] => <a href="/css/units/ch/">ch</a> [909] => <a href="/css/units/cm/">cm</a> [910] => <a href="/css/units/deg/">deg</a> [911] => <a href="/css/units/dpcm/">dpcm</a> [912] => <a href="/css/units/dpi/">dpi</a> [913] => <a href="/css/units/dppx/">dppx</a> [914] => <a href="/css/units/em/">em</a> [915] => <a href="/css/units/ex/">ex</a> [916] => <a href="/css/units/grad/">grad</a> [917] => <a href="/css/units/in/">in</a> [918] => <a href="/css/units/mm/">mm</a> [919] => <a href="/css/units/ms/">ms</a> [920] => <a href="/css/units/pc/">pc</a> [921] => <a href="/css/units/pt/">pt</a> [922] => <a href="/css/units/px/">px</a> [923] => <a href="/css/units/q/">Q</a> [924] => <a href="/css/units/rad/">rad</a> [925] => <a href="/css/units/rem/">rem</a> [926] => <a href="/css/units/s/">s</a> [927] => <a href="/css/units/turn/">turn</a> [928] => <a href="/css/units/vh/">vh</a> [929] => <a href="/css/units/vmax/">vmax</a> [930] => <a href="/css/units/vmin/">vmin</a> [931] => <a href="/css/units/vw/">vw</a> [932] => </div> [933] => </div> [934] => <div class="nav-h1"> [935] => <a id="nav-js-switch">JS</a> [936] => </div> [937] => <div id="nav-js"> [938] => <h3>Overview</h3> [939] => <div class="nav-content section"> [940] => <a href="/js/">Overview</a> [941] => </div> [942] => <h3>Declarations</h3> [943] => <div class="nav-content section"> [944] => <a href="/js/const/">const</a> [945] => <a href="/js/let/">let</a> [946] => <a href="/js/var/">var</a> [947] => </div> [948] => <h3>Conditional Statements</h3> [949] => <div class="nav-content section"> [950] => <a href="/js/if/">if</a> [951] => <a href="/js/else/">else</a> [952] => <a href="/js/else-if/">else if</a> [953] => <a href="/js/switch/">switch</a> [954] => <a href="/js/try-catch/">try catch</a> [955] => </div> [956] => <h3>Loops</h3> [957] => <div class="nav-content section"> [958] => <a href="/js/do-while/">do while</a> [959] => <a href="/js/for/">for</a> [960] => <a href="/js/for-in/">for in</a> [961] => <a href="/js/for-of/">for of</a> [962] => <a href="/js/while/">while</a> [963] => </div> [964] => <h3>AbortController</h3> [965] => <div class="nav-content section"> [966] => <a href="/js/abort/">abort</a> [967] => <a href="/js/abortcontroller/">AbortController</a> [968] => <a href="/js/signal/">signal</a> [969] => </div> [970] => <h3>ChildNode</h3> [971] => <div class="nav-content section"> [972] => <a href="/js/after/">after</a> [973] => <a href="/js/before/">before</a> [974] => <a href="/js/remove/">remove</a> [975] => <a href="/js/replacewith/">replaceWith</a> [976] => </div> [977] => <h3>CustomEvent</h3> [978] => <div class="nav-content section"> [979] => <a href="/js/customevent/">CustomEvent</a> [980] => <a href="/js/detail/">detail</a> [981] => </div> [982] => <h3>Event</h3> [983] => <div class="nav-content section"> [984] => <a href="/js/bubbles/">bubbles</a> [985] => <a href="/js/cancelable/">cancelable</a> [986] => <a href="/js/composed/">composed</a> [987] => <a href="/js/composedpath/">composedPath</a> [988] => <a href="/js/currenttarget/">currentTarget</a> [989] => <a href="/js/defaultprevented/">defaultPrevented</a> [990] => <a href="/js/event/">Event</a> [991] => <a href="/js/eventphase/">eventPhase</a> [992] => <a href="/js/istrusted/">isTrusted</a> [993] => <a href="/js/preventdefault/">preventDefault</a> [994] => <a href="/js/stopimmediatepropagation/">stopImmediatePropagation</a> [995] => <a href="/js/stoppropagation/">stopPropagation</a> [996] => <a href="/js/target/">target</a> [997] => <a href="/js/timestamp/">timeStamp</a> [998] => <a href="/js/type/">type</a> [999] => </div> [1000] => <h3>EventTarget</h3> [1001] => <div class="nav-content section"> [1002] => <a href="/js/addeventlistener/">addEventListener</a> [1003] => <a href="/js/dispatchevent/">dispatchEvent</a> [1004] => <a href="/js/eventtarget/">EventTarget</a> [1005] => <a href="/js/removeeventlistener/">removeEventListener</a> [1006] => </div> [1007] => <h3>HTMLCollection</h3> [1008] => <div class="nav-content section"> [1009] => <a href="/js/item/">item</a> [1010] => <a href="/js/length/">length</a> [1011] => <a href="/js/nameditem/">namedItem</a> [1012] => </div> [1013] => <h3>NodeList</h3> [1014] => <div class="nav-content section"> [1015] => <a href="/js/item/">item</a> [1016] => <a href="/js/length/">length</a> [1017] => </div> [1018] => <h3>NonDocumentTypeChildNode</h3> [1019] => <div class="nav-content section"> [1020] => <a href="/js/nextelementsibling/">nextElementSibling</a> [1021] => <a href="/js/previouselementsibling/">previousElementSibling</a> [1022] => </div> [1023] => <h3>ParentNode</h3> [1024] => <div class="nav-content section"> [1025] => <a href="/js/append/">append</a> [1026] => <a href="/js/children/">children</a> [1027] => <a href="/js/firstelementchild/">firstElementChild</a> [1028] => <a href="/js/lastelementchild/">lastElementChild</a> [1029] => <a href="/js/prepend/">prepend</a> [1030] => <a href="/js/queryselector/">querySelector</a> [1031] => <a href="/js/queryselectorall/">querySelectorAll</a> [1032] => <a href="/js/replacechildren/">replaceChildren</a> [1033] => </div> [1034] => <h3>Other</h3> [1035] => <div class="nav-content section"> [1036] => <a href="/js/array/">Array</a> [1037] => <a href="/js/comments/">Comments</a> [1038] => <a href="/js/enable/">Enable</a> [1039] => <a href="/js/functions/">Functions</a> [1040] => <a href="/js/alert/">alert</a> [1041] => <a href="/js/confirm/">confirm</a> [1042] => <a href="/js/createcontextualfragment/">createContextualFragment</a> [1043] => <a href="/js/date/">Date</a> [1044] => <a href="/js/getelementbyid/">getElementById</a> [1045] => <a href="/js/getelementsbyclassname/">getElementsByClassName</a> [1046] => <a href="/js/getelementsbytagname/">getElementsByTagName</a> [1047] => <a href="/js/getelementsbytagnamens/">getElementsByTagNameNS</a> [1048] => <a href="/js/infinity/">Infinity</a> [1049] => <a href="/js/innerhtml/">innerHTML</a> [1050] => <a href="/js/insertadjacenthtml/">insertAdjacentHTML</a> [1051] => <a href="/js/outerhtml/">outerHTML</a> [1052] => <a href="/js/print/">print</a> [1053] => <a href="/js/prompt/">prompt</a> [1054] => </div> [1055] => </div> [1056] => <div class="nav-h1"> [1057] => <a id="nav-php-switch">PHP</a> [1058] => </div> [1059] => <div id="nav-php"> [1060] => <h3>Overview</h3> [1061] => <div class="nav-content section"> [1062] => <a href="/php/">Overview</a> [1063] => </div> [1064] => <h3>Array</h3> [1065] => <div class="nav-content section"> [1066] => <a href="/php/functions/array/">array</a> [1067] => <a href="/php/functions/array_change_key_case/">array_change_key_case</a> [1068] => <a href="/php/functions/array_chunk/">array_chunk</a> [1069] => <a href="/php/functions/array_column/">array_column</a> [1070] => <a href="/php/functions/array_combine/">array_combine</a> [1071] => <a href="/php/functions/array_count_values/">array_count_values</a> [1072] => <a href="/php/functions/array_diff/">array_diff</a> [1073] => <a href="/php/functions/array_diff_assoc/">array_diff_assoc</a> [1074] => <a href="/php/functions/array_diff_key/">array_diff_key</a> [1075] => <a href="/php/functions/array_diff_uassoc/">array_diff_uassoc</a> [1076] => <a href="/php/functions/array_diff_ukey/">array_diff_ukey</a> [1077] => <a href="/php/functions/array_fill/">array_fill</a> [1078] => <a href="/php/functions/array_fill_keys/">array_fill_keys</a> [1079] => <a href="/php/functions/array_filter/">array_filter</a> [1080] => <a href="/php/functions/array_flip/">array_flip</a> [1081] => <a href="/php/functions/array_intersect/">array_intersect</a> [1082] => <a href="/php/functions/array_intersect_assoc/">array_intersect_assoc</a> [1083] => <a href="/php/functions/array_intersect_key/">array_intersect_key</a> [1084] => <a href="/php/functions/array_intersect_uassoc/">array_intersect_uassoc</a> [1085] => <a href="/php/functions/array_intersect_ukey/">array_intersect_ukey</a> [1086] => <a href="/php/functions/array_key_exists/">array_key_exists</a> [1087] => <a href="/php/functions/array_key_first/">array_key_first</a> [1088] => <a href="/php/functions/array_key_last/">array_key_last</a> [1089] => <a href="/php/functions/array_keys/">array_keys</a> [1090] => <a href="/php/functions/array_map/">array_map</a> [1091] => <a href="/php/functions/array_merge/">array_merge</a> [1092] => <a href="/php/functions/array_merge_recursive/">array_merge_recursive</a> [1093] => <a href="/php/functions/array_multisort/">array_multisort</a> [1094] => <a href="/php/functions/array_pad/">array_pad</a> [1095] => <a href="/php/functions/array_pop/">array_pop</a> [1096] => <a href="/php/functions/array_product/">array_product</a> [1097] => <a href="/php/functions/array_push/">array_push</a> [1098] => <a href="/php/functions/array_rand/">array_rand</a> [1099] => <a href="/php/functions/array_reduce/">array_reduce</a> [1100] => <a href="/php/functions/array_replace/">array_replace</a> [1101] => <a href="/php/functions/array_replace_recursive/">array_replace_recursive</a> [1102] => <a href="/php/functions/array_reverse/">array_reverse</a> [1103] => <a href="/php/functions/array_search/">array_search</a> [1104] => <a href="/php/functions/array_shift/">array_shift</a> [1105] => <a href="/php/functions/array_slice/">array_slice</a> [1106] => <a href="/php/functions/array_splice/">array_splice</a> [1107] => <a href="/php/functions/array_sum/">array_sum</a> [1108] => <a href="/php/functions/array_udiff/">array_udiff</a> [1109] => <a href="/php/functions/array_udiff_assoc/">array_udiff_assoc</a> [1110] => <a href="/php/functions/array_udiff_uassoc/">array_udiff_uassoc</a> [1111] => <a href="/php/functions/array_uintersect/">array_uintersect</a> [1112] => <a href="/php/functions/array_uintersect_assoc/">array_uintersect_assoc</a> [1113] => <a href="/php/functions/array_uintersect_uassoc/">array_uintersect_uassoc</a> [1114] => <a href="/php/functions/array_unique/">array_unique</a> [1115] => <a href="/php/functions/array_unshift/">array_unshift</a> [1116] => <a href="/php/functions/array_values/">array_values</a> [1117] => <a href="/php/functions/array_walk/">array_walk</a> [1118] => <a href="/php/functions/array_walk_recursive/">array_walk_recursive</a> [1119] => <a href="/php/functions/arsort/">arsort</a> [1120] => <a href="/php/functions/asort/">asort</a> [1121] => <a href="/php/functions/compact/">compact</a> [1122] => <a href="/php/functions/count/">count</a> [1123] => <a href="/php/functions/current/">current</a> [1124] => <a href="/php/functions/end/">end</a> [1125] => <a href="/php/functions/extract/">extract</a> [1126] => <a href="/php/functions/in_array/">in_array</a> [1127] => <a href="/php/functions/key/">key</a> [1128] => <a href="/php/functions/key_exists/">key_exists</a> [1129] => <a href="/php/functions/krsort/">krsort</a> [1130] => <a href="/php/functions/ksort/">ksort</a> [1131] => <a href="/php/functions/list/">list</a> [1132] => <a href="/php/functions/natcasesort/">natcasesort</a> [1133] => <a href="/php/functions/natsort/">natsort</a> [1134] => <a href="/php/functions/next/">next</a> [1135] => <a href="/php/functions/pos/">pos</a> [1136] => <a href="/php/functions/prev/">prev</a> [1137] => <a href="/php/functions/range/">range</a> [1138] => <a href="/php/functions/reset/">reset</a> [1139] => <a href="/php/functions/rsort/">rsort</a> [1140] => <a href="/php/functions/shuffle/">shuffle</a> [1141] => <a href="/php/functions/sizeof/">sizeof</a> [1142] => <a href="/php/functions/sort/">sort</a> [1143] => <a href="/php/functions/uasort/">uasort</a> [1144] => <a href="/php/functions/uksort/">uksort</a> [1145] => <a href="/php/functions/usort/">usort</a> [1146] => </div> [1147] => <h3>Calendar</h3> [1148] => <div class="nav-content section"> [1149] => <a href="/php/functions/cal_days_in_month/">cal_days_in_month</a> [1150] => <a href="/php/functions/cal_from_jd/">cal_from_jd</a> [1151] => <a href="/php/functions/cal_info/">cal_info</a> [1152] => <a href="/php/functions/cal_to_jd/">cal_to_jd</a> [1153] => <a href="/php/functions/easter_date/">easter_date</a> [1154] => <a href="/php/functions/easter_days/">easter_days</a> [1155] => <a href="/php/functions/frenchtojd/">frenchtojd</a> [1156] => <a href="/php/functions/gregoriantojd/">gregoriantojd</a> [1157] => <a href="/php/functions/jddayofweek/">jddayofweek</a> [1158] => <a href="/php/functions/jdmonthname/">jdmonthname</a> [1159] => <a href="/php/functions/jdtofrench/">jdtofrench</a> [1160] => <a href="/php/functions/jdtogregorian/">jdtogregorian</a> [1161] => <a href="/php/functions/jdtojewish/">jdtojewish</a> [1162] => <a href="/php/functions/jdtojulian/">jdtojulian</a> [1163] => <a href="/php/functions/jdtounix/">jdtounix</a> [1164] => <a href="/php/functions/jewishtojd/">jewishtojd</a> [1165] => <a href="/php/functions/juliantojd/">juliantojd</a> [1166] => <a href="/php/functions/unixtojd/">unixtojd</a> [1167] => </div> [1168] => <h3>Class / Object</h3> [1169] => <div class="nav-content section"> [1170] => <a href="/php/functions/class_alias/">class_alias</a> [1171] => <a href="/php/functions/class_exists/">class_exists</a> [1172] => <a href="/php/functions/get_called_class/">get_called_class</a> [1173] => <a href="/php/functions/get_class_methods/">get_class_methods</a> [1174] => <a href="/php/functions/get_class/">get_class</a> [1175] => <a href="/php/functions/get_class_vars/">get_class_vars</a> [1176] => <a href="/php/functions/get_declared_classes/">get_declared_classes</a> [1177] => <a href="/php/functions/get_declared_interfaces/">get_declared_interfaces</a> [1178] => <a href="/php/functions/get_declared_traits/">get_declared_traits</a> [1179] => <a href="/php/functions/get_object_vars/">get_object_vars</a> [1180] => <a href="/php/functions/get_parent_class/">get_parent_class</a> [1181] => <a href="/php/functions/interface_exists/">interface_exists</a> [1182] => <a href="/php/functions/is_a/">is_a</a> [1183] => <a href="/php/functions/is_subclass_of/">is_subclass_of</a> [1184] => <a href="/php/functions/method_exists/">method_exists</a> [1185] => <a href="/php/functions/property_exists/">property_exists</a> [1186] => <a href="/php/functions/trait_exists/">trait_exists</a> [1187] => </div> [1188] => <h3>CSPRNG</h3> [1189] => <div class="nav-content section"> [1190] => <a href="/php/functions/random_bytes/">random_bytes</a> [1191] => <a href="/php/functions/random_int/">random_int</a> [1192] => </div> [1193] => <h3>Ctype</h3> [1194] => <div class="nav-content section"> [1195] => <a href="/php/functions/ctype_alnum/">ctype_alnum</a> [1196] => <a href="/php/functions/ctype_alpha/">ctype_alpha</a> [1197] => <a href="/php/functions/ctype_cntrl/">ctype_cntrl</a> [1198] => <a href="/php/functions/ctype_digit/">ctype_digit</a> [1199] => <a href="/php/functions/ctype_graph/">ctype_graph</a> [1200] => <a href="/php/functions/ctype_lower/">ctype_lower</a> [1201] => <a href="/php/functions/ctype_print/">ctype_print</a> [1202] => <a href="/php/functions/ctype_punct/">ctype_punct</a> [1203] => <a href="/php/functions/ctype_space/">ctype_space</a> [1204] => <a href="/php/functions/ctype_upper/">ctype_upper</a> [1205] => <a href="/php/functions/ctype_xdigit/">ctype_xdigit</a> [1206] => </div> [1207] => <h3>cURL</h3> [1208] => <div class="nav-content section"> [1209] => <a href="/php/functions/curl_close/">curl_close</a> [1210] => <a href="/php/functions/curl_copy_handle/">curl_copy_handle</a> [1211] => <a href="/php/functions/curl_errno/">curl_errno</a> [1212] => <a href="/php/functions/curl_error/">curl_error</a> [1213] => <a href="/php/functions/curl_escape/">curl_escape</a> [1214] => <a href="/php/functions/curl_exec/">curl_exec</a> [1215] => <a href="/php/functions/curl_file_create/">curl_file_create</a> [1216] => <a href="/php/functions/curl_getinfo/">curl_getinfo</a> [1217] => <a href="/php/functions/curl_init/">curl_init</a> [1218] => <a href="/php/functions/curl_multi_add_handle/">curl_multi_add_handle</a> [1219] => <a href="/php/functions/curl_multi_close/">curl_multi_close</a> [1220] => <a href="/php/functions/curl_multi_errno/">curl_multi_errno</a> [1221] => <a href="/php/functions/curl_multi_exec/">curl_multi_exec</a> [1222] => <a href="/php/functions/curl_multi_getcontent/">curl_multi_getcontent</a> [1223] => <a href="/php/functions/curl_multi_info_read/">curl_multi_info_read</a> [1224] => <a href="/php/functions/curl_multi_init/">curl_multi_init</a> [1225] => <a href="/php/functions/curl_multi_remove_handle/">curl_multi_remove_handle</a> [1226] => <a href="/php/functions/curl_multi_select/">curl_multi_select</a> [1227] => <a href="/php/functions/curl_multi_setopt/">curl_multi_setopt</a> [1228] => <a href="/php/functions/curl_multi_strerror/">curl_multi_strerror</a> [1229] => <a href="/php/functions/curl_pause/">curl_pause</a> [1230] => <a href="/php/functions/curl_reset/">curl_reset</a> [1231] => <a href="/php/functions/curl_setopt/">curl_setopt</a> [1232] => <a href="/php/functions/curl_setopt_array/">curl_setopt_array</a> [1233] => <a href="/php/functions/curl_share_close/">curl_share_close</a> [1234] => <a href="/php/functions/curl_share_errno/">curl_share_errno</a> [1235] => <a href="/php/functions/curl_share_init/">curl_share_init</a> [1236] => <a href="/php/functions/curl_share_setopt/">curl_share_setopt</a> [1237] => <a href="/php/functions/curl_share_strerror/">curl_share_strerror</a> [1238] => <a href="/php/functions/curl_strerror/">curl_strerror</a> [1239] => <a href="/php/functions/curl_unescape/">curl_unescape</a> [1240] => <a href="/php/functions/curl_version/">curl_version</a> [1241] => </div> [1242] => <h3>Date / Time</h3> [1243] => <div class="nav-content section"> [1244] => <a href="/php/functions/checkdate/">checkdate</a> [1245] => <a href="/php/functions/date/">date</a> [1246] => <a href="/php/functions/date_add/">date_add</a> [1247] => <a href="/php/functions/date_create/">date_create</a> [1248] => <a href="/php/functions/date_create_from_format/">date_create_from_format</a> [1249] => <a href="/php/functions/date_create_immutable/">date_create_immutable</a> [1250] => <a href="/php/functions/date_create_immutable_from_format/">date_create_immutable_from_format</a> [1251] => <a href="/php/functions/date_date_set/">date_date_set</a> [1252] => <a href="/php/functions/date_default_timezone_get/">date_default_timezone_get</a> [1253] => <a href="/php/functions/date_default_timezone_set/">date_default_timezone_set</a> [1254] => <a href="/php/functions/date_diff/">date_diff</a> [1255] => <a href="/php/functions/date_format/">date_format</a> [1256] => <a href="/php/functions/date_get_last_errors/">date_get_last_errors</a> [1257] => <a href="/php/functions/date_interval_create_from_date_string/">date_interval_create_from_date_string</a> [1258] => <a href="/php/functions/date_interval_format/">date_interval_format</a> [1259] => <a href="/php/functions/date_isodate_set/">date_isodate_set</a> [1260] => <a href="/php/functions/date_modify/">date_modify</a> [1261] => <a href="/php/functions/date_offset_get/">date_offset_get</a> [1262] => <a href="/php/functions/date_parse/">date_parse</a> [1263] => <a href="/php/functions/date_parse_from_format/">date_parse_from_format</a> [1264] => <a href="/php/functions/date_sub/">date_sub</a> [1265] => <a href="/php/functions/date_sun_info/">date_sun_info</a> [1266] => <a href="/php/functions/date_sunrise/">date_sunrise</a> [1267] => <a href="/php/functions/date_sunset/">date_sunset</a> [1268] => <a href="/php/functions/date_time_set/">date_time_set</a> [1269] => <a href="/php/functions/date_timestamp_get/">date_timestamp_get</a> [1270] => <a href="/php/functions/date_timestamp_set/">date_timestamp_set</a> [1271] => <a href="/php/functions/date_timezone_get/">date_timezone_get</a> [1272] => <a href="/php/functions/date_timezone_set/">date_timezone_set</a> [1273] => <a href="/php/functions/getdate/">getdate</a> [1274] => <a href="/php/functions/gettimeofday/">gettimeofday</a> [1275] => <a href="/php/functions/gmdate/">gmdate</a> [1276] => <a href="/php/functions/gmmktime/">gmmktime</a> [1277] => <a href="/php/functions/gmstrftime/">gmstrftime</a> [1278] => <a href="/php/functions/idate/">idate</a> [1279] => <a href="/php/functions/localtime/">localtime</a> [1280] => <a href="/php/functions/microtime/">microtime</a> [1281] => <a href="/php/functions/mktime/">mktime</a> [1282] => <a href="/php/functions/strftime/">strftime</a> [1283] => <a href="/php/functions/strptime/">strptime</a> [1284] => <a href="/php/functions/strtotime/">strtotime</a> [1285] => <a href="/php/functions/time/">time</a> [1286] => <a href="/php/functions/timezone_abbreviations_list/">timezone_abbreviations_list</a> [1287] => <a href="/php/functions/timezone_identifiers_list/">timezone_identifiers_list</a> [1288] => <a href="/php/functions/timezone_location_get/">timezone_location_get</a> [1289] => <a href="/php/functions/timezone_name_from_abbr/">timezone_name_from_abbr</a> [1290] => <a href="/php/functions/timezone_name_get/">timezone_name_get</a> [1291] => <a href="/php/functions/timezone_offset_get/">timezone_offset_get</a> [1292] => <a href="/php/functions/timezone_open/">timezone_open</a> [1293] => <a href="/php/functions/timezone_transitions_get/">timezone_transitions_get</a> [1294] => <a href="/php/functions/timezone_version_get/">timezone_version_get</a> [1295] => </div> [1296] => <h3>Error Handling</h3> [1297] => <div class="nav-content section"> [1298] => <a href="/php/functions/debug_backtrace/">debug_backtrace</a> [1299] => <a href="/php/functions/debug_print_backtrace/">debug_print_backtrace</a> [1300] => <a href="/php/functions/error_clear_last/">error_clear_last</a> [1301] => <a href="/php/functions/error_get_last/">error_get_last</a> [1302] => <a href="/php/functions/error_log/">error_log</a> [1303] => <a href="/php/functions/error_reporting/">error_reporting</a> [1304] => <a href="/php/functions/restore_error_handler/">restore_error_handler</a> [1305] => <a href="/php/functions/restore_exception_handler/">restore_exception_handler</a> [1306] => <a href="/php/functions/set_error_handler/">set_error_handler</a> [1307] => <a href="/php/functions/set_exception_handler/">set_exception_handler</a> [1308] => <a href="/php/functions/trigger_error/">trigger_error</a> [1309] => <a href="/php/functions/user_error/">user_error</a> [1310] => </div> [1311] => <h3>Filesystem</h3> [1312] => <div class="nav-content section"> [1313] => <a href="/php/functions/basename/">basename</a> [1314] => <a href="/php/functions/chgrp/">chgrp</a> [1315] => <a href="/php/functions/chmod/">chmod</a> [1316] => <a href="/php/functions/chown/">chown</a> [1317] => <a href="/php/functions/clearstatcache/">clearstatcache</a> [1318] => <a href="/php/functions/copy/">copy</a> [1319] => <a href="/php/functions/dirname/">dirname</a> [1320] => <a href="/php/functions/disk_free_space/">disk_free_space</a> [1321] => <a href="/php/functions/disk_total_space/">disk_total_space</a> [1322] => <a href="/php/functions/diskfreespace/">diskfreespace</a> [1323] => <a href="/php/functions/fclose/">fclose</a> [1324] => <a href="/php/functions/feof/">feof</a> [1325] => <a href="/php/functions/fflush/">fflush</a> [1326] => <a href="/php/functions/fgetc/">fgetc</a> [1327] => <a href="/php/functions/fgetcsv/">fgetcsv</a> [1328] => <a href="/php/functions/fgets/">fgets</a> [1329] => <a href="/php/functions/file/">file</a> [1330] => <a href="/php/functions/file_exists/">file_exists</a> [1331] => <a href="/php/functions/file_get_contents/">file_get_contents</a> [1332] => <a href="/php/functions/file_put_contents/">file_put_contents</a> [1333] => <a href="/php/functions/fileatime/">fileatime</a> [1334] => <a href="/php/functions/filectime/">filectime</a> [1335] => <a href="/php/functions/filegroup/">filegroup</a> [1336] => <a href="/php/functions/fileinode/">fileinode</a> [1337] => <a href="/php/functions/filemtime/">filemtime</a> [1338] => <a href="/php/functions/fileowner/">fileowner</a> [1339] => <a href="/php/functions/fileperms/">fileperms</a> [1340] => <a href="/php/functions/filesize/">filesize</a> [1341] => <a href="/php/functions/filetype/">filetype</a> [1342] => <a href="/php/functions/flock/">flock</a> [1343] => <a href="/php/functions/fnmatch/">fnmatch</a> [1344] => <a href="/php/functions/fopen/">fopen</a> [1345] => <a href="/php/functions/fpassthru/">fpassthru</a> [1346] => <a href="/php/functions/fputcsv/">fputcsv</a> [1347] => <a href="/php/functions/fputs/">fputs</a> [1348] => <a href="/php/functions/fread/">fread</a> [1349] => <a href="/php/functions/fscanf/">fscanf</a> [1350] => <a href="/php/functions/fseek/">fseek</a> [1351] => <a href="/php/functions/fstat/">fstat</a> [1352] => <a href="/php/functions/ftell/">ftell</a> [1353] => <a href="/php/functions/ftruncate/">ftruncate</a> [1354] => <a href="/php/functions/fwrite/">fwrite</a> [1355] => <a href="/php/functions/glob/">glob</a> [1356] => <a href="/php/functions/is_dir/">is_dir</a> [1357] => <a href="/php/functions/is_executable/">is_executable</a> [1358] => <a href="/php/functions/is_file/">is_file</a> [1359] => <a href="/php/functions/is_link/">is_link</a> [1360] => <a href="/php/functions/is_readable/">is_readable</a> [1361] => <a href="/php/functions/is_uploaded_file/">is_uploaded_file</a> [1362] => <a href="/php/functions/is_writable/">is_writable</a> [1363] => <a href="/php/functions/is_writeable/">is_writeable</a> [1364] => <a href="/php/functions/lchgrp/">lchgrp</a> [1365] => <a href="/php/functions/lchown/">lchown</a> [1366] => <a href="/php/functions/link/">link</a> [1367] => <a href="/php/functions/linkinfo/">linkinfo</a> [1368] => <a href="/php/functions/lstat/">lstat</a> [1369] => <a href="/php/functions/mkdir/">mkdir</a> [1370] => <a href="/php/functions/move_uploaded_file/">move_uploaded_file</a> [1371] => <a href="/php/functions/pathinfo/">pathinfo</a> [1372] => <a href="/php/functions/pclose/">pclose</a> [1373] => <a href="/php/functions/popen/">popen</a> [1374] => <a href="/php/functions/readfile/">readfile</a> [1375] => <a href="/php/functions/readlink/">readlink</a> [1376] => <a href="/php/functions/realpath/">realpath</a> [1377] => <a href="/php/functions/realpath_cache_get/">realpath_cache_get</a> [1378] => <a href="/php/functions/realpath_cache_size/">realpath_cache_size</a> [1379] => <a href="/php/functions/rename/">rename</a> [1380] => <a href="/php/functions/rewind/">rewind</a> [1381] => <a href="/php/functions/rmdir/">rmdir</a> [1382] => <a href="/php/functions/set_file_buffer/">set_file_buffer</a> [1383] => <a href="/php/functions/stat/">stat</a> [1384] => <a href="/php/functions/symlink/">symlink</a> [1385] => <a href="/php/functions/tempnam/">tempnam</a> [1386] => <a href="/php/functions/tmpfile/">tmpfile</a> [1387] => <a href="/php/functions/touch/">touch</a> [1388] => <a href="/php/functions/umask/">umask</a> [1389] => <a href="/php/functions/unlink/">unlink</a> [1390] => </div> [1391] => <h3>Filter</h3> [1392] => <div class="nav-content section"> [1393] => <a href="/php/functions/filter_has_var/">filter_has_var</a> [1394] => <a href="/php/functions/filter_id/">filter_id</a> [1395] => <a href="/php/functions/filter_input/">filter_input</a> [1396] => <a href="/php/functions/filter_input_array/">filter_input_array</a> [1397] => <a href="/php/functions/filter_list/">filter_list</a> [1398] => <a href="/php/functions/filter_var/">filter_var</a> [1399] => <a href="/php/functions/filter_var_array/">filter_var_array</a> [1400] => </div> [1401] => <h3>Function Handling</h3> [1402] => <div class="nav-content section"> [1403] => <a href="/php/functions/call_user_func/">call_user_func</a> [1404] => <a href="/php/functions/call_user_func_array/">call_user_func_array</a> [1405] => <a href="/php/functions/forward_static_call/">forward_static_call</a> [1406] => <a href="/php/functions/forward_static_call_array/">forward_static_call_array</a> [1407] => <a href="/php/functions/func_get_arg/">func_get_arg</a> [1408] => <a href="/php/functions/func_get_args/">func_get_args</a> [1409] => <a href="/php/functions/func_num_args/">func_num_args</a> [1410] => <a href="/php/functions/function_exists/">function_exists</a> [1411] => <a href="/php/functions/get_defined_functions/">get_defined_functions</a> [1412] => <a href="/php/functions/register_shutdown_function/">register_shutdown_function</a> [1413] => <a href="/php/functions/register_tick_function/">register_tick_function</a> [1414] => <a href="/php/functions/unregister_tick_function/">unregister_tick_function</a> [1415] => </div> [1416] => <h3>Mail</h3> [1417] => <div class="nav-content section"> [1418] => <a href="/php/functions/mail/">mail</a> [1419] => </div> [1420] => <h3>Math</h3> [1421] => <div class="nav-content section"> [1422] => <a href="/php/functions/abs/">abs</a> [1423] => <a href="/php/functions/acos/">acos</a> [1424] => <a href="/php/functions/acosh/">acosh</a> [1425] => <a href="/php/functions/asin/">asin</a> [1426] => <a href="/php/functions/asinh/">asinh</a> [1427] => <a href="/php/functions/atan/">atan</a> [1428] => <a href="/php/functions/atan2/">atan2</a> [1429] => <a href="/php/functions/atanh/">atanh</a> [1430] => <a href="/php/functions/base_convert/">base_convert</a> [1431] => <a href="/php/functions/bindec/">bindec</a> [1432] => <a href="/php/functions/ceil/">ceil</a> [1433] => <a href="/php/functions/cos/">cos</a> [1434] => <a href="/php/functions/cosh/">cosh</a> [1435] => <a href="/php/functions/decbin/">decbin</a> [1436] => <a href="/php/functions/dechex/">dechex</a> [1437] => <a href="/php/functions/decoct/">decoct</a> [1438] => <a href="/php/functions/deg2rad/">deg2rad</a> [1439] => <a href="/php/functions/exp/">exp</a> [1440] => <a href="/php/functions/expm1/">expm1</a> [1441] => <a href="/php/functions/floor/">floor</a> [1442] => <a href="/php/functions/fmod/">fmod</a> [1443] => <a href="/php/functions/getrandmax/">getrandmax</a> [1444] => <a href="/php/functions/hexdec/">hexdec</a> [1445] => <a href="/php/functions/hypot/">hypot</a> [1446] => <a href="/php/functions/intdiv/">intdiv</a> [1447] => <a href="/php/functions/is_finite/">is_finite</a> [1448] => <a href="/php/functions/is_infinite/">is_infinite</a> [1449] => <a href="/php/functions/is_nan/">is_nan</a> [1450] => <a href="/php/functions/lcg_value/">lcg_value</a> [1451] => <a href="/php/functions/log/">log</a> [1452] => <a href="/php/functions/log10/">log10</a> [1453] => <a href="/php/functions/log1p/">log1p</a> [1454] => <a href="/php/functions/max/">max</a> [1455] => <a href="/php/functions/min/">min</a> [1456] => <a href="/php/functions/mt_getrandmax/">mt_getrandmax</a> [1457] => <a href="/php/functions/mt_rand/">mt_rand</a> [1458] => <a href="/php/functions/mt_srand/">mt_srand</a> [1459] => <a href="/php/functions/octdec/">octdec</a> [1460] => <a href="/php/functions/pi/">pi</a> [1461] => <a href="/php/functions/pow/">pow</a> [1462] => <a href="/php/functions/rad2deg/">rad2deg</a> [1463] => <a href="/php/functions/rand/">rand</a> [1464] => <a href="/php/functions/round/">round</a> [1465] => <a href="/php/functions/sin/">sin</a> [1466] => <a href="/php/functions/sinh/">sinh</a> [1467] => <a href="/php/functions/sqrt/">sqrt</a> [1468] => <a href="/php/functions/srand/">srand</a> [1469] => <a href="/php/functions/tan/">tan</a> [1470] => <a href="/php/functions/tanh/">tanh</a> [1471] => </div> [1472] => <h3>Miscellaneous</h3> [1473] => <div class="nav-content section"> [1474] => <a href="/php/functions/__halt_compiler/">__halt_compiler</a> [1475] => <a href="/php/functions/connection_aborted/">connection_aborted</a> [1476] => <a href="/php/functions/connection_status/">connection_status</a> [1477] => <a href="/php/functions/constant/">constant</a> [1478] => <a href="/php/functions/define/">define</a> [1479] => <a href="/php/functions/defined/">defined</a> [1480] => <a href="/php/functions/die/">die</a> [1481] => <a href="/php/functions/eval/">eval</a> [1482] => <a href="/php/functions/exit/">exit</a> [1483] => <a href="/php/functions/highlight_file/">highlight_file</a> [1484] => <a href="/php/functions/highlight_string/">highlight_string</a> [1485] => <a href="/php/functions/hrtime/">hrtime</a> [1486] => <a href="/php/functions/ignore_user_abort/">ignore_user_abort</a> [1487] => <a href="/php/functions/pack/">pack</a> [1488] => <a href="/php/functions/php_strip_whitespace/">php_strip_whitespace</a> [1489] => <a href="/php/functions/show_source/">show_source</a> [1490] => <a href="/php/functions/sleep/">sleep</a> [1491] => <a href="/php/functions/sys_getloadavg/">sys_getloadavg</a> [1492] => <a href="/php/functions/time_nanosleep/">time_nanosleep</a> [1493] => <a href="/php/functions/time_sleep_until/">time_sleep_until</a> [1494] => <a href="/php/functions/uniqid/">uniqid</a> [1495] => <a href="/php/functions/unpack/">unpack</a> [1496] => <a href="/php/functions/usleep/">usleep</a> [1497] => </div> [1498] => <h3>Network</h3> [1499] => <div class="nav-content section"> [1500] => <a href="/php/functions/checkdnsrr/">checkdnsrr</a> [1501] => <a href="/php/functions/closelog/">closelog</a> [1502] => <a href="/php/functions/dns_check_record/">dns_check_record</a> [1503] => <a href="/php/functions/dns_get_mx/">dns_get_mx</a> [1504] => <a href="/php/functions/dns_get_record/">dns_get_record</a> [1505] => <a href="/php/functions/fsockopen/">fsockopen</a> [1506] => <a href="/php/functions/gethostbyaddr/">gethostbyaddr</a> [1507] => <a href="/php/functions/gethostbyname/">gethostbyname</a> [1508] => <a href="/php/functions/gethostbynamel/">gethostbynamel</a> [1509] => <a href="/php/functions/gethostname/">gethostname</a> [1510] => <a href="/php/functions/getmxrr/">getmxrr</a> [1511] => <a href="/php/functions/getprotobyname/">getprotobyname</a> [1512] => <a href="/php/functions/getprotobynumber/">getprotobynumber</a> [1513] => <a href="/php/functions/getservbyname/">getservbyname</a> [1514] => <a href="/php/functions/getservbyport/">getservbyport</a> [1515] => <a href="/php/functions/header/">header</a> [1516] => <a href="/php/functions/header_register_callback/">header_register_callback</a> [1517] => <a href="/php/functions/header_remove/">header_remove</a> [1518] => <a href="/php/functions/headers_list/">headers_list</a> [1519] => <a href="/php/functions/headers_sent/">headers_sent</a> [1520] => <a href="/php/functions/http_response_code/">http_response_code</a> [1521] => <a href="/php/functions/inet_ntop/">inet_ntop</a> [1522] => <a href="/php/functions/inet_pton/">inet_pton</a> [1523] => <a href="/php/functions/ip2long/">ip2long</a> [1524] => <a href="/php/functions/long2ip/">long2ip</a> [1525] => <a href="/php/functions/openlog/">openlog</a> [1526] => <a href="/php/functions/pfsockopen/">pfsockopen</a> [1527] => <a href="/php/functions/setcookie/">setcookie</a> [1528] => <a href="/php/functions/setrawcookie/">setrawcookie</a> [1529] => <a href="/php/functions/socket_get_status/">socket_get_status</a> [1530] => <a href="/php/functions/socket_set_blocking/">socket_set_blocking</a> [1531] => <a href="/php/functions/socket_set_timeout/">socket_set_timeout</a> [1532] => <a href="/php/functions/syslog/">syslog</a> [1533] => </div> [1534] => <h3>PCRE</h3> [1535] => <div class="nav-content section"> [1536] => <a href="/php/functions/preg_filter/">preg_filter</a> [1537] => <a href="/php/functions/preg_grep/">preg_grep</a> [1538] => <a href="/php/functions/preg_last_error/">preg_last_error</a> [1539] => <a href="/php/functions/preg_match/">preg_match</a> [1540] => <a href="/php/functions/preg_match_all/">preg_match_all</a> [1541] => <a href="/php/functions/preg_quote/">preg_quote</a> [1542] => <a href="/php/functions/preg_replace/">preg_replace</a> [1543] => <a href="/php/functions/preg_replace_callback/">preg_replace_callback</a> [1544] => <a href="/php/functions/preg_replace_callback_array/">preg_replace_callback_array</a> [1545] => <a href="/php/functions/preg_split/">preg_split</a> [1546] => </div> [1547] => <h3>Stream</h3> [1548] => <div class="nav-content section"> [1549] => <a href="/php/functions/stream_bucket_append/">stream_bucket_append</a> [1550] => <a href="/php/functions/stream_bucket_make_writeable/">stream_bucket_make_writeable</a> [1551] => <a href="/php/functions/stream_bucket_new/">stream_bucket_new</a> [1552] => <a href="/php/functions/stream_bucket_prepend/">stream_bucket_prepend</a> [1553] => <a href="/php/functions/stream_context_create/">stream_context_create</a> [1554] => <a href="/php/functions/stream_context_get_default/">stream_context_get_default</a> [1555] => <a href="/php/functions/stream_context_get_options/">stream_context_get_options</a> [1556] => <a href="/php/functions/stream_context_get_params/">stream_context_get_params</a> [1557] => <a href="/php/functions/stream_context_set_default/">stream_context_set_default</a> [1558] => <a href="/php/functions/stream_context_set_option/">stream_context_set_option</a> [1559] => <a href="/php/functions/stream_context_set_params/">stream_context_set_params</a> [1560] => <a href="/php/functions/stream_copy_to_stream/">stream_copy_to_stream</a> [1561] => <a href="/php/functions/stream_filter_append/">stream_filter_append</a> [1562] => <a href="/php/functions/stream_filter_prepend/">stream_filter_prepend</a> [1563] => <a href="/php/functions/stream_filter_register/">stream_filter_register</a> [1564] => <a href="/php/functions/stream_filter_remove/">stream_filter_remove</a> [1565] => <a href="/php/functions/stream_get_contents/">stream_get_contents</a> [1566] => <a href="/php/functions/stream_get_filters/">stream_get_filters</a> [1567] => <a href="/php/functions/stream_get_line/">stream_get_line</a> [1568] => <a href="/php/functions/stream_get_meta_data/">stream_get_meta_data</a> [1569] => <a href="/php/functions/stream_get_transports/">stream_get_transports</a> [1570] => <a href="/php/functions/stream_get_wrappers/">stream_get_wrappers</a> [1571] => <a href="/php/functions/stream_is_local/">stream_is_local</a> [1572] => <a href="/php/functions/stream_isatty/">stream_isatty</a> [1573] => <a href="/php/functions/stream_notification_callback/">stream_notification_callback</a> [1574] => <a href="/php/functions/stream_register_wrapper/">stream_register_wrapper</a> [1575] => <a href="/php/functions/stream_resolve_include_path/">stream_resolve_include_path</a> [1576] => <a href="/php/functions/stream_select/">stream_select</a> [1577] => <a href="/php/functions/stream_set_blocking/">stream_set_blocking</a> [1578] => <a href="/php/functions/stream_set_chunk_size/">stream_set_chunk_size</a> [1579] => <a href="/php/functions/stream_set_read_buffer/">stream_set_read_buffer</a> [1580] => <a href="/php/functions/stream_set_timeout/">stream_set_timeout</a> [1581] => <a href="/php/functions/stream_set_write_buffer/">stream_set_write_buffer</a> [1582] => <a href="/php/functions/stream_socket_accept/">stream_socket_accept</a> [1583] => <a href="/php/functions/stream_socket_client/">stream_socket_client</a> [1584] => <a href="/php/functions/stream_socket_enable_crypto/">stream_socket_enable_crypto</a> [1585] => <a href="/php/functions/stream_socket_get_name/">stream_socket_get_name</a> [1586] => <a href="/php/functions/stream_socket_pair/">stream_socket_pair</a> [1587] => <a href="/php/functions/stream_socket_recvfrom/">stream_socket_recvfrom</a> [1588] => <a href="/php/functions/stream_socket_sendto/">stream_socket_sendto</a> [1589] => <a href="/php/functions/stream_socket_server/">stream_socket_server</a> [1590] => <a href="/php/functions/stream_socket_shutdown/">stream_socket_shutdown</a> [1591] => <a href="/php/functions/stream_supports_lock/">stream_supports_lock</a> [1592] => <a href="/php/functions/stream_wrapper_register/">stream_wrapper_register</a> [1593] => <a href="/php/functions/stream_wrapper_restore/">stream_wrapper_restore</a> [1594] => <a href="/php/functions/stream_wrapper_unregister/">stream_wrapper_unregister</a> [1595] => </div> [1596] => <h3>String</h3> [1597] => <div class="nav-content section"> [1598] => <a href="/php/functions/addcslashes/">addcslashes</a> [1599] => <a href="/php/functions/addslashes/">addslashes</a> [1600] => <a href="/php/functions/bin2hex/">bin2hex</a> [1601] => <a href="/php/functions/chop/">chop</a> [1602] => <a href="/php/functions/chr/">chr</a> [1603] => <a href="/php/functions/chunk_split/">chunk_split</a> [1604] => <a href="/php/functions/convert_uudecode/">convert_uudecode</a> [1605] => <a href="/php/functions/convert_uuencode/">convert_uuencode</a> [1606] => <a href="/php/functions/count_chars/">count_chars</a> [1607] => <a href="/php/functions/crc32/">crc32</a> [1608] => <a href="/php/functions/crypt/">crypt</a> [1609] => <a href="/php/functions/echo/">echo</a> [1610] => <a href="/php/functions/explode/">explode</a> [1611] => <a href="/php/functions/fprintf/">fprintf</a> [1612] => <a href="/php/functions/get_html_translation_table/">get_html_translation_table</a> [1613] => <a href="/php/functions/hebrev/">hebrev</a> [1614] => <a href="/php/functions/hebrevc/">hebrevc</a> [1615] => <a href="/php/functions/hex2bin/">hex2bin</a> [1616] => <a href="/php/functions/html_entity_decode/">html_entity_decode</a> [1617] => <a href="/php/functions/htmlentities/">htmlentities</a> [1618] => <a href="/php/functions/htmlspecialchars/">htmlspecialchars</a> [1619] => <a href="/php/functions/htmlspecialchars_decode/">htmlspecialchars_decode</a> [1620] => <a href="/php/functions/implode/">implode</a> [1621] => <a href="/php/functions/join/">join</a> [1622] => <a href="/php/functions/lcfirst/">lcfirst</a> [1623] => <a href="/php/functions/levenshtein/">levenshtein</a> [1624] => <a href="/php/functions/localeconv/">localeconv</a> [1625] => <a href="/php/functions/ltrim/">ltrim</a> [1626] => <a href="/php/functions/md5/">md5</a> [1627] => <a href="/php/functions/md5_file/">md5_file</a> [1628] => <a href="/php/functions/metaphone/">metaphone</a> [1629] => <a href="/php/functions/nl_langinfo/">nl_langinfo</a> [1630] => <a href="/php/functions/nl2br/">nl2br</a> [1631] => <a href="/php/functions/number_format/">number_format</a> [1632] => <a href="/php/functions/ord/">ord</a> [1633] => <a href="/php/functions/parse_str/">parse_str</a> [1634] => <a href="/php/functions/print/">print</a> [1635] => <a href="/php/functions/printf/">printf</a> [1636] => <a href="/php/functions/quoted_printable_decode/">quoted_printable_decode</a> [1637] => <a href="/php/functions/quoted_printable_encode/">quoted_printable_encode</a> [1638] => <a href="/php/functions/quotemeta/">quotemeta</a> [1639] => <a href="/php/functions/rtrim/">rtrim</a> [1640] => <a href="/php/functions/setlocale/">setlocale</a> [1641] => <a href="/php/functions/sha1/">sha1</a> [1642] => <a href="/php/functions/sha1_file/">sha1_file</a> [1643] => <a href="/php/functions/similar_text/">similar_text</a> [1644] => <a href="/php/functions/soundex/">soundex</a> [1645] => <a href="/php/functions/sprintf/">sprintf</a> [1646] => <a href="/php/functions/sscanf/">sscanf</a> [1647] => <a href="/php/functions/str_contains/">str_contains</a> [1648] => <a href="/php/functions/str_ends_with/">str_ends_with</a> [1649] => <a href="/php/functions/str_getcsv/">str_getcsv</a> [1650] => <a href="/php/functions/str_ireplace/">str_ireplace</a> [1651] => <a href="/php/functions/str_pad/">str_pad</a> [1652] => <a href="/php/functions/str_repeat/">str_repeat</a> [1653] => <a href="/php/functions/str_replace/">str_replace</a> [1654] => <a href="/php/functions/str_rot13/">str_rot13</a> [1655] => <a href="/php/functions/str_shuffle/">str_shuffle</a> [1656] => <a href="/php/functions/str_split/">str_split</a> [1657] => <a href="/php/functions/str_starts_with/">str_starts_with</a> [1658] => <a href="/php/functions/str_word_count/">str_word_count</a> [1659] => <a href="/php/functions/strcasecmp/">strcasecmp</a> [1660] => <a href="/php/functions/strchr/">strchr</a> [1661] => <a href="/php/functions/strcmp/">strcmp</a> [1662] => <a href="/php/functions/strcoll/">strcoll</a> [1663] => <a href="/php/functions/strcspn/">strcspn</a> [1664] => <a href="/php/functions/strip_tags/">strip_tags</a> [1665] => <a href="/php/functions/stripcslashes/">stripcslashes</a> [1666] => <a href="/php/functions/stripos/">stripos</a> [1667] => <a href="/php/functions/stripslashes/">stripslashes</a> [1668] => <a href="/php/functions/stristr/">stristr</a> [1669] => <a href="/php/functions/strlen/">strlen</a> [1670] => <a href="/php/functions/strnatcasecmp/">strnatcasecmp</a> [1671] => <a href="/php/functions/strnatcmp/">strnatcmp</a> [1672] => <a href="/php/functions/strncasecmp/">strncasecmp</a> [1673] => <a href="/php/functions/strncmp/">strncmp</a> [1674] => <a href="/php/functions/strpbrk/">strpbrk</a> [1675] => <a href="/php/functions/strpos/">strpos</a> [1676] => <a href="/php/functions/strrchr/">strrchr</a> [1677] => <a href="/php/functions/strrev/">strrev</a> [1678] => <a href="/php/functions/strripos/">strripos</a> [1679] => <a href="/php/functions/strrpos/">strrpos</a> [1680] => <a href="/php/functions/strspn/">strspn</a> [1681] => <a href="/php/functions/strstr/">strstr</a> [1682] => <a href="/php/functions/strtok/">strtok</a> [1683] => <a href="/php/functions/strtolower/">strtolower</a> [1684] => <a href="/php/functions/strtoupper/">strtoupper</a> [1685] => <a href="/php/functions/strtr/">strtr</a> [1686] => <a href="/php/functions/substr/">substr</a> [1687] => <a href="/php/functions/substr_compare/">substr_compare</a> [1688] => <a href="/php/functions/substr_count/">substr_count</a> [1689] => <a href="/php/functions/substr_replace/">substr_replace</a> [1690] => <a href="/php/functions/trim/">trim</a> [1691] => <a href="/php/functions/ucfirst/">ucfirst</a> [1692] => <a href="/php/functions/ucwords/">ucwords</a> [1693] => <a href="/php/functions/vfprintf/">vfprintf</a> [1694] => <a href="/php/functions/vprintf/">vprintf</a> [1695] => <a href="/php/functions/vsprintf/">vsprintf</a> [1696] => <a href="/php/functions/wordwrap/">wordwrap</a> [1697] => </div> [1698] => <h3>Tokenizer</h3> [1699] => <div class="nav-content section"> [1700] => <a href="/php/functions/token_get_all/">token_get_all</a> [1701] => <a href="/php/functions/token_name/">token_name</a> [1702] => </div> [1703] => <h3>URL</h3> [1704] => <div class="nav-content section"> [1705] => <a href="/php/functions/base64_decode/">base64_decode</a> [1706] => <a href="/php/functions/base64_encode/">base64_encode</a> [1707] => <a href="/php/functions/get_headers/">get_headers</a> [1708] => <a href="/php/functions/get_meta_tags/">get_meta_tags</a> [1709] => <a href="/php/functions/http_build_query/">http_build_query</a> [1710] => <a href="/php/functions/parse_url/">parse_url</a> [1711] => <a href="/php/functions/rawurldecode/">rawurldecode</a> [1712] => <a href="/php/functions/rawurlencode/">rawurlencode</a> [1713] => <a href="/php/functions/urldecode/">urldecode</a> [1714] => <a href="/php/functions/urlencode/">urlencode</a> [1715] => </div> [1716] => <h3>Variable Handling</h3> [1717] => <div class="nav-content section"> [1718] => <a href="/php/functions/boolval/">boolval</a> [1719] => <a href="/php/functions/debug_zval_dump/">debug_zval_dump</a> [1720] => <a href="/php/functions/doubleval/">doubleval</a> [1721] => <a href="/php/functions/empty/">empty</a> [1722] => <a href="/php/functions/floatval/">floatval</a> [1723] => <a href="/php/functions/get_defined_vars/">get_defined_vars</a> [1724] => <a href="/php/functions/get_resource_id/">get_resource_id</a> [1725] => <a href="/php/functions/get_resource_type/">get_resource_type</a> [1726] => <a href="/php/functions/gettype/">gettype</a> [1727] => <a href="/php/functions/intval/">intval</a> [1728] => <a href="/php/functions/is_array/">is_array</a> [1729] => <a href="/php/functions/is_bool/">is_bool</a> [1730] => <a href="/php/functions/is_callable/">is_callable</a> [1731] => <a href="/php/functions/is_countable/">is_countable</a> [1732] => <a href="/php/functions/is_double/">is_double</a> [1733] => <a href="/php/functions/is_float/">is_float</a> [1734] => <a href="/php/functions/is_int/">is_int</a> [1735] => <a href="/php/functions/is_integer/">is_integer</a> [1736] => <a href="/php/functions/is_iterable/">is_iterable</a> [1737] => <a href="/php/functions/is_long/">is_long</a> [1738] => <a href="/php/functions/is_null/">is_null</a> [1739] => <a href="/php/functions/is_numeric/">is_numeric</a> [1740] => <a href="/php/functions/is_object/">is_object</a> [1741] => <a href="/php/functions/is_real/">is_real</a> [1742] => <a href="/php/functions/is_resource/">is_resource</a> [1743] => <a href="/php/functions/is_scalar/">is_scalar</a> [1744] => <a href="/php/functions/is_string/">is_string</a> [1745] => <a href="/php/functions/isset/">isset</a> [1746] => <a href="/php/functions/print_r/">print_r</a> [1747] => <a href="/php/functions/serialize/">serialize</a> [1748] => <a href="/php/functions/settype/">settype</a> [1749] => <a href="/php/functions/strval/">strval</a> [1750] => <a href="/php/functions/unserialize/">unserialize</a> [1751] => <a href="/php/functions/unset/">unset</a> [1752] => <a href="/php/functions/var_dump/">var_dump</a> [1753] => <a href="/php/functions/var_export/">var_export</a> [1754] => </div> [1755] => </div> [1756] => <div class="nav-h1"> [1757] => <a id="nav-svg-switch">SVG</a> [1758] => </div> [1759] => <div id="nav-svg"> [1760] => <h3>Overview</h3> [1761] => <div class="nav-content section"> [1762] => <a href="/svg/">Overview</a> [1763] => </div> [1764] => <h3>Attributes</h3> [1765] => <div class="nav-content section"> [1766] => <a href="/svg/attributes/accumulate/">accumulate</a> [1767] => <a href="/svg/attributes/additive/">additive</a> [1768] => <a href="/svg/attributes/amplitude/">amplitude</a> [1769] => <a href="/svg/attributes/attributename/">attributeName</a> [1770] => <a href="/svg/attributes/azimuth/">azimuth</a> [1771] => <a href="/svg/attributes/basefrequency/">baseFrequency</a> [1772] => <a href="/svg/attributes/begin/">begin</a> [1773] => <a href="/svg/attributes/bias/">bias</a> [1774] => <a href="/svg/attributes/by/">by</a> [1775] => <a href="/svg/attributes/calcmode/">calcMode</a> [1776] => <a href="/svg/attributes/clippathunits/">clipPathUnits</a> [1777] => <a href="/svg/attributes/crossorigin/">crossorigin</a> [1778] => <a href="/svg/attributes/cx/">cx</a> [1779] => <a href="/svg/attributes/cy/">cy</a> [1780] => <a href="/svg/attributes/d/">d</a> [1781] => <a href="/svg/attributes/diffuseconstant/">diffuseConstant</a> [1782] => <a href="/svg/attributes/divisor/">divisor</a> [1783] => <a href="/svg/attributes/download/">download</a> [1784] => <a href="/svg/attributes/dur/">dur</a> [1785] => <a href="/svg/attributes/dx/">dx</a> [1786] => <a href="/svg/attributes/dy/">dy</a> [1787] => <a href="/svg/attributes/edgemode/">edgeMode</a> [1788] => <a href="/svg/attributes/elevation/">elevation</a> [1789] => <a href="/svg/attributes/end/">end</a> [1790] => <a href="/svg/attributes/exponent/">exponent</a> [1791] => <a href="/svg/attributes/fill/">fill</a> [1792] => <a href="/svg/attributes/filterunits/">filterUnits</a> [1793] => <a href="/svg/attributes/flood-color/">flood-color</a> [1794] => <a href="/svg/attributes/flood-opacity/">flood-opacity</a> [1795] => <a href="/svg/attributes/fr/">fr</a> [1796] => <a href="/svg/attributes/from/">from</a> [1797] => <a href="/svg/attributes/fx/">fx</a> [1798] => <a href="/svg/attributes/fy/">fy</a> [1799] => <a href="/svg/attributes/gradienttransform/">gradientTransform</a> [1800] => <a href="/svg/attributes/gradientunits/">gradientUnits</a> [1801] => <a href="/svg/attributes/height/">height</a> [1802] => <a href="/svg/attributes/href/">href</a> [1803] => <a href="/svg/attributes/hreflang/">hreflang</a> [1804] => <a href="/svg/attributes/id/">id</a> [1805] => <a href="/svg/attributes/in/">in</a> [1806] => <a href="/svg/attributes/in2/">in2</a> [1807] => <a href="/svg/attributes/intercept/">intercept</a> [1808] => <a href="/svg/attributes/k1/">k1</a> [1809] => <a href="/svg/attributes/k2/">k2</a> [1810] => <a href="/svg/attributes/k3/">k3</a> [1811] => <a href="/svg/attributes/k4/">k4</a> [1812] => <a href="/svg/attributes/kernelmatrix/">kernelMatrix</a> [1813] => <a href="/svg/attributes/keypoints/">keyPoints</a> [1814] => <a href="/svg/attributes/keysplines/">keySplines</a> [1815] => <a href="/svg/attributes/keytimes/">keyTimes</a> [1816] => <a href="/svg/attributes/lengthadjust/">lengthAdjust</a> [1817] => <a href="/svg/attributes/limitingconeangle/">limitingConeAngle</a> [1818] => <a href="/svg/attributes/markerheight/">markerHeight</a> [1819] => <a href="/svg/attributes/markerunits/">markerUnits</a> [1820] => <a href="/svg/attributes/markerwidth/">markerWidth</a> [1821] => <a href="/svg/attributes/maskcontentunits/">maskContentUnits</a> [1822] => <a href="/svg/attributes/maskunits/">maskUnits</a> [1823] => <a href="/svg/attributes/max/">max</a> [1824] => <a href="/svg/attributes/media/">media</a> [1825] => <a href="/svg/attributes/method/">method</a> [1826] => <a href="/svg/attributes/min/">min</a> [1827] => <a href="/svg/attributes/mode/">mode</a> [1828] => <a href="/svg/attributes/no-composite/">no-composite</a> [1829] => <a href="/svg/attributes/numoctaves/">numOctaves</a> [1830] => <a href="/svg/attributes/offset/">offset</a> [1831] => <a href="/svg/attributes/onbegin/">onbegin</a> [1832] => <a href="/svg/attributes/onend/">onend</a> [1833] => <a href="/svg/attributes/onrepeat/">onrepeat</a> [1834] => <a href="/svg/attributes/operator/">operator</a> [1835] => <a href="/svg/attributes/order/">order</a> [1836] => <a href="/svg/attributes/orient/">orient</a> [1837] => <a href="/svg/attributes/origin/">origin</a> [1838] => <a href="/svg/attributes/path/">path</a> [1839] => <a href="/svg/attributes/pathlength/">pathLength</a> [1840] => <a href="/svg/attributes/patterncontentunits/">patternContentUnits</a> [1841] => <a href="/svg/attributes/patterntransform/">patternTransform</a> [1842] => <a href="/svg/attributes/patternunits/">patternUnits</a> [1843] => <a href="/svg/attributes/ping/">ping</a> [1844] => <a href="/svg/attributes/points/">points</a> [1845] => <a href="/svg/attributes/pointsatx/">pointsAtX</a> [1846] => <a href="/svg/attributes/pointsaty/">pointsAtY</a> [1847] => <a href="/svg/attributes/pointsatz/">pointsAtZ</a> [1848] => <a href="/svg/attributes/preservealpha/">preserveAlpha</a> [1849] => <a href="/svg/attributes/preserveaspectratio/">preserveAspectRatio</a> [1850] => <a href="/svg/attributes/primitiveunits/">primitiveUnits</a> [1851] => <a href="/svg/attributes/r/">r</a> [1852] => <a href="/svg/attributes/radius/">radius</a> [1853] => <a href="/svg/attributes/referrerpolicy/">referrerPolicy</a> [1854] => <a href="/svg/attributes/refx/">refx</a> [1855] => <a href="/svg/attributes/refy/">refy</a> [1856] => <a href="/svg/attributes/rel/">rel</a> [1857] => <a href="/svg/attributes/repeatcount/">repeatCount</a> [1858] => <a href="/svg/attributes/repeatdur/">repeatDur</a> [1859] => <a href="/svg/attributes/requiredextensions/">requiredExtensions</a> [1860] => <a href="/svg/attributes/restart/">restart</a> [1861] => <a href="/svg/attributes/rotate/">rotate</a> [1862] => <a href="/svg/attributes/rx/">rx</a> [1863] => <a href="/svg/attributes/ry/">ry</a> [1864] => <a href="/svg/attributes/scale/">scale</a> [1865] => <a href="/svg/attributes/seed/">seed</a> [1866] => <a href="/svg/attributes/side/">side</a> [1867] => <a href="/svg/attributes/slope/">slope</a> [1868] => <a href="/svg/attributes/spacing/">spacing</a> [1869] => <a href="/svg/attributes/specularconstant/">specularConstant</a> [1870] => <a href="/svg/attributes/specularexponent/">specularExponent</a> [1871] => <a href="/svg/attributes/spreadmethod/">spreadMethod</a> [1872] => <a href="/svg/attributes/startoffset/">startoffset</a> [1873] => <a href="/svg/attributes/stddeviation/">stdDeviation</a> [1874] => <a href="/svg/attributes/stitchtiles/">stitchTiles</a> [1875] => <a href="/svg/attributes/stop-color/">stop-color</a> [1876] => <a href="/svg/attributes/stop-opacity/">stop-opacity</a> [1877] => <a href="/svg/attributes/surfacescale/">surfaceScale</a> [1878] => <a href="/svg/attributes/systemlanguage/">systemLanguage</a> [1879] => <a href="/svg/attributes/tablevalues/">tableValues</a> [1880] => <a href="/svg/attributes/target/">target</a> [1881] => <a href="/svg/attributes/targetx/">targetX</a> [1882] => <a href="/svg/attributes/targety/">targetY</a> [1883] => <a href="/svg/attributes/textlength/">textLength</a> [1884] => <a href="/svg/attributes/title/">title</a> [1885] => <a href="/svg/attributes/to/">to</a> [1886] => <a href="/svg/attributes/transform/">transform</a> [1887] => <a href="/svg/attributes/type/">type</a> [1888] => <a href="/svg/attributes/values/">values</a> [1889] => <a href="/svg/attributes/viewbox/">viewBox</a> [1890] => <a href="/svg/attributes/width/">width</a> [1891] => <a href="/svg/attributes/x/">x</a> [1892] => <a href="/svg/attributes/x1/">x1</a> [1893] => <a href="/svg/attributes/x2/">x2</a> [1894] => <a href="/svg/attributes/xchannelselector/">xChannelSelector</a> [1895] => <a href="/svg/attributes/y/">y</a> [1896] => <a href="/svg/attributes/y1/">y1</a> [1897] => <a href="/svg/attributes/y2/">y2</a> [1898] => <a href="/svg/attributes/ychannelselector/">yChannelSelector</a> [1899] => <a href="/svg/attributes/z/">z</a> [1900] => <a href="/svg/attributes/zoomandpan/">zoomAndPan</a> [1901] => </div> [1902] => <h3>Elements</h3> [1903] => <div class="nav-content section"> [1904] => <a href="/svg/elements/a/">a</a> [1905] => <a href="/svg/elements/animate/">animate</a> [1906] => <a href="/svg/elements/animatemotion/">animateMotion</a> [1907] => <a href="/svg/elements/animatetransform/">animateTransform</a> [1908] => <a href="/svg/elements/circle/">circle</a> [1909] => <a href="/svg/elements/clippath/">clipPath</a> [1910] => <a href="/svg/elements/defs/">defs</a> [1911] => <a href="/svg/elements/desc/">desc</a> [1912] => <a href="/svg/elements/discard/">discard</a> [1913] => <a href="/svg/elements/ellipse/">ellipse</a> [1914] => <a href="/svg/elements/feblend/">feBlend</a> [1915] => <a href="/svg/elements/fecolormatrix/">feColorMatrix</a> [1916] => <a href="/svg/elements/fecomponenttransfer/">feComponentTransfer</a> [1917] => <a href="/svg/elements/fecomposite/">feComposite</a> [1918] => <a href="/svg/elements/feconvolvematrix/">feConvolveMatrix</a> [1919] => <a href="/svg/elements/fediffuselighting/">feDiffuseLighting</a> [1920] => <a href="/svg/elements/fedisplacementmap/">feDisplacementMap</a> [1921] => <a href="/svg/elements/fedistantlight/">feDistantLight</a> [1922] => <a href="/svg/elements/fedropshadow/">feDropShadow</a> [1923] => <a href="/svg/elements/feflood/">feFlood</a> [1924] => <a href="/svg/elements/fefunca/">feFuncA</a> [1925] => <a href="/svg/elements/fefuncb/">feFuncB</a> [1926] => <a href="/svg/elements/fefuncg/">feFuncG</a> [1927] => <a href="/svg/elements/fefuncr/">feFuncR</a> [1928] => <a href="/svg/elements/fegaussianblur/">feGaussianBlur</a> [1929] => <a href="/svg/elements/feimage/">feImage</a> [1930] => <a href="/svg/elements/femerge/">feMerge</a> [1931] => <a href="/svg/elements/femergenode/">feMergeNode</a> [1932] => <a href="/svg/elements/femorphology/">feMorphology</a> [1933] => <a href="/svg/elements/feoffset/">feOffset</a> [1934] => <a href="/svg/elements/fepointlight/">fePointLight</a> [1935] => <a href="/svg/elements/fespecularlighting/">feSpecularLighting</a> [1936] => <a href="/svg/elements/fespotlight/">feSpotLight</a> [1937] => <a href="/svg/elements/fetile/">feTile</a> [1938] => <a href="/svg/elements/feturbulence/">feTurbulence</a> [1939] => <a href="/svg/elements/filter/">filter</a> [1940] => <a href="/svg/elements/foreignobject/">foreignObject</a> [1941] => <a href="/svg/elements/g/">g</a> [1942] => <a href="/svg/elements/image/">image</a> [1943] => <a href="/svg/elements/line/">line</a> [1944] => <a href="/svg/elements/lineargradient/">linearGradient</a> [1945] => <a href="/svg/elements/marker/">marker</a> [1946] => <a href="/svg/elements/mask/">mask</a> [1947] => <a href="/svg/elements/metadata/">metadata</a> [1948] => <a href="/svg/elements/mpath/">mpath</a> [1949] => <a href="/svg/elements/path/">path</a> [1950] => <a href="/svg/elements/pattern/">pattern</a> [1951] => <a href="/svg/elements/polygon/">polygon</a> [1952] => <a href="/svg/elements/polyline/">polyline</a> [1953] => <a href="/svg/elements/radialgradient/">radialGradient</a> [1954] => <a href="/svg/elements/rect/">rect</a> [1955] => <a href="/svg/elements/script/">script</a> [1956] => <a href="/svg/elements/set/">set</a> [1957] => <a href="/svg/elements/stop/">stop</a> [1958] => <a href="/svg/elements/style/">style</a> [1959] => <a href="/svg/elements/svg/">svg</a> [1960] => <a href="/svg/elements/switch/">switch</a> [1961] => <a href="/svg/elements/symbol/">symbol</a> [1962] => <a href="/svg/elements/text/">text</a> [1963] => <a href="/svg/elements/textpath/">textPath</a> [1964] => <a href="/svg/elements/title/">title</a> [1965] => <a href="/svg/elements/tspan/">tspan</a> [1966] => <a href="/svg/elements/unknown/">unknown</a> [1967] => <a href="/svg/elements/use/">use</a> [1968] => <a href="/svg/elements/view/">view</a> [1969] => </div> [1970] => <h3>Values</h3> [1971] => <div class="nav-content section"> [1972] => <a href="/svg/values/_blank/">_blank</a> [1973] => <a href="/svg/values/_parent/">_parent</a> [1974] => <a href="/svg/values/_self/">_self</a> [1975] => <a href="/svg/values/_top/">_top</a> [1976] => <a href="/svg/values/a/">A</a> [1977] => <a href="/svg/values/align/">align</a> [1978] => <a href="/svg/values/alpha-value/">alpha-value</a> [1979] => <a href="/svg/values/always/">always</a> [1980] => <a href="/svg/values/angle/">angle</a> [1981] => <a href="/svg/values/anonymous/">anonymous</a> [1982] => <a href="/svg/values/arithmetic/">arithmetic</a> [1983] => <a href="/svg/values/atop/">atop</a> [1984] => <a href="/svg/values/auto/">auto</a> [1985] => <a href="/svg/values/auto-start-reverse/">auto-start-reverse</a> [1986] => <a href="/svg/values/auto-reverse/">auto-reverse</a> [1987] => <a href="/svg/values/b/">B</a> [1988] => <a href="/svg/values/backgroundalpha/">BackgroundAlpha</a> [1989] => <a href="/svg/values/backgroundimage/">BackgroundImage</a> [1990] => <a href="/svg/values/begin-value-list/">begin-value-list</a> [1991] => <a href="/svg/values/blend-mode/">blend-mode</a> [1992] => <a href="/svg/values/bottom/">bottom</a> [1993] => <a href="/svg/values/center/">center</a> [1994] => <a href="/svg/values/clock-value/">clock-value</a> [1995] => <a href="/svg/values/color/">color</a> [1996] => <a href="/svg/values/control-point/">control-point</a> [1997] => <a href="/svg/values/currentcolor/">currentColor</a> [1998] => <a href="/svg/values/default/">default</a> [1999] => <a href="/svg/values/dilate/">dilate</a> [2000] => <a href="/svg/values/disable/">disable</a> [2001] => <a href="/svg/values/discrete/">discrete</a> [2002] => <a href="/svg/values/duplicate/">duplicate</a> [2003] => <a href="/svg/values/empty-string/">empty-string</a> [2004] => <a href="/svg/values/end-value-list/">end-value-list</a> [2005] => <a href="/svg/values/erode/">erode</a> [2006] => <a href="/svg/values/exact/">exact</a> [2007] => <a href="/svg/values/false/">false</a> [2008] => <a href="/svg/values/fillpaint/">FillPaint</a> [2009] => <a href="/svg/values/filter-primitive-reference/">filter-primitive-reference</a> [2010] => <a href="/svg/values/fractalnoise/">fractalNoise</a> [2011] => <a href="/svg/values/freeze/">freeze</a> [2012] => <a href="/svg/values/g/">G</a> [2013] => <a href="/svg/values/gamma/">gamma</a> [2014] => <a href="/svg/values/height/">height</a> [2015] => <a href="/svg/values/huerotate/">hueRotate</a> [2016] => <a href="/svg/values/icccolor/">icccolor</a> [2017] => <a href="/svg/values/id/">id</a> [2018] => <a href="/svg/values/identity/">identity</a> [2019] => <a href="/svg/values/in/">in</a> [2020] => <a href="/svg/values/indefinite/">indefinite</a> [2021] => <a href="/svg/values/integer/">integer</a> [2022] => <a href="/svg/values/left/">left</a> [2023] => <a href="/svg/values/length/">length</a> [2024] => <a href="/svg/values/length-percentage/">length-percentage</a> [2025] => <a href="/svg/values/lighter/">lighter</a> [2026] => <a href="/svg/values/linear/">linear</a> [2027] => <a href="/svg/values/list/">list</a> [2028] => <a href="/svg/values/list-of-numbers/">list-of-numbers</a> [2029] => <a href="/svg/values/luminancetoalpha/">luminanceToAlpha</a> [2030] => <a href="/svg/values/magnify/">magnify</a> [2031] => <a href="/svg/values/matrix/">matrix</a> [2032] => <a href="/svg/values/media/">media</a> [2033] => <a href="/svg/values/meetorslice/">meetOrSlice</a> [2034] => <a href="/svg/values/min-x/">min-x</a> [2035] => <a href="/svg/values/min-y/">min-y</a> [2036] => <a href="/svg/values/name/">name</a> [2037] => <a href="/svg/values/never/">never</a> [2038] => <a href="/svg/values/no-composite/">no-composite</a> [2039] => <a href="/svg/values/no-referrer/">no-referrer</a> [2040] => <a href="/svg/values/no-referrer-when-downgrade/">no-referrer-when-downgrade</a> [2041] => <a href="/svg/values/none/">none</a> [2042] => <a href="/svg/values/nostitch/">noStitch</a> [2043] => <a href="/svg/values/number/">number</a> [2044] => <a href="/svg/values/number-optional-number/">number-optional-number</a> [2045] => <a href="/svg/values/objectboundingbox/">objectBoundingBox</a> [2046] => <a href="/svg/values/origin/">origin</a> [2047] => <a href="/svg/values/origin-when-cross-origin/">origin-when-cross-origin</a> [2048] => <a href="/svg/values/out/">out</a> [2049] => <a href="/svg/values/over/">over</a> [2050] => <a href="/svg/values/paced/">paced</a> [2051] => <a href="/svg/values/pad/">pad</a> [2052] => <a href="/svg/values/path-data/">path-data</a> [2053] => <a href="/svg/values/percentage/">percentage</a> [2054] => <a href="/svg/values/points/">points</a> [2055] => <a href="/svg/values/r/">R</a> [2056] => <a href="/svg/values/reflect/">reflect</a> [2057] => <a href="/svg/values/remove/">remove</a> [2058] => <a href="/svg/values/repeat/">repeat</a> [2059] => <a href="/svg/values/replace/">replace</a> [2060] => <a href="/svg/values/right/">right</a> [2061] => <a href="/svg/values/rotate/">rotate</a> [2062] => <a href="/svg/values/same-origin/">same-origin</a> [2063] => <a href="/svg/values/saturate/">saturate</a> [2064] => <a href="/svg/values/scale/">scale</a> [2065] => <a href="/svg/values/script/">script</a> [2066] => <a href="/svg/values/set-of-comma-separated-tokens/">set-of-comma-separated-tokens</a> [2067] => <a href="/svg/values/set-of-space-separated-tokens/">set-of-space-separated-tokens</a> [2068] => <a href="/svg/values/skewx/">skewx</a> [2069] => <a href="/svg/values/skewy/">skewy</a> [2070] => <a href="/svg/values/sourcealpha/">SourceAlpha</a> [2071] => <a href="/svg/values/sourcegraphic/">SourceGraphic</a> [2072] => <a href="/svg/values/spacing/">spacing</a> [2073] => <a href="/svg/values/spacingandglyphs/">spacingAndGlyphs</a> [2074] => <a href="/svg/values/spline/">spline</a> [2075] => <a href="/svg/values/stitch/">stitch</a> [2076] => <a href="/svg/values/stretch/">stretch</a> [2077] => <a href="/svg/values/strict-origin/">strict-origin</a> [2078] => <a href="/svg/values/strict-origin-when-cross-origin/">strict-origin-when-cross-origin</a> [2079] => <a href="/svg/values/string/">string</a> [2080] => <a href="/svg/values/strokepaint/">StrokePaint</a> [2081] => <a href="/svg/values/strokewidth/">strokeWidth</a> [2082] => <a href="/svg/values/sum/">sum</a> [2083] => <a href="/svg/values/table/">table</a> [2084] => <a href="/svg/values/tokens/">tokens</a> [2085] => <a href="/svg/values/top/">top</a> [2086] => <a href="/svg/values/transform-list/">transform-list</a> [2087] => <a href="/svg/values/translate/">translate</a> [2088] => <a href="/svg/values/true/">true</a> [2089] => <a href="/svg/values/turbulence/">turbulence</a> [2090] => <a href="/svg/values/unsafe-url/">unsafe-url</a> [2091] => <a href="/svg/values/url/">url</a> [2092] => <a href="/svg/values/use-credentials/">use-credentials</a> [2093] => <a href="/svg/values/userspaceonuse/">userSpaceOnUse</a> [2094] => <a href="/svg/values/value/">value</a> [2095] => <a href="/svg/values/whennotactive/">whenNotActive</a> [2096] => <a href="/svg/values/width/">width</a> [2097] => <a href="/svg/values/wrap/">wrap</a> [2098] => <a href="/svg/values/xml-name/">XML-Name</a> [2099] => <a href="/svg/values/xor/">xor</a> [2100] => </div> [2101] => </div> [2102] => <div class="nav-h1"> [2103] => <a id="nav-more-switch">MORE</a> [2104] => </div> [2105] => <div id="nav-more"> [2106] => <div class="nav-h2"> [2107] => <a href="/htaccess/">.htaccess</a> [2108] => </div> [2109] => <div class="nav-h2"> [2110] => <a href="/acme.sh/">acme.sh</a> [2111] => </div> [2112] => <div class="nav-h2"> [2113] => <a id="nav-applications-switch">Applications</a> [2114] => </div> [2115] => <div id="nav-applications"> [2116] => <h3>Bible</h3> [2117] => <div class="nav-content section"> [2118] => <a href="/applications/Bible-passages/">Bible Passages</a> [2119] => <a href="/applications/Bible-pictures/">Bible Pictures</a> [2120] => <a href="/applications/Jesus-loves-the-little-children/">Jesus Loves the Little Children</a> [2121] => <a href="/applications/merry-Christmas/">Merry Christmas</a> [2122] => <a href="/applications/one-man-one-woman-one-lifetime/">One Man. One Woman. One Lifetime.</a> [2123] => <a href="/applications/The-Armor-of-God/">The Armor of God</a> [2124] => </div> [2125] => <h3>Cards</h3> [2126] => <div class="nav-content section"> [2127] => <a href="/applications/euchre/">Euchre</a> [2128] => <a href="/applications/sevens/">Sevens</a> [2129] => <a href="/applications/solitaire/">Solitaire</a> [2130] => </div> [2131] => <h3>LEGO</h3> [2132] => <div class="nav-content section"> [2133] => <a href="/applications/lego-cannonball-bingo/">LEGO Cannonball Bingo</a> [2134] => <a href="/applications/lego-pandamonium/">LEGO Pandamonium</a> [2135] => <a href="/applications/lego-pirate-plunder/">LEGO Pirate Plunder</a> [2136] => <a href="/applications/lego-the-machine/">LEGO The Machine</a> [2137] => </div> [2138] => <h3>Other</h3> [2139] => <div class="nav-content section"> [2140] => <a href="/applications/miniature-golf/">Miniature Golf</a> [2141] => <a href="/applications/space-station/">Space Station</a> [2142] => </div> [2143] => </div> [2144] => <div class="nav-h2"> [2145] => <a href="/editor/">Editor</a> [2146] => </div> [2147] => <div class="nav-h2"> [2148] => <a href="/favicon/">Favicon</a> [2149] => </div> [2150] => <div class="nav-h2"> [2151] => <a id="nav-flash-switch">Flash</a> [2152] => </div> [2153] => <div id="nav-flash"> [2154] => <div class="nav-h3"> [2155] => <a href="/flash/detect/">Detect</a> [2156] => </div> [2157] => <div class="nav-h3"> [2158] => <a id="nav-flash-actionscript-switch">ActionScript</a> [2159] => </div> [2160] => <div id="nav-flash-actionscript"> [2161] => <div class="nav-content section"> [2162] => <a href="/flash/actionscript/embed/">Embed</a> [2163] => <a href="/flash/actionscript/load/">Load</a> [2164] => </div> [2165] => </div> [2166] => <div class="nav-h3"> [2167] => <a id="nav-flash-as3dmod-switch">AS3Dmod</a> [2168] => </div> [2169] => <div id="nav-flash-as3dmod"> [2170] => <h4>Modifiers</h4> [2171] => <div class="nav-content section"> [2172] => <a href="/flash/as3dmod/bend/">Bend</a> [2173] => <a href="/flash/as3dmod/bloat/">Bloat</a> [2174] => <a href="/flash/as3dmod/cloth/">Cloth</a> [2175] => <a href="/flash/as3dmod/noise/">Noise</a> [2176] => <a href="/flash/as3dmod/perlin/">Perlin</a> [2177] => <a href="/flash/as3dmod/pivot/">Pivot</a> [2178] => <a href="/flash/as3dmod/skew/">Skew</a> [2179] => <a href="/flash/as3dmod/taper/">Taper</a> [2180] => <a href="/flash/as3dmod/twist/">Twist</a> [2181] => </div> [2182] => <h4>Other</h4> [2183] => <div class="nav-content section"> [2184] => <a href="/flash/as3dmod/flag/">Flag</a> [2185] => </div> [2186] => </div> [2187] => <div class="nav-h3"> [2188] => <a href="/flash/flartoolkit/">FLARToolKit</a> [2189] => </div> [2190] => <div class="nav-h3"> [2191] => <a id="nav-flash-jiglibflash-switch">JigLibFlash</a> [2192] => </div> [2193] => <div id="nav-flash-jiglibflash"> [2194] => <h4>Objects</h4> [2195] => <div class="nav-content section"> [2196] => <a href="/flash/jiglibflash/jbox/">JBox</a> [2197] => <a href="/flash/jiglibflash/jcapsule/">JCapsule</a> [2198] => <a href="/flash/jiglibflash/jplane/">JPlane</a> [2199] => <a href="/flash/jiglibflash/jsphere/">JSphere</a> [2200] => </div> [2201] => <h4>Other</h4> [2202] => <div class="nav-content section"> [2203] => <a href="/flash/jiglibflash/physics/">Physics</a> [2204] => </div> [2205] => </div> [2206] => <div class="nav-h3"> [2207] => <a id="nav-flash-papervision3d-switch">Papervision3D</a> [2208] => </div> [2209] => <div id="nav-flash-papervision3d"> [2210] => <h4>Install</h4> [2211] => <div class="nav-content section"> [2212] => <a href="/flash/papervision3d/install/">Install</a> [2213] => </div> [2214] => <h4>Example</h4> [2215] => <div class="nav-content section"> [2216] => <a href="/flash/papervision3d/1/">1</a> [2217] => <a href="/flash/papervision3d/2/">2</a> [2218] => <a href="/flash/papervision3d/3/">3</a> [2219] => <a href="/flash/papervision3d/4/">4</a> [2220] => <a href="/flash/papervision3d/5/">5</a> [2221] => </div> [2222] => <h4>Cameras</h4> [2223] => <div class="nav-content section"> [2224] => <a href="/flash/papervision3d/camera3d/">Camera3D</a> [2225] => <a href="/flash/papervision3d/debugcamera3d/">DebugCamera3D</a> [2226] => <a href="/flash/papervision3d/springcamera3d/">SpringCamera3D</a> [2227] => </div> [2228] => <h4>Core</h4> [2229] => <div class="nav-content section"> [2230] => <a href="/flash/papervision3d/lines3d/">Lines3D</a> [2231] => <a href="/flash/papervision3d/fogfilter/">FogFilter</a> [2232] => </div> [2233] => <h4>Light</h4> [2234] => <div class="nav-content section"> [2235] => <a href="/flash/papervision3d/pointlight3d/">PointLight3D</a> [2236] => </div> [2237] => <h4>Materials</h4> [2238] => <div class="nav-content section"> [2239] => <a href="/flash/papervision3d/bitmapfilematerial/">BitmapFileMaterial</a> [2240] => <a href="/flash/papervision3d/bitmapmaterial/">BitmapMaterial</a> [2241] => <a href="/flash/papervision3d/bitmapviewportmaterial/">BitmapViewportMaterial</a> [2242] => <a href="/flash/papervision3d/colormaterial/">ColorMaterial</a> [2243] => <a href="/flash/papervision3d/compositematerial/">CompositeMaterial</a> [2244] => <a href="/flash/papervision3d/moviematerial/">MovieMaterial</a> [2245] => <a href="/flash/papervision3d/wireframematerial/">WireframeMaterial</a> [2246] => </div> [2247] => <h4>Shade Materials</h4> [2248] => <div class="nav-content section"> [2249] => <a href="/flash/papervision3d/cellmaterial/">CellMaterial</a> [2250] => <a href="/flash/papervision3d/envmapmaterial/">EnvMapMaterial</a> [2251] => <a href="/flash/papervision3d/flatshadematerial/">FlatShadeMaterial</a> [2252] => <a href="/flash/papervision3d/gouraudmaterial/">GouraudMaterial</a> [2253] => <a href="/flash/papervision3d/phongmaterial/">PhongMaterial</a> [2254] => </div> [2255] => <h4>Special Material</h4> [2256] => <div class="nav-content section"> [2257] => <a href="/flash/papervision3d/particlematerial/">ParticleMaterial</a> [2258] => </div> [2259] => <h4>Parser Objects</h4> [2260] => <div class="nav-content section"> [2261] => <a href="/flash/papervision3d/dae/">DAE</a> [2262] => <a href="/flash/papervision3d/kmz/">KMZ</a> [2263] => </div> [2264] => <h4>Primitive Objects</h4> [2265] => <div class="nav-content section"> [2266] => <a href="/flash/papervision3d/arrow/">Arrow</a> [2267] => <a href="/flash/papervision3d/cone/">Cone</a> [2268] => <a href="/flash/papervision3d/cube/">Cube</a> [2269] => <a href="/flash/papervision3d/cylinder/">Cylinder</a> [2270] => <a href="/flash/papervision3d/paperplane/">PaperPlane</a> [2271] => <a href="/flash/papervision3d/plane/">Plane</a> [2272] => <a href="/flash/papervision3d/sphere/">Sphere</a> [2273] => </div> [2274] => <h4>Special Objects</h4> [2275] => <div class="nav-content section"> [2276] => <a href="/flash/papervision3d/particlefield/">ParticleField</a> [2277] => <a href="/flash/papervision3d/ucs/">UCS</a> [2278] => </div> [2279] => <h4>Render</h4> [2280] => <div class="nav-content section"> [2281] => <a href="/flash/papervision3d/basicrenderengine/">BasicRenderEngine</a> [2282] => <a href="/flash/papervision3d/lazyrenderengine/">LazyRenderEngine</a> [2283] => <a href="/flash/papervision3d/quadrantrenderengine/">QuadrantRenderEngine</a> [2284] => </div> [2285] => <h4>Scene</h4> [2286] => <div class="nav-content section"> [2287] => <a href="/flash/papervision3d/scene3d/">Scene3D</a> [2288] => </div> [2289] => <h4>Typography</h4> [2290] => <div class="nav-content section"> [2291] => <a href="/flash/papervision3d/text3d/">Text3D</a> [2292] => </div> [2293] => <h4>Views</h4> [2294] => <div class="nav-content section"> [2295] => <a href="/flash/papervision3d/basicview/">BasicView</a> [2296] => <a href="/flash/papervision3d/reflectionview/">ReflectionView</a> [2297] => <a href="/flash/papervision3d/statsview/">StatsView</a> [2298] => <a href="/flash/papervision3d/viewport3d/">Viewport3D</a> [2299] => </div> [2300] => <h4>View Layers</h4> [2301] => <div class="nav-content section"> [2302] => <a href="/flash/papervision3d/bitmapeffectlayer/">BitmapEffectLayer</a> [2303] => <a href="/flash/papervision3d/viewportlayer/">ViewportLayer</a> [2304] => </div> [2305] => <h4>Other</h4> [2306] => <div class="nav-content section"> [2307] => <a href="/flash/papervision3d/anaglyph/">Anaglyph</a> [2308] => <a href="/flash/papervision3d/camera-move/">Camera Move</a> [2309] => <a href="/flash/papervision3d/camera-rotate/">Camera Rotate</a> [2310] => <a href="/flash/papervision3d/camera-target-move/">Camera Target Move</a> [2311] => <a href="/flash/papervision3d/object-move/">Object Move</a> [2312] => <a href="/flash/papervision3d/object-rotate/">Object Rotate</a> [2313] => <a href="/flash/papervision3d/object-scale/">Object Scale</a> [2314] => <a href="/flash/papervision3d/panorama/">Panorama</a> [2315] => </div> [2316] => </div> [2317] => </div> [2318] => <div class="nav-h2"> [2319] => <a id="nav-sketchup-switch">SketchUp</a> [2320] => </div> [2321] => <div id="nav-sketchup"> [2322] => <div class="nav-content section"> [2323] => <a href="/sketchup/papervision3d/">Papervision3D</a> [2324] => <a href="/sketchup/triangulate/">Triangulate</a> [2325] => </div> [2326] => </div> [2327] => <div class="nav-h2"> [2328] => <a id="nav-unity-switch">Unity</a> [2329] => </div> [2330] => <div id="nav-unity"> [2331] => <h3>Detect</h3> [2332] => <div class="nav-content section"> [2333] => <a href="/unity/detect/">Detect</a> [2334] => </div> [2335] => <h3>Games</h3> [2336] => <div class="nav-content section"> [2337] => <a href="/unity/air-hockey/">Air Hockey</a> [2338] => <a href="/unity/foosball/">Foosball</a> [2339] => <a href="/unity/pool/">Pool</a> [2340] => </div> [2341] => <h3>Unity</h3> [2342] => <div class="nav-content section"> [2343] => <a href="/unity/car/">Car</a> [2344] => <a href="/unity/lerpz-escapes/">Lerpz Escapes</a> [2345] => <a href="/unity/mecanim/">Mecanim</a> [2346] => </div> [2347] => </div> [2348] => <div class="nav-h2"> [2349] => <a id="nav-xcode-switch">Xcode</a> [2350] => </div> [2351] => <div id="nav-xcode"> [2352] => <h3>Example</h3> [2353] => <div class="nav-content section"> [2354] => <a href="/xcode/1/">1</a> [2355] => <a href="/xcode/2/">2</a> [2356] => <a href="/xcode/3/">3</a> [2357] => <a href="/xcode/4/">4</a> [2358] => <a href="/xcode/5/">5</a> [2359] => <a href="/xcode/6/">6</a> [2360] => </div> [2361] => <h3>CSV2Plist</h3> [2362] => <div class="nav-content section"> [2363] => <a href="/xcode/csv2plist/">CSV2Plist</a> [2364] => </div> [2365] => <h3>UI</h3> [2366] => <div class="nav-content section"> [2367] => <a href="/xcode/uiactivityindicatorview/">UIActivityIndicatorView</a> [2368] => <a href="/xcode/uibutton/">UIButton</a> [2369] => <a href="/xcode/uiimageview/">UIImageView</a> [2370] => <a href="/xcode/uilabel/">UILabel</a> [2371] => <a href="/xcode/uipagecontrol/">UIPageControl</a> [2372] => <a href="/xcode/uiprogressview/">UIProgressView</a> [2373] => <a href="/xcode/uisegmentedcontrol/">UISegmentedControl</a> [2374] => <a href="/xcode/uislider/">UISlider</a> [2375] => <a href="/xcode/uistepper/">UIStepper</a> [2376] => <a href="/xcode/uiswitch/">UISwitch</a> [2377] => <a href="/xcode/uitextfield/">UITextField</a> [2378] => </div> [2379] => </div> [2380] => </div> [2381] => </nav> [2382] => <footer> [2383] => <div class="boilerplate"> [2384] => <a href="/Jesus/">Jesus</a> [2385] => • <a href="/Bible/">Bible</a> [2386] => </div> [2387] => <div class="boilerplate"> [2388] => <a href="/html/">HTML</a> [2389] => • <a href="/css/">CSS</a> [2390] => • <a href="/js/">JS</a> [2391] => • <a href="/php/">PHP</a> [2392] => • <a href="/svg/">SVG</a> [2393] => • <a href="/more/">More</a> [2394] => </div> [2395] => <div class="boilerplate"> [2396] => <a href="/about/">About</a> [2397] => • <a href="/terms/">Terms</a> [2398] => </div> [2399] => <p id="copyright">© 2022 Osbo Design</p> [2400] => </footer> [2401] => <div id="foreground-header"> [2402] => <a href="/"><img alt="Home" id="home" src="/assets/svg/Home.svg" title="Home"></a> [2403] => <img alt="Menu" id="menu" src="/assets/svg/Menu.svg" title="Menu"> [2404] => <form action="/search/"> [2405] => <input id="search-site" name="search-site" title="Search" type="search"> [2406] => </form> [2407] => </div> [2408] => <div id="foreground-footer"> [2409] => <a href="#"><img alt="Top" id="top" src="/assets/svg/Top.svg" title="Top"></a> [2410] => </div> [2411] => </body> [2412] => </html> )
flags | FILE_IGNORE_NEW_LINES
<? $filename = "https://osbo.com"; $flags = FILE_IGNORE_NEW_LINES; $return = file($filename, $flags); print_r($return); ?>
Array ( [0] => <!doctype html> [1] => <html lang="en"> [2] => <head> [3] => <meta charset="utf-8"> [4] => <meta content="osbo.com" name="description"> [5] => <meta content="width=device-width" name="viewport"> [6] => <title>osbo.com</title> [7] => <link href="/assets/svg/Icon.svg" rel="icon"> [8] => <link href="/assets/css/" rel="stylesheet"> [9] => <script src="/assets/js/"></script> [10] => </head> [11] => <body> [12] => <div id="background"></div> [13] => <header> [14] => <h1>osbo.com</h1> [15] => </header> [16] => <main> [17] => <h2 id="html"><a href="#html">HTML</a></h2> [18] => <div class="editor1 section"> [19] => <form id="form1"> [20] => <textarea id="textarea1" spellcheck="false" title="Edit"><!doctype html> [21] => <html> [22] => <head> [23] => <title>HTML</title> [24] => </head> [25] => <body> [26] => <a href="/html/" target="_parent">HTML</a> [27] => </body> [28] => </html></textarea> [29] => <input id="input1-1" type="button" value="↻" title="Reset"> [30] => <input id="input2-1" type="button" value="→" title="Editor"> [31] => </form> [32] => <iframe id="iframe1" title="Editor"></iframe> [33] => </div> [34] => <h2 id="css"><a href="#css">CSS</a></h2> [35] => <div class="editor1 section"> [36] => <form id="form2"> [37] => <textarea id="textarea2" spellcheck="false" title="Edit"><!doctype html> [38] => <html> [39] => <head> [40] => <title>CSS</title> [41] => <style> [42] => a [43] => { [44] => background-color: rgba(255,0,0,0.1); [45] => color: red; [46] => } [47] => a:hover [48] => { [49] => background-color: rgba(0,0,0,0.1); [50] => color: black; [51] => } [52] => </style> [53] => </head> [54] => <body> [55] => <a href="/css/" target="_parent">CSS</a> [56] => </body> [57] => </html></textarea> [58] => <input id="input1-2" type="button" value="↻" title="Reset"> [59] => <input id="input2-2" type="button" value="→" title="Editor"> [60] => </form> [61] => <iframe id="iframe2" title="Editor"></iframe> [62] => </div> [63] => <h2 id="js"><a href="#js">JS</a></h2> [64] => <div class="editor1 section"> [65] => <form id="form3"> [66] => <textarea id="textarea3" spellcheck="false" title="Edit"><!doctype html> [67] => <html> [68] => <head> [69] => <title>JS</title> [70] => <style> [71] => a [72] => { [73] => background-color: rgba(0,255,0,0.1); [74] => color: green; [75] => } [76] => a:hover [77] => { [78] => background-color: rgba(0,0,0,0.1); [79] => color: black; [80] => } [81] => </style> [82] => </head> [83] => <body> [84] => <a href="/js/" target="_parent">JS</a> [85] => <script> [86] => function myfunction() [87] => { [88] => var element = document.querySelector("a"); [89] => element.style.position = "absolute"; [90] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [91] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [92] => } [93] => document.querySelector("a").addEventListener("mouseout", myfunction); [94] => </script> [95] => </body> [96] => </html></textarea> [97] => <input id="input1-3" type="button" value="↻" title="Reset"> [98] => <input id="input2-3" type="button" value="→" title="Editor"> [99] => </form> [100] => <iframe id="iframe3" title="Editor"></iframe> [101] => </div> [102] => <h2 id="php"><a href="#php">PHP</a></h2> [103] => <div class="editor3 section"> [104] => <pre><? [105] => [106] => echo '<!doctype html> [107] => <html> [108] => <head> [109] => <title>PHP</title> [110] => <style> [111] => a [112] => { [113] => background-color: rgba(255,0,255,0.1); [114] => color: purple; [115] => } [116] => a:hover [117] => { [118] => background-color: rgba(0,0,0,0.1); [119] => color: black; [120] => } [121] => </style> [122] => </head> [123] => <body> [124] => <a href="/php/" target="_parent">PHP</a> [125] => <script> [126] => function myfunction() [127] => { [128] => var element = document.querySelector("a"); [129] => element.style.position = "absolute"; [130] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [131] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [132] => } [133] => document.querySelector("a").addEventListener("mouseout", myfunction); [134] => </script> [135] => </body> [136] => </html>'; [137] => [138] => ?></pre> [139] => <pre><!doctype html> [140] => <html> [141] => <head> [142] => <title>PHP</title> [143] => <style> [144] => a [145] => { [146] => background-color: rgba(255,0,255,0.1); [147] => color: purple; [148] => } [149] => a:hover [150] => { [151] => background-color: rgba(0,0,0,0.1); [152] => color: black; [153] => } [154] => </style> [155] => </head> [156] => <body> [157] => <a href="/php/" target="_parent">PHP</a> [158] => <script> [159] => function myfunction() [160] => { [161] => var element = document.querySelector("a"); [162] => element.style.position = "absolute"; [163] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [164] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [165] => } [166] => document.querySelector("a").addEventListener("mouseout", myfunction); [167] => </script> [168] => </body> [169] => </html></pre> [170] => <iframe srcdoc="<!doctype html> [171] => <html> [172] => <head> [173] => <title>PHP</title> [174] => <style> [175] => a [176] => { [177] => background-color: rgba(255,0,255,0.1); [178] => color: purple; [179] => } [180] => a:hover [181] => { [182] => background-color: rgba(0,0,0,0.1); [183] => color: black; [184] => } [185] => </style> [186] => </head> [187] => <body> [188] => <a href="/php/" target="_parent">PHP</a> [189] => <script> [190] => function myfunction() [191] => { [192] => var element = document.querySelector("a"); [193] => element.style.position = "absolute"; [194] => element.style.left = Math.random() * (window.innerWidth - element.offsetWidth) + "px"; [195] => element.style.top = Math.random() * (window.innerHeight - element.offsetHeight) + "px"; [196] => } [197] => document.querySelector("a").addEventListener("mouseout", myfunction); [198] => </script> [199] => </body> [200] => </html>" title="Editor"></iframe> [201] => </div> [202] => <h2 id="svg"><a href="#svg">SVG</a></h2> [203] => <div class="editor1 section"> [204] => <form id="form4"> [205] => <textarea id="textarea4" spellcheck="false" title="Edit"><svg height="100%" width="100%" xmlns="http://www.w3.org/2000/svg"> [206] => <a href="/svg/" target="_parent"> [207] => <rect fill="yellow" height="100%" opacity="0.1" width="100%"/> [208] => <circle cx="50%" cy="50%" fill="yellow" r="50vh"/> [209] => <text dominant-baseline="middle" text-anchor="middle" x="50%" y="50%">SVG</text> [210] => </a> [211] => </svg></textarea> [212] => <input id="input1-4" type="button" value="↻" title="Reset"> [213] => <input id="input2-4" type="button" value="→" title="Editor"> [214] => </form> [215] => <iframe id="iframe4" title="Editor"></iframe> [216] => </div> [217] => </main> [218] => <nav> [219] => <div class="nav-h1"> [220] => <a href="/Jesus/">JESUS</a> [221] => </div> [222] => <div class="nav-h1"> [223] => <a id="nav-Bible-switch">BIBLE</a> [224] => </div> [225] => <div id="nav-Bible"> [226] => <h3>Overview</h3> [227] => <div class="nav-content section"> [228] => <a href="/Bible/">Overview</a> [229] => </div> [230] => <h3>Download</h3> [231] => <div class="nav-content section"> [232] => <a href="/Bible/download/">Download</a> [233] => </div> [234] => <h3>العربية</h3> [235] => <div class="nav-content section"> [236] => <a href="/Bible/asvd/">ASVD الكتاب المقدس ترجمة فانديك وسميث</a> [237] => </div> [238] => <h3>česky</h3> [239] => <div class="nav-content section"> [240] => <a href="/Bible/csbkr/">CSBKR Bible Kralická 1613</a> [241] => </div> [242] => <h3>Dansk</h3> [243] => <div class="nav-content section"> [244] => <a href="/Bible/da1871/">DA1871 Danske Bibel 1871</a> [245] => </div> [246] => <h3>Deutsch</h3> [247] => <div class="nav-content section"> [248] => <a href="/Bible/delut/">DELUT Luther Bible 1912</a> [249] => <a href="/Bible/elb/">ELB Elberfelder 1905</a> [250] => <a href="/Bible/elb71/">ELB71 Elberfelder 1871</a> [251] => </div> [252] => <h3>English</h3> [253] => <div class="nav-content section"> [254] => <a href="/Bible/asv/">ASV American Standard Version</a> [255] => <a href="/Bible/kjv/">KJV King James Version</a> [256] => <a href="/Bible/web/">WEB World English Bible</a> [257] => </div> [258] => <h3>Español</h3> [259] => <div class="nav-content section"> [260] => <a href="/Bible/rves/">RVES Reina-Valera Antigua</a> [261] => </div> [262] => <h3>Suomi</h3> [263] => <div class="nav-content section"> [264] => <a href="/Bible/fi1776/">FI1776 Finnish 1776</a> [265] => <a href="/Bible/finpr/">FINPR Finnish 1938</a> [266] => </div> [267] => <h3>Français</h3> [268] => <div class="nav-content section"> [269] => <a href="/Bible/fmar/">FMAR Martin 1744</a> [270] => <a href="/Bible/frdby/">FRDBY Bible Darby en français</a> [271] => <a href="/Bible/lsg/">LSG Louis Segond 1910</a> [272] => <a href="/Bible/ost/">OST Ostervald</a> [273] => </div> [274] => <h3>Magyar</h3> [275] => <div class="nav-content section"> [276] => <a href="/Bible/kar/">KAR Károli 1590</a> [277] => </div> [278] => <h3>Bahasa Indonesia</h3> [279] => <div class="nav-content section"> [280] => <a href="/Bible/idbar/">IDBAR Terjemahan Baru</a> [281] => </div> [282] => <h3>Italiano</h3> [283] => <div class="nav-content section"> [284] => <a href="/Bible/igd/">IGD Giovanni Diodati Bibbia</a> [285] => <a href="/Bible/itriv/">ITRIV Italian Riveduta 1927</a> [286] => </div> [287] => <h3>日本語</h3> [288] => <div class="nav-content section"> [289] => <a href="/Bible/ja1955/">JA1955 Colloquial Japanese (1955)</a> [290] => </div> [291] => <h3>Malagasy</h3> [292] => <div class="nav-content section"> [293] => <a href="/Bible/mg1865/">MG1865 Malagasy Bible</a> [294] => </div> [295] => <h3>te reo Māori</h3> [296] => <div class="nav-content section"> [297] => <a href="/Bible/maor/">MAOR Maori Bible</a> [298] => </div> [299] => <h3>한국어</h3> [300] => <div class="nav-content section"> [301] => <a href="/Bible/korvb/">KORVB 개역한글</a> [302] => </div> [303] => <h3>Nederlands</h3> [304] => <div class="nav-content section"> [305] => <a href="/Bible/sv1750/">SV1750 Statenvertaling</a> [306] => </div> [307] => <h3>Norsk</h3> [308] => <div class="nav-content section"> [309] => <a href="/Bible/norsk/">NORSK Det Norsk Bibelselskap 1930</a> [310] => </div> [311] => <h3>Polski</h3> [312] => <div class="nav-content section"> [313] => <a href="/Bible/pbg/">PBG Biblia Gdańska</a> [314] => </div> [315] => <h3>Português</h3> [316] => <div class="nav-content section"> [317] => <a href="/Bible/aa/">AA Almeida Atualizada</a> [318] => </div> [319] => <h3>Română</h3> [320] => <div class="nav-content section"> [321] => <a href="/Bible/rmnn/">RMNN Romanian Cornilescu 1928</a> [322] => <a href="/Bible/vdc/">VDC Versiunea Dumitru Cornilescu</a> [323] => <a href="/Bible/vdcc/">VDCC Versiunea Dumitru Cornilescu Corectată</a> [324] => </div> [325] => <h3>Pyccкий</h3> [326] => <div class="nav-content section"> [327] => <a href="/Bible/rursv/">RURSV Синодальный перевод</a> [328] => </div> [329] => <h3>Shqip</h3> [330] => <div class="nav-content section"> [331] => <a href="/Bible/albb/">ALBB Albanian Bible</a> [332] => </div> [333] => <h3>Svenska</h3> [334] => <div class="nav-content section"> [335] => <a href="/Bible/sk73/">SK73 Karl XII 1873</a> [336] => <a href="/Bible/sven/">SVEN Svenska 1917</a> [337] => </div> [338] => <h3>Wikang Tagalog</h3> [339] => <div class="nav-content section"> [340] => <a href="/Bible/tlab/">TLAB Ang Biblia</a> [341] => </div> [342] => <h3>українська</h3> [343] => <div class="nav-content section"> [344] => <a href="/Bible/ubio/">UBIO Біблія в пер. Івана Огієнка, 1962</a> [345] => <a href="/Bible/ukrk/">UKRK Біблія в пер. П.Куліша та І.Пулюя, 1905</a> [346] => </div> [347] => <h3>Tiếng Việt</h3> [348] => <div class="nav-content section"> [349] => <a href="/Bible/vi1934/">VI1934 1934 Vietnamese Bible</a> [350] => </div> [351] => <h3>简体中文</h3> [352] => <div class="nav-content section"> [353] => <a href="/Bible/cuvs/">CUVS 简体和合本</a> [354] => </div> [355] => <h3>繁體中文</h3> [356] => <div class="nav-content section"> [357] => <a href="/Bible/cuv/">CUV 和合本</a> [358] => </div> [359] => </div> [360] => <div class="nav-h1"> [361] => <a id="nav-html-switch">HTML</a> [362] => </div> [363] => <div id="nav-html"> [364] => <h3>Overview</h3> [365] => <div class="nav-content section"> [366] => <a href="/html/">Overview</a> [367] => </div> [368] => <h3>Attributes</h3> [369] => <div class="nav-content section"> [370] => <a href="/html/attributes/accesskey/">accesskey</a> [371] => <a href="/html/attributes/autocapitalize/">autocapitalize</a> [372] => <a href="/html/attributes/class/">class</a> [373] => <a href="/html/attributes/contenteditable/">contenteditable</a> [374] => <a href="/html/attributes/data/">data</a> [375] => <a href="/html/attributes/dir/">dir</a> [376] => <a href="/html/attributes/draggable/">draggable</a> [377] => <a href="/html/attributes/hidden/">hidden</a> [378] => <a href="/html/attributes/id/">id</a> [379] => <a href="/html/attributes/inputmode/">inputmode</a> [380] => <a href="/html/attributes/lang/">lang</a> [381] => <a href="/html/attributes/spellcheck/">spellcheck</a> [382] => <a href="/html/attributes/style/">style</a> [383] => <a href="/html/attributes/tabindex/">tabindex</a> [384] => <a href="/html/attributes/title/">title</a> [385] => </div> [386] => <h3>Elements</h3> [387] => <div class="nav-content section"> [388] => <a href="/html/elements/!doctype/">!doctype</a> [389] => <a href="/html/elements/a/">a</a> [390] => <a href="/html/elements/abbr/">abbr</a> [391] => <a href="/html/elements/address/">address</a> [392] => <a href="/html/elements/area/">area</a> [393] => <a href="/html/elements/article/">article</a> [394] => <a href="/html/elements/aside/">aside</a> [395] => <a href="/html/elements/audio/">audio</a> [396] => <a href="/html/elements/b/">b</a> [397] => <a href="/html/elements/base/">base</a> [398] => <a href="/html/elements/bdi/">bdi</a> [399] => <a href="/html/elements/bdo/">bdo</a> [400] => <a href="/html/elements/blockquote/">blockquote</a> [401] => <a href="/html/elements/body/">body</a> [402] => <a href="/html/elements/br/">br</a> [403] => <a href="/html/elements/button/">button</a> [404] => <a href="/html/elements/canvas/">canvas</a> [405] => <a href="/html/elements/caption/">caption</a> [406] => <a href="/html/elements/cite/">cite</a> [407] => <a href="/html/elements/code/">code</a> [408] => <a href="/html/elements/col/">col</a> [409] => <a href="/html/elements/colgroup/">colgroup</a> [410] => <a href="/html/elements/data/">data</a> [411] => <a href="/html/elements/datalist/">datalist</a> [412] => <a href="/html/elements/dd/">dd</a> [413] => <a href="/html/elements/del/">del</a> [414] => <a href="/html/elements/details/">details</a> [415] => <a href="/html/elements/dfn/">dfn</a> [416] => <a href="/html/elements/dialog/">dialog</a> [417] => <a href="/html/elements/div/">div</a> [418] => <a href="/html/elements/dl/">dl</a> [419] => <a href="/html/elements/dt/">dt</a> [420] => <a href="/html/elements/em/">em</a> [421] => <a href="/html/elements/embed/">embed</a> [422] => <a href="/html/elements/fieldset/">fieldset</a> [423] => <a href="/html/elements/figcaption/">figcaption</a> [424] => <a href="/html/elements/figure/">figure</a> [425] => <a href="/html/elements/footer/">footer</a> [426] => <a href="/html/elements/form/">form</a> [427] => <a href="/html/elements/h1/">h1</a> [428] => <a href="/html/elements/h2/">h2</a> [429] => <a href="/html/elements/h3/">h3</a> [430] => <a href="/html/elements/h4/">h4</a> [431] => <a href="/html/elements/h5/">h5</a> [432] => <a href="/html/elements/h6/">h6</a> [433] => <a href="/html/elements/head/">head</a> [434] => <a href="/html/elements/header/">header</a> [435] => <a href="/html/elements/hgroup/">hgroup</a> [436] => <a href="/html/elements/hr/">hr</a> [437] => <a href="/html/elements/html/">html</a> [438] => <a href="/html/elements/i/">i</a> [439] => <a href="/html/elements/iframe/">iframe</a> [440] => <a href="/html/elements/img/">img</a> [441] => <a href="/html/elements/input/">input</a> [442] => <a href="/html/elements/ins/">ins</a> [443] => <a href="/html/elements/kbd/">kbd</a> [444] => <a href="/html/elements/label/">label</a> [445] => <a href="/html/elements/legend/">legend</a> [446] => <a href="/html/elements/li/">li</a> [447] => <a href="/html/elements/link/">link</a> [448] => <a href="/html/elements/main/">main</a> [449] => <a href="/html/elements/map/">map</a> [450] => <a href="/html/elements/mark/">mark</a> [451] => <a href="/html/elements/meta/">meta</a> [452] => <a href="/html/elements/meter/">meter</a> [453] => <a href="/html/elements/nav/">nav</a> [454] => <a href="/html/elements/noscript/">noscript</a> [455] => <a href="/html/elements/object/">object</a> [456] => <a href="/html/elements/ol/">ol</a> [457] => <a href="/html/elements/optgroup/">optgroup</a> [458] => <a href="/html/elements/option/">option</a> [459] => <a href="/html/elements/output/">output</a> [460] => <a href="/html/elements/p/">p</a> [461] => <a href="/html/elements/param/">param</a> [462] => <a href="/html/elements/picture/">picture</a> [463] => <a href="/html/elements/pre/">pre</a> [464] => <a href="/html/elements/progress/">progress</a> [465] => <a href="/html/elements/q/">q</a> [466] => <a href="/html/elements/rb/">rb</a> [467] => <a href="/html/elements/rp/">rp</a> [468] => <a href="/html/elements/rt/">rt</a> [469] => <a href="/html/elements/rtc/">rtc</a> [470] => <a href="/html/elements/ruby/">ruby</a> [471] => <a href="/html/elements/s/">s</a> [472] => <a href="/html/elements/samp/">samp</a> [473] => <a href="/html/elements/script/">script</a> [474] => <a href="/html/elements/section/">section</a> [475] => <a href="/html/elements/select/">select</a> [476] => <a href="/html/elements/slot/">slot</a> [477] => <a href="/html/elements/small/">small</a> [478] => <a href="/html/elements/source/">source</a> [479] => <a href="/html/elements/span/">span</a> [480] => <a href="/html/elements/strong/">strong</a> [481] => <a href="/html/elements/style/">style</a> [482] => <a href="/html/elements/sub/">sub</a> [483] => <a href="/html/elements/summary/">summary</a> [484] => <a href="/html/elements/sup/">sup</a> [485] => <a href="/html/elements/table/">table</a> [486] => <a href="/html/elements/tbody/">tbody</a> [487] => <a href="/html/elements/td/">td</a> [488] => <a href="/html/elements/template/">template</a> [489] => <a href="/html/elements/textarea/">textarea</a> [490] => <a href="/html/elements/tfoot/">tfoot</a> [491] => <a href="/html/elements/th/">th</a> [492] => <a href="/html/elements/thead/">thead</a> [493] => <a href="/html/elements/time/">time</a> [494] => <a href="/html/elements/title/">title</a> [495] => <a href="/html/elements/tr/">tr</a> [496] => <a href="/html/elements/track/">track</a> [497] => <a href="/html/elements/u/">u</a> [498] => <a href="/html/elements/ul/">ul</a> [499] => <a href="/html/elements/var/">var</a> [500] => <a href="/html/elements/wbr/">wbr</a> [501] => </div> [502] => <h3>Other</h3> [503] => <div class="nav-content section"> [504] => <a href="/html/characters/">Characters</a> [505] => <a href="/html/comments/">Comments</a> [506] => <a href="/html/datatypes/">Datatypes</a> [507] => </div> [508] => </div> [509] => <div class="nav-h1"> [510] => <a id="nav-css-switch">CSS</a> [511] => </div> [512] => <div id="nav-css"> [513] => <h3>Overview</h3> [514] => <div class="nav-content section"> [515] => <a href="/css/">Overview</a> [516] => </div> [517] => <h3>Properties</h3> [518] => <div class="nav-content section"> [519] => <a href="/css/properties/align-content/">align-content</a> [520] => <a href="/css/properties/align-items/">align-items</a> [521] => <a href="/css/properties/align-self/">align-self</a> [522] => <a href="/css/properties/all/">all</a> [523] => <a href="/css/properties/animation/">animation</a> [524] => <a href="/css/properties/animation-delay/">animation-delay</a> [525] => <a href="/css/properties/animation-direction/">animation-direction</a> [526] => <a href="/css/properties/animation-duration/">animation-duration</a> [527] => <a href="/css/properties/animation-fill-mode/">animation-fill-mode</a> [528] => <a href="/css/properties/animation-iteration-count/">animation-iteration-count</a> [529] => <a href="/css/properties/animation-name/">animation-name</a> [530] => <a href="/css/properties/animation-play-state/">animation-play-state</a> [531] => <a href="/css/properties/animation-timing-function/">animation-timing-function</a> [532] => <a href="/css/properties/backdrop-filter/">backdrop-filter</a> [533] => <a href="/css/properties/backface-visibility/">backface-visibility</a> [534] => <a href="/css/properties/background/">background</a> [535] => <a href="/css/properties/background-attachment/">background-attachment</a> [536] => <a href="/css/properties/background-blend-mode/">background-blend-mode</a> [537] => <a href="/css/properties/background-clip/">background-clip</a> [538] => <a href="/css/properties/background-color/">background-color</a> [539] => <a href="/css/properties/background-image/">background-image</a> [540] => <a href="/css/properties/background-origin/">background-origin</a> [541] => <a href="/css/properties/background-position/">background-position</a> [542] => <a href="/css/properties/background-repeat/">background-repeat</a> [543] => <a href="/css/properties/background-size/">background-size</a> [544] => <a href="/css/properties/block-ellipsis/">block-ellipsis</a> [545] => <a href="/css/properties/block-size/">block-size</a> [546] => <a href="/css/properties/border/">border</a> [547] => <a href="/css/properties/border-block/">border-block</a> [548] => <a href="/css/properties/border-block-color/">border-block-color</a> [549] => <a href="/css/properties/border-block-end/">border-block-end</a> [550] => <a href="/css/properties/border-block-end-color/">border-block-end-color</a> [551] => <a href="/css/properties/border-block-end-style/">border-block-end-style</a> [552] => <a href="/css/properties/border-block-end-width/">border-block-end-width</a> [553] => <a href="/css/properties/border-block-start/">border-block-start</a> [554] => <a href="/css/properties/border-block-start-color/">border-block-start-color</a> [555] => <a href="/css/properties/border-block-start-style/">border-block-start-style</a> [556] => <a href="/css/properties/border-block-start-width/">border-block-start-width</a> [557] => <a href="/css/properties/border-block-style/">border-block-style</a> [558] => <a href="/css/properties/border-block-width/">border-block-width</a> [559] => <a href="/css/properties/border-bottom/">border-bottom</a> [560] => <a href="/css/properties/border-bottom-color/">border-bottom-color</a> [561] => <a href="/css/properties/border-bottom-left-radius/">border-bottom-left-radius</a> [562] => <a href="/css/properties/border-bottom-right-radius/">border-bottom-right-radius</a> [563] => <a href="/css/properties/border-bottom-style/">border-bottom-style</a> [564] => <a href="/css/properties/border-bottom-width/">border-bottom-width</a> [565] => <a href="/css/properties/border-collapse/">border-collapse</a> [566] => <a href="/css/properties/border-color/">border-color</a> [567] => <a href="/css/properties/border-end-end-radius/">border-end-end-radius</a> [568] => <a href="/css/properties/border-end-start-radius/">border-end-start-radius</a> [569] => <a href="/css/properties/border-image/">border-image</a> [570] => <a href="/css/properties/border-image-outset/">border-image-outset</a> [571] => <a href="/css/properties/border-image-repeat/">border-image-repeat</a> [572] => <a href="/css/properties/border-image-slice/">border-image-slice</a> [573] => <a href="/css/properties/border-image-source/">border-image-source</a> [574] => <a href="/css/properties/border-image-width/">border-image-width</a> [575] => <a href="/css/properties/border-inline/">border-inline</a> [576] => <a href="/css/properties/border-inline-color/">border-inline-color</a> [577] => <a href="/css/properties/border-inline-end/">border-inline-end</a> [578] => <a href="/css/properties/border-inline-end-color/">border-inline-end-color</a> [579] => <a href="/css/properties/border-inline-end-style/">border-inline-end-style</a> [580] => <a href="/css/properties/border-inline-end-width/">border-inline-end-width</a> [581] => <a href="/css/properties/border-inline-start/">border-inline-start</a> [582] => <a href="/css/properties/border-inline-start-color/">border-inline-start-color</a> [583] => <a href="/css/properties/border-inline-start-style/">border-inline-start-style</a> [584] => <a href="/css/properties/border-inline-start-width/">border-inline-start-width</a> [585] => <a href="/css/properties/border-inline-style/">border-inline-style</a> [586] => <a href="/css/properties/border-inline-width/">border-inline-width</a> [587] => <a href="/css/properties/border-left/">border-left</a> [588] => <a href="/css/properties/border-left-color/">border-left-color</a> [589] => <a href="/css/properties/border-left-style/">border-left-style</a> [590] => <a href="/css/properties/border-left-width/">border-left-width</a> [591] => <a href="/css/properties/border-radius/">border-radius</a> [592] => <a href="/css/properties/border-right/">border-right</a> [593] => <a href="/css/properties/border-right-color/">border-right-color</a> [594] => <a href="/css/properties/border-right-style/">border-right-style</a> [595] => <a href="/css/properties/border-right-width/">border-right-width</a> [596] => <a href="/css/properties/border-spacing/">border-spacing</a> [597] => <a href="/css/properties/border-start-end-radius/">border-start-end-radius</a> [598] => <a href="/css/properties/border-start-start-radius/">border-start-start-radius</a> [599] => <a href="/css/properties/border-style/">border-style</a> [600] => <a href="/css/properties/border-top/">border-top</a> [601] => <a href="/css/properties/border-top-color/">border-top-color</a> [602] => <a href="/css/properties/border-top-left-radius/">border-top-left-radius</a> [603] => <a href="/css/properties/border-top-right-radius/">border-top-right-radius</a> [604] => <a href="/css/properties/border-top-style/">border-top-style</a> [605] => <a href="/css/properties/border-top-width/">border-top-width</a> [606] => <a href="/css/properties/border-width/">border-width</a> [607] => <a href="/css/properties/bottom/">bottom</a> [608] => <a href="/css/properties/box-decoration-break/">box-decoration-break</a> [609] => <a href="/css/properties/box-shadow/">box-shadow</a> [610] => <a href="/css/properties/box-sizing/">box-sizing</a> [611] => <a href="/css/properties/caption-side/">caption-side</a> [612] => <a href="/css/properties/caret/">caret</a> [613] => <a href="/css/properties/caret-color/">caret-color</a> [614] => <a href="/css/properties/caret-shape/">caret-shape</a> [615] => <a href="/css/properties/clear/">clear</a> [616] => <a href="/css/properties/clip/">clip</a> [617] => <a href="/css/properties/clip-path/">clip-path</a> [618] => <a href="/css/properties/color/">color</a> [619] => <a href="/css/properties/color-scheme/">color-scheme</a> [620] => <a href="/css/properties/column-count/">column-count</a> [621] => <a href="/css/properties/column-fill/">column-fill</a> [622] => <a href="/css/properties/column-gap/">column-gap</a> [623] => <a href="/css/properties/column-rule/">column-rule</a> [624] => <a href="/css/properties/column-rule-color/">column-rule-color</a> [625] => <a href="/css/properties/column-rule-style/">column-rule-style</a> [626] => <a href="/css/properties/column-rule-width/">column-rule-width</a> [627] => <a href="/css/properties/column-span/">column-span</a> [628] => <a href="/css/properties/column-width/">column-width</a> [629] => <a href="/css/properties/columns/">columns</a> [630] => <a href="/css/properties/contain/">contain</a> [631] => <a href="/css/properties/content/">content</a> [632] => <a href="/css/properties/content-visibility/">content-visibility</a> [633] => <a href="/css/properties/continue/">continue</a> [634] => <a href="/css/properties/counter-increment/">counter-increment</a> [635] => <a href="/css/properties/counter-reset/">counter-reset</a> [636] => <a href="/css/properties/counter-set/">counter-set</a> [637] => <a href="/css/properties/cursor/">cursor</a> [638] => <a href="/css/properties/direction/">direction</a> [639] => <a href="/css/properties/display/">display</a> [640] => <a href="/css/properties/empty-cells/">empty-cells</a> [641] => <a href="/css/properties/filter/">filter</a> [642] => <a href="/css/properties/flex/">flex</a> [643] => <a href="/css/properties/flex-basis/">flex-basis</a> [644] => <a href="/css/properties/flex-direction/">flex-direction</a> [645] => <a href="/css/properties/flex-flow/">flex-flow</a> [646] => <a href="/css/properties/flex-grow/">flex-grow</a> [647] => <a href="/css/properties/flex-shrink/">flex-shrink</a> [648] => <a href="/css/properties/flex-wrap/">flex-wrap</a> [649] => <a href="/css/properties/float/">float</a> [650] => <a href="/css/properties/font/">font</a> [651] => <a href="/css/properties/font-family/">font-family</a> [652] => <a href="/css/properties/font-feature-settings/">font-feature-settings</a> [653] => <a href="/css/properties/font-kerning/">font-kerning</a> [654] => <a href="/css/properties/font-optical-sizing/">font-optical-sizing</a> [655] => <a href="/css/properties/font-size/">font-size</a> [656] => <a href="/css/properties/font-size-adjust/">font-size-adjust</a> [657] => <a href="/css/properties/font-style/">font-style</a> [658] => <a href="/css/properties/font-variant/">font-variant</a> [659] => <a href="/css/properties/font-variant-caps/">font-variant-caps</a> [660] => <a href="/css/properties/font-variant-numeric/">font-variant-numeric</a> [661] => <a href="/css/properties/font-variant-position/">font-variant-position</a> [662] => <a href="/css/properties/font-variation-settings/">font-variation-settings</a> [663] => <a href="/css/properties/font-weight/">font-weight</a> [664] => <a href="/css/properties/gap/">gap</a> [665] => <a href="/css/properties/grid/">grid</a> [666] => <a href="/css/properties/grid-area/">grid-area</a> [667] => <a href="/css/properties/grid-auto-columns/">grid-auto-columns</a> [668] => <a href="/css/properties/grid-auto-flow/">grid-auto-flow</a> [669] => <a href="/css/properties/grid-auto-rows/">grid-auto-rows</a> [670] => <a href="/css/properties/grid-column/">grid-column</a> [671] => <a href="/css/properties/grid-column-end/">grid-column-end</a> [672] => <a href="/css/properties/grid-column-start/">grid-column-start</a> [673] => <a href="/css/properties/grid-row/">grid-row</a> [674] => <a href="/css/properties/grid-row-end/">grid-row-end</a> [675] => <a href="/css/properties/grid-row-start/">grid-row-start</a> [676] => <a href="/css/properties/grid-template/">grid-template</a> [677] => <a href="/css/properties/grid-template-areas/">grid-template-areas</a> [678] => <a href="/css/properties/grid-template-columns/">grid-template-columns</a> [679] => <a href="/css/properties/grid-template-rows/">grid-template-rows</a> [680] => <a href="/css/properties/height/">height</a> [681] => <a href="/css/properties/hyphens/">hyphens</a> [682] => <a href="/css/properties/inline-size/">inline-size</a> [683] => <a href="/css/properties/inset/">inset</a> [684] => <a href="/css/properties/inset-block/">inset-block</a> [685] => <a href="/css/properties/inset-block-end/">inset-block-end</a> [686] => <a href="/css/properties/inset-block-start/">inset-block-start</a> [687] => <a href="/css/properties/inset-inline/">inset-inline</a> [688] => <a href="/css/properties/inset-inline-end/">inset-inline-end</a> [689] => <a href="/css/properties/inset-inline-start/">inset-inline-start</a> [690] => <a href="/css/properties/isolation/">isolation</a> [691] => <a href="/css/properties/justify-content/">justify-content</a> [692] => <a href="/css/properties/justify-items/">justify-items</a> [693] => <a href="/css/properties/justify-self/">justify-self</a> [694] => <a href="/css/properties/left/">left</a> [695] => <a href="/css/properties/letter-spacing/">letter-spacing</a> [696] => <a href="/css/properties/line-break/">line-break</a> [697] => <a href="/css/properties/line-clamp/">line-clamp</a> [698] => <a href="/css/properties/line-height/">line-height</a> [699] => <a href="/css/properties/list-style/">list-style</a> [700] => <a href="/css/properties/list-style-image/">list-style-image</a> [701] => <a href="/css/properties/list-style-position/">list-style-position</a> [702] => <a href="/css/properties/list-style-type/">list-style-type</a> [703] => <a href="/css/properties/margin/">margin</a> [704] => <a href="/css/properties/margin-block/">margin-block</a> [705] => <a href="/css/properties/margin-block-end/">margin-block-end</a> [706] => <a href="/css/properties/margin-block-start/">margin-block-start</a> [707] => <a href="/css/properties/margin-bottom/">margin-bottom</a> [708] => <a href="/css/properties/margin-inline/">margin-inline</a> [709] => <a href="/css/properties/margin-inline-end/">margin-inline-end</a> [710] => <a href="/css/properties/margin-inline-start/">margin-inline-start</a> [711] => <a href="/css/properties/margin-left/">margin-left</a> [712] => <a href="/css/properties/margin-right/">margin-right</a> [713] => <a href="/css/properties/margin-top/">margin-top</a> [714] => <a href="/css/properties/mask/">mask</a> [715] => <a href="/css/properties/mask-border/">mask-border</a> [716] => <a href="/css/properties/mask-border-mode/">mask-border-mode</a> [717] => <a href="/css/properties/mask-border-outset/">mask-border-outset</a> [718] => <a href="/css/properties/mask-border-repeat/">mask-border-repeat</a> [719] => <a href="/css/properties/mask-border-slice/">mask-border-slice</a> [720] => <a href="/css/properties/mask-border-source/">mask-border-source</a> [721] => <a href="/css/properties/mask-border-width/">mask-border-width</a> [722] => <a href="/css/properties/mask-clip/">mask-clip</a> [723] => <a href="/css/properties/mask-composite/">mask-composite</a> [724] => <a href="/css/properties/mask-image/">mask-image</a> [725] => <a href="/css/properties/mask-mode/">mask-mode</a> [726] => <a href="/css/properties/mask-origin/">mask-origin</a> [727] => <a href="/css/properties/mask-position/">mask-position</a> [728] => <a href="/css/properties/mask-repeat/">mask-repeat</a> [729] => <a href="/css/properties/mask-size/">mask-size</a> [730] => <a href="/css/properties/mask-type/">mask-type</a> [731] => <a href="/css/properties/max-block-size/">max-block-size</a> [732] => <a href="/css/properties/max-height/">max-height</a> [733] => <a href="/css/properties/max-inline-size/">max-inline-size</a> [734] => <a href="/css/properties/max-lines/">max-lines</a> [735] => <a href="/css/properties/max-width/">max-width</a> [736] => <a href="/css/properties/min-block-size/">min-block-size</a> [737] => <a href="/css/properties/min-height/">min-height</a> [738] => <a href="/css/properties/min-inline-size/">min-inline-size</a> [739] => <a href="/css/properties/min-width/">min-width</a> [740] => <a href="/css/properties/mix-blend-mode/">mix-blend-mode</a> [741] => <a href="/css/properties/object-fit/">object-fit</a> [742] => <a href="/css/properties/object-position/">object-position</a> [743] => <a href="/css/properties/opacity/">opacity</a> [744] => <a href="/css/properties/orphans/">orphans</a> [745] => <a href="/css/properties/outline/">outline</a> [746] => <a href="/css/properties/outline-color/">outline-color</a> [747] => <a href="/css/properties/outline-style/">outline-style</a> [748] => <a href="/css/properties/outline-width/">outline-width</a> [749] => <a href="/css/properties/overflow/">overflow</a> [750] => <a href="/css/properties/overflow-wrap/">overflow-wrap</a> [751] => <a href="/css/properties/overflow-x/">overflow-x</a> [752] => <a href="/css/properties/overflow-y/">overflow-y</a> [753] => <a href="/css/properties/padding/">padding</a> [754] => <a href="/css/properties/padding-bottom/">padding-bottom</a> [755] => <a href="/css/properties/padding-left/">padding-left</a> [756] => <a href="/css/properties/padding-right/">padding-right</a> [757] => <a href="/css/properties/padding-top/">padding-top</a> [758] => <a href="/css/properties/paint-order/">paint-order</a> [759] => <a href="/css/properties/perspective/">perspective</a> [760] => <a href="/css/properties/perspective-origin/">perspective-origin</a> [761] => <a href="/css/properties/place-content/">place-content</a> [762] => <a href="/css/properties/place-items/">place-items</a> [763] => <a href="/css/properties/place-self/">place-self</a> [764] => <a href="/css/properties/pointer-events/">pointer-events</a> [765] => <a href="/css/properties/position/">position</a> [766] => <a href="/css/properties/print-color-adjust/">print-color-adjust</a> [767] => <a href="/css/properties/quotes/">quotes</a> [768] => <a href="/css/properties/resize/">resize</a> [769] => <a href="/css/properties/right/">right</a> [770] => <a href="/css/properties/rotate/">rotate</a> [771] => <a href="/css/properties/row-gap/">row-gap</a> [772] => <a href="/css/properties/scale/">scale</a> [773] => <a href="/css/properties/scroll-behavior/">scroll-behavior</a> [774] => <a href="/css/properties/scroll-margin/">scroll-margin</a> [775] => <a href="/css/properties/scroll-margin-block/">scroll-margin-block</a> [776] => <a href="/css/properties/scroll-margin-block-end/">scroll-margin-block-end</a> [777] => <a href="/css/properties/scroll-margin-block-start/">scroll-margin-block-start</a> [778] => <a href="/css/properties/scroll-margin-bottom/">scroll-margin-bottom</a> [779] => <a href="/css/properties/scroll-margin-inline/">scroll-margin-inline</a> [780] => <a href="/css/properties/scroll-margin-inline-end/">scroll-margin-inline-end</a> [781] => <a href="/css/properties/scroll-margin-inline-start/">scroll-margin-inline-start</a> [782] => <a href="/css/properties/scroll-margin-left/">scroll-margin-left</a> [783] => <a href="/css/properties/scroll-margin-right/">scroll-margin-right</a> [784] => <a href="/css/properties/scroll-margin-top/">scroll-margin-top</a> [785] => <a href="/css/properties/scroll-padding/">scroll-padding</a> [786] => <a href="/css/properties/scroll-padding-block/">scroll-padding-block</a> [787] => <a href="/css/properties/scroll-padding-block-end/">scroll-padding-block-end</a> [788] => <a href="/css/properties/scroll-padding-block-start/">scroll-padding-block-start</a> [789] => <a href="/css/properties/scroll-padding-bottom/">scroll-padding-bottom</a> [790] => <a href="/css/properties/scroll-padding-inline/">scroll-padding-inline</a> [791] => <a href="/css/properties/scroll-padding-inline-end/">scroll-padding-inline-end</a> [792] => <a href="/css/properties/scroll-padding-inline-start/">scroll-padding-inline-start</a> [793] => <a href="/css/properties/scroll-padding-left/">scroll-padding-left</a> [794] => <a href="/css/properties/scroll-padding-right/">scroll-padding-right</a> [795] => <a href="/css/properties/scroll-padding-top/">scroll-padding-top</a> [796] => <a href="/css/properties/scroll-snap-align/">scroll-snap-align</a> [797] => <a href="/css/properties/scroll-snap-stop/">scroll-snap-stop</a> [798] => <a href="/css/properties/scroll-snap-type/">scroll-snap-type</a> [799] => <a href="/css/properties/scrollbar-color/">scrollbar-color</a> [800] => <a href="/css/properties/scrollbar-width/">scrollbar-width</a> [801] => <a href="/css/properties/shape-image-threshold/">shape-image-threshold</a> [802] => <a href="/css/properties/shape-margin/">shape-margin</a> [803] => <a href="/css/properties/shape-outside/">shape-outside</a> [804] => <a href="/css/properties/tab-size/">tab-size</a> [805] => <a href="/css/properties/table-layout/">table-layout</a> [806] => <a href="/css/properties/text-align/">text-align</a> [807] => <a href="/css/properties/text-align-last/">text-align-last</a> [808] => <a href="/css/properties/text-combine-upright/">text-combine-upright</a> [809] => <a href="/css/properties/text-decoration/">text-decoration</a> [810] => <a href="/css/properties/text-decoration-color/">text-decoration-color</a> [811] => <a href="/css/properties/text-decoration-line/">text-decoration-line</a> [812] => <a href="/css/properties/text-decoration-skip-ink/">text-decoration-skip-ink</a> [813] => <a href="/css/properties/text-decoration-style/">text-decoration-style</a> [814] => <a href="/css/properties/text-decoration-thickness/">text-decoration-thickness</a> [815] => <a href="/css/properties/text-emphasis/">text-emphasis</a> [816] => <a href="/css/properties/text-emphasis-color/">text-emphasis-color</a> [817] => <a href="/css/properties/text-emphasis-position/">text-emphasis-position</a> [818] => <a href="/css/properties/text-emphasis-style/">text-emphasis-style</a> [819] => <a href="/css/properties/text-indent/">text-indent</a> [820] => <a href="/css/properties/text-justify/">text-justify</a> [821] => <a href="/css/properties/text-orientation/">text-orientation</a> [822] => <a href="/css/properties/text-overflow/">text-overflow</a> [823] => <a href="/css/properties/text-shadow/">text-shadow</a> [824] => <a href="/css/properties/text-transform/">text-transform</a> [825] => <a href="/css/properties/text-underline-offset/">text-underline-offset</a> [826] => <a href="/css/properties/text-underline-position/">text-underline-position</a> [827] => <a href="/css/properties/top/">top</a> [828] => <a href="/css/properties/transform/">transform</a> [829] => <a href="/css/properties/transform-box/">transform-box</a> [830] => <a href="/css/properties/transform-origin/">transform-origin</a> [831] => <a href="/css/properties/transform-style/">transform-style</a> [832] => <a href="/css/properties/transition/">transition</a> [833] => <a href="/css/properties/transition-delay/">transition-delay</a> [834] => <a href="/css/properties/transition-duration/">transition-duration</a> [835] => <a href="/css/properties/transition-property/">transition-property</a> [836] => <a href="/css/properties/transition-timing-function/">transition-timing-function</a> [837] => <a href="/css/properties/translate/">translate</a> [838] => <a href="/css/properties/unicode-bidi/">unicode-bidi</a> [839] => <a href="/css/properties/vertical-align/">vertical-align</a> [840] => <a href="/css/properties/visibility/">visibility</a> [841] => <a href="/css/properties/white-space/">white-space</a> [842] => <a href="/css/properties/widows/">widows</a> [843] => <a href="/css/properties/width/">width</a> [844] => <a href="/css/properties/word-break/">word-break</a> [845] => <a href="/css/properties/word-spacing/">word-spacing</a> [846] => <a href="/css/properties/word-wrap/">word-wrap</a> [847] => <a href="/css/properties/writing-mode/">writing-mode</a> [848] => <a href="/css/properties/z-index/">z-index</a> [849] => </div> [850] => <h3>Pseudo-Classes</h3> [851] => <div class="nav-content section"> [852] => <a href="/css/pseudo-classes/active/">active</a> [853] => <a href="/css/pseudo-classes/any-link/">any-link</a> [854] => <a href="/css/pseudo-classes/blank/">blank</a> [855] => <a href="/css/pseudo-classes/checked/">checked</a> [856] => <a href="/css/pseudo-classes/default/">default</a> [857] => <a href="/css/pseudo-classes/dir/">dir</a> [858] => <a href="/css/pseudo-classes/disabled/">disabled</a> [859] => <a href="/css/pseudo-classes/empty/">empty</a> [860] => <a href="/css/pseudo-classes/enabled/">enabled</a> [861] => <a href="/css/pseudo-classes/first-child/">first-child</a> [862] => <a href="/css/pseudo-classes/first-of-type/">first-of-type</a> [863] => <a href="/css/pseudo-classes/focus/">focus</a> [864] => <a href="/css/pseudo-classes/focus-within/">focus-within</a> [865] => <a href="/css/pseudo-classes/fullscreen/">fullscreen</a> [866] => <a href="/css/pseudo-classes/hover/">hover</a> [867] => <a href="/css/pseudo-classes/in-range/">in-range</a> [868] => <a href="/css/pseudo-classes/indeterminate/">indeterminate</a> [869] => <a href="/css/pseudo-classes/invalid/">invalid</a> [870] => <a href="/css/pseudo-classes/lang/">lang</a> [871] => <a href="/css/pseudo-classes/last-child/">last-child</a> [872] => <a href="/css/pseudo-classes/last-of-type/">last-of-type</a> [873] => <a href="/css/pseudo-classes/link/">link</a> [874] => <a href="/css/pseudo-classes/local-link/">local-link</a> [875] => <a href="/css/pseudo-classes/not/">not</a> [876] => <a href="/css/pseudo-classes/nth-child/">nth-child</a> [877] => <a href="/css/pseudo-classes/nth-col/">nth-col</a> [878] => <a href="/css/pseudo-classes/nth-last-child/">nth-last-child</a> [879] => <a href="/css/pseudo-classes/nth-last-col/">nth-last-col</a> [880] => <a href="/css/pseudo-classes/nth-last-of-type/">nth-last-of-type</a> [881] => <a href="/css/pseudo-classes/nth-of-type/">nth-of-type</a> [882] => <a href="/css/pseudo-classes/only-child/">only-child</a> [883] => <a href="/css/pseudo-classes/only-of-type/">only-of-type</a> [884] => <a href="/css/pseudo-classes/optional/">optional</a> [885] => <a href="/css/pseudo-classes/out-of-range/">out-of-range</a> [886] => <a href="/css/pseudo-classes/placeholder-shown/">placeholder-shown</a> [887] => <a href="/css/pseudo-classes/read-only/">read-only</a> [888] => <a href="/css/pseudo-classes/read-write/">read-write</a> [889] => <a href="/css/pseudo-classes/required/">required</a> [890] => <a href="/css/pseudo-classes/root/">root</a> [891] => <a href="/css/pseudo-classes/scope/">scope</a> [892] => <a href="/css/pseudo-classes/target/">target</a> [893] => <a href="/css/pseudo-classes/valid/">valid</a> [894] => <a href="/css/pseudo-classes/visited/">visited</a> [895] => </div> [896] => <h3>Pseudo-Elements</h3> [897] => <div class="nav-content section"> [898] => <a href="/css/pseudo-elements/after/">after</a> [899] => <a href="/css/pseudo-elements/before/">before</a> [900] => <a href="/css/pseudo-elements/first-letter/">first-letter</a> [901] => <a href="/css/pseudo-elements/first-line/">first-line</a> [902] => <a href="/css/pseudo-elements/marker/">marker</a> [903] => <a href="/css/pseudo-elements/placeholder/">placeholder</a> [904] => <a href="/css/pseudo-elements/selection/">selection</a> [905] => </div> [906] => <h3>Units</h3> [907] => <div class="nav-content section"> [908] => <a href="/css/units/ch/">ch</a> [909] => <a href="/css/units/cm/">cm</a> [910] => <a href="/css/units/deg/">deg</a> [911] => <a href="/css/units/dpcm/">dpcm</a> [912] => <a href="/css/units/dpi/">dpi</a> [913] => <a href="/css/units/dppx/">dppx</a> [914] => <a href="/css/units/em/">em</a> [915] => <a href="/css/units/ex/">ex</a> [916] => <a href="/css/units/grad/">grad</a> [917] => <a href="/css/units/in/">in</a> [918] => <a href="/css/units/mm/">mm</a> [919] => <a href="/css/units/ms/">ms</a> [920] => <a href="/css/units/pc/">pc</a> [921] => <a href="/css/units/pt/">pt</a> [922] => <a href="/css/units/px/">px</a> [923] => <a href="/css/units/q/">Q</a> [924] => <a href="/css/units/rad/">rad</a> [925] => <a href="/css/units/rem/">rem</a> [926] => <a href="/css/units/s/">s</a> [927] => <a href="/css/units/turn/">turn</a> [928] => <a href="/css/units/vh/">vh</a> [929] => <a href="/css/units/vmax/">vmax</a> [930] => <a href="/css/units/vmin/">vmin</a> [931] => <a href="/css/units/vw/">vw</a> [932] => </div> [933] => </div> [934] => <div class="nav-h1"> [935] => <a id="nav-js-switch">JS</a> [936] => </div> [937] => <div id="nav-js"> [938] => <h3>Overview</h3> [939] => <div class="nav-content section"> [940] => <a href="/js/">Overview</a> [941] => </div> [942] => <h3>Declarations</h3> [943] => <div class="nav-content section"> [944] => <a href="/js/const/">const</a> [945] => <a href="/js/let/">let</a> [946] => <a href="/js/var/">var</a> [947] => </div> [948] => <h3>Conditional Statements</h3> [949] => <div class="nav-content section"> [950] => <a href="/js/if/">if</a> [951] => <a href="/js/else/">else</a> [952] => <a href="/js/else-if/">else if</a> [953] => <a href="/js/switch/">switch</a> [954] => <a href="/js/try-catch/">try catch</a> [955] => </div> [956] => <h3>Loops</h3> [957] => <div class="nav-content section"> [958] => <a href="/js/do-while/">do while</a> [959] => <a href="/js/for/">for</a> [960] => <a href="/js/for-in/">for in</a> [961] => <a href="/js/for-of/">for of</a> [962] => <a href="/js/while/">while</a> [963] => </div> [964] => <h3>AbortController</h3> [965] => <div class="nav-content section"> [966] => <a href="/js/abort/">abort</a> [967] => <a href="/js/abortcontroller/">AbortController</a> [968] => <a href="/js/signal/">signal</a> [969] => </div> [970] => <h3>ChildNode</h3> [971] => <div class="nav-content section"> [972] => <a href="/js/after/">after</a> [973] => <a href="/js/before/">before</a> [974] => <a href="/js/remove/">remove</a> [975] => <a href="/js/replacewith/">replaceWith</a> [976] => </div> [977] => <h3>CustomEvent</h3> [978] => <div class="nav-content section"> [979] => <a href="/js/customevent/">CustomEvent</a> [980] => <a href="/js/detail/">detail</a> [981] => </div> [982] => <h3>Event</h3> [983] => <div class="nav-content section"> [984] => <a href="/js/bubbles/">bubbles</a> [985] => <a href="/js/cancelable/">cancelable</a> [986] => <a href="/js/composed/">composed</a> [987] => <a href="/js/composedpath/">composedPath</a> [988] => <a href="/js/currenttarget/">currentTarget</a> [989] => <a href="/js/defaultprevented/">defaultPrevented</a> [990] => <a href="/js/event/">Event</a> [991] => <a href="/js/eventphase/">eventPhase</a> [992] => <a href="/js/istrusted/">isTrusted</a> [993] => <a href="/js/preventdefault/">preventDefault</a> [994] => <a href="/js/stopimmediatepropagation/">stopImmediatePropagation</a> [995] => <a href="/js/stoppropagation/">stopPropagation</a> [996] => <a href="/js/target/">target</a> [997] => <a href="/js/timestamp/">timeStamp</a> [998] => <a href="/js/type/">type</a> [999] => </div> [1000] => <h3>EventTarget</h3> [1001] => <div class="nav-content section"> [1002] => <a href="/js/addeventlistener/">addEventListener</a> [1003] => <a href="/js/dispatchevent/">dispatchEvent</a> [1004] => <a href="/js/eventtarget/">EventTarget</a> [1005] => <a href="/js/removeeventlistener/">removeEventListener</a> [1006] => </div> [1007] => <h3>HTMLCollection</h3> [1008] => <div class="nav-content section"> [1009] => <a href="/js/item/">item</a> [1010] => <a href="/js/length/">length</a> [1011] => <a href="/js/nameditem/">namedItem</a> [1012] => </div> [1013] => <h3>NodeList</h3> [1014] => <div class="nav-content section"> [1015] => <a href="/js/item/">item</a> [1016] => <a href="/js/length/">length</a> [1017] => </div> [1018] => <h3>NonDocumentTypeChildNode</h3> [1019] => <div class="nav-content section"> [1020] => <a href="/js/nextelementsibling/">nextElementSibling</a> [1021] => <a href="/js/previouselementsibling/">previousElementSibling</a> [1022] => </div> [1023] => <h3>ParentNode</h3> [1024] => <div class="nav-content section"> [1025] => <a href="/js/append/">append</a> [1026] => <a href="/js/children/">children</a> [1027] => <a href="/js/firstelementchild/">firstElementChild</a> [1028] => <a href="/js/lastelementchild/">lastElementChild</a> [1029] => <a href="/js/prepend/">prepend</a> [1030] => <a href="/js/queryselector/">querySelector</a> [1031] => <a href="/js/queryselectorall/">querySelectorAll</a> [1032] => <a href="/js/replacechildren/">replaceChildren</a> [1033] => </div> [1034] => <h3>Other</h3> [1035] => <div class="nav-content section"> [1036] => <a href="/js/array/">Array</a> [1037] => <a href="/js/comments/">Comments</a> [1038] => <a href="/js/enable/">Enable</a> [1039] => <a href="/js/functions/">Functions</a> [1040] => <a href="/js/alert/">alert</a> [1041] => <a href="/js/confirm/">confirm</a> [1042] => <a href="/js/createcontextualfragment/">createContextualFragment</a> [1043] => <a href="/js/date/">Date</a> [1044] => <a href="/js/getelementbyid/">getElementById</a> [1045] => <a href="/js/getelementsbyclassname/">getElementsByClassName</a> [1046] => <a href="/js/getelementsbytagname/">getElementsByTagName</a> [1047] => <a href="/js/getelementsbytagnamens/">getElementsByTagNameNS</a> [1048] => <a href="/js/infinity/">Infinity</a> [1049] => <a href="/js/innerhtml/">innerHTML</a> [1050] => <a href="/js/insertadjacenthtml/">insertAdjacentHTML</a> [1051] => <a href="/js/outerhtml/">outerHTML</a> [1052] => <a href="/js/print/">print</a> [1053] => <a href="/js/prompt/">prompt</a> [1054] => </div> [1055] => </div> [1056] => <div class="nav-h1"> [1057] => <a id="nav-php-switch">PHP</a> [1058] => </div> [1059] => <div id="nav-php"> [1060] => <h3>Overview</h3> [1061] => <div class="nav-content section"> [1062] => <a href="/php/">Overview</a> [1063] => </div> [1064] => <h3>Array</h3> [1065] => <div class="nav-content section"> [1066] => <a href="/php/functions/array/">array</a> [1067] => <a href="/php/functions/array_change_key_case/">array_change_key_case</a> [1068] => <a href="/php/functions/array_chunk/">array_chunk</a> [1069] => <a href="/php/functions/array_column/">array_column</a> [1070] => <a href="/php/functions/array_combine/">array_combine</a> [1071] => <a href="/php/functions/array_count_values/">array_count_values</a> [1072] => <a href="/php/functions/array_diff/">array_diff</a> [1073] => <a href="/php/functions/array_diff_assoc/">array_diff_assoc</a> [1074] => <a href="/php/functions/array_diff_key/">array_diff_key</a> [1075] => <a href="/php/functions/array_diff_uassoc/">array_diff_uassoc</a> [1076] => <a href="/php/functions/array_diff_ukey/">array_diff_ukey</a> [1077] => <a href="/php/functions/array_fill/">array_fill</a> [1078] => <a href="/php/functions/array_fill_keys/">array_fill_keys</a> [1079] => <a href="/php/functions/array_filter/">array_filter</a> [1080] => <a href="/php/functions/array_flip/">array_flip</a> [1081] => <a href="/php/functions/array_intersect/">array_intersect</a> [1082] => <a href="/php/functions/array_intersect_assoc/">array_intersect_assoc</a> [1083] => <a href="/php/functions/array_intersect_key/">array_intersect_key</a> [1084] => <a href="/php/functions/array_intersect_uassoc/">array_intersect_uassoc</a> [1085] => <a href="/php/functions/array_intersect_ukey/">array_intersect_ukey</a> [1086] => <a href="/php/functions/array_key_exists/">array_key_exists</a> [1087] => <a href="/php/functions/array_key_first/">array_key_first</a> [1088] => <a href="/php/functions/array_key_last/">array_key_last</a> [1089] => <a href="/php/functions/array_keys/">array_keys</a> [1090] => <a href="/php/functions/array_map/">array_map</a> [1091] => <a href="/php/functions/array_merge/">array_merge</a> [1092] => <a href="/php/functions/array_merge_recursive/">array_merge_recursive</a> [1093] => <a href="/php/functions/array_multisort/">array_multisort</a> [1094] => <a href="/php/functions/array_pad/">array_pad</a> [1095] => <a href="/php/functions/array_pop/">array_pop</a> [1096] => <a href="/php/functions/array_product/">array_product</a> [1097] => <a href="/php/functions/array_push/">array_push</a> [1098] => <a href="/php/functions/array_rand/">array_rand</a> [1099] => <a href="/php/functions/array_reduce/">array_reduce</a> [1100] => <a href="/php/functions/array_replace/">array_replace</a> [1101] => <a href="/php/functions/array_replace_recursive/">array_replace_recursive</a> [1102] => <a href="/php/functions/array_reverse/">array_reverse</a> [1103] => <a href="/php/functions/array_search/">array_search</a> [1104] => <a href="/php/functions/array_shift/">array_shift</a> [1105] => <a href="/php/functions/array_slice/">array_slice</a> [1106] => <a href="/php/functions/array_splice/">array_splice</a> [1107] => <a href="/php/functions/array_sum/">array_sum</a> [1108] => <a href="/php/functions/array_udiff/">array_udiff</a> [1109] => <a href="/php/functions/array_udiff_assoc/">array_udiff_assoc</a> [1110] => <a href="/php/functions/array_udiff_uassoc/">array_udiff_uassoc</a> [1111] => <a href="/php/functions/array_uintersect/">array_uintersect</a> [1112] => <a href="/php/functions/array_uintersect_assoc/">array_uintersect_assoc</a> [1113] => <a href="/php/functions/array_uintersect_uassoc/">array_uintersect_uassoc</a> [1114] => <a href="/php/functions/array_unique/">array_unique</a> [1115] => <a href="/php/functions/array_unshift/">array_unshift</a> [1116] => <a href="/php/functions/array_values/">array_values</a> [1117] => <a href="/php/functions/array_walk/">array_walk</a> [1118] => <a href="/php/functions/array_walk_recursive/">array_walk_recursive</a> [1119] => <a href="/php/functions/arsort/">arsort</a> [1120] => <a href="/php/functions/asort/">asort</a> [1121] => <a href="/php/functions/compact/">compact</a> [1122] => <a href="/php/functions/count/">count</a> [1123] => <a href="/php/functions/current/">current</a> [1124] => <a href="/php/functions/end/">end</a> [1125] => <a href="/php/functions/extract/">extract</a> [1126] => <a href="/php/functions/in_array/">in_array</a> [1127] => <a href="/php/functions/key/">key</a> [1128] => <a href="/php/functions/key_exists/">key_exists</a> [1129] => <a href="/php/functions/krsort/">krsort</a> [1130] => <a href="/php/functions/ksort/">ksort</a> [1131] => <a href="/php/functions/list/">list</a> [1132] => <a href="/php/functions/natcasesort/">natcasesort</a> [1133] => <a href="/php/functions/natsort/">natsort</a> [1134] => <a href="/php/functions/next/">next</a> [1135] => <a href="/php/functions/pos/">pos</a> [1136] => <a href="/php/functions/prev/">prev</a> [1137] => <a href="/php/functions/range/">range</a> [1138] => <a href="/php/functions/reset/">reset</a> [1139] => <a href="/php/functions/rsort/">rsort</a> [1140] => <a href="/php/functions/shuffle/">shuffle</a> [1141] => <a href="/php/functions/sizeof/">sizeof</a> [1142] => <a href="/php/functions/sort/">sort</a> [1143] => <a href="/php/functions/uasort/">uasort</a> [1144] => <a href="/php/functions/uksort/">uksort</a> [1145] => <a href="/php/functions/usort/">usort</a> [1146] => </div> [1147] => <h3>Calendar</h3> [1148] => <div class="nav-content section"> [1149] => <a href="/php/functions/cal_days_in_month/">cal_days_in_month</a> [1150] => <a href="/php/functions/cal_from_jd/">cal_from_jd</a> [1151] => <a href="/php/functions/cal_info/">cal_info</a> [1152] => <a href="/php/functions/cal_to_jd/">cal_to_jd</a> [1153] => <a href="/php/functions/easter_date/">easter_date</a> [1154] => <a href="/php/functions/easter_days/">easter_days</a> [1155] => <a href="/php/functions/frenchtojd/">frenchtojd</a> [1156] => <a href="/php/functions/gregoriantojd/">gregoriantojd</a> [1157] => <a href="/php/functions/jddayofweek/">jddayofweek</a> [1158] => <a href="/php/functions/jdmonthname/">jdmonthname</a> [1159] => <a href="/php/functions/jdtofrench/">jdtofrench</a> [1160] => <a href="/php/functions/jdtogregorian/">jdtogregorian</a> [1161] => <a href="/php/functions/jdtojewish/">jdtojewish</a> [1162] => <a href="/php/functions/jdtojulian/">jdtojulian</a> [1163] => <a href="/php/functions/jdtounix/">jdtounix</a> [1164] => <a href="/php/functions/jewishtojd/">jewishtojd</a> [1165] => <a href="/php/functions/juliantojd/">juliantojd</a> [1166] => <a href="/php/functions/unixtojd/">unixtojd</a> [1167] => </div> [1168] => <h3>Class / Object</h3> [1169] => <div class="nav-content section"> [1170] => <a href="/php/functions/class_alias/">class_alias</a> [1171] => <a href="/php/functions/class_exists/">class_exists</a> [1172] => <a href="/php/functions/get_called_class/">get_called_class</a> [1173] => <a href="/php/functions/get_class_methods/">get_class_methods</a> [1174] => <a href="/php/functions/get_class/">get_class</a> [1175] => <a href="/php/functions/get_class_vars/">get_class_vars</a> [1176] => <a href="/php/functions/get_declared_classes/">get_declared_classes</a> [1177] => <a href="/php/functions/get_declared_interfaces/">get_declared_interfaces</a> [1178] => <a href="/php/functions/get_declared_traits/">get_declared_traits</a> [1179] => <a href="/php/functions/get_object_vars/">get_object_vars</a> [1180] => <a href="/php/functions/get_parent_class/">get_parent_class</a> [1181] => <a href="/php/functions/interface_exists/">interface_exists</a> [1182] => <a href="/php/functions/is_a/">is_a</a> [1183] => <a href="/php/functions/is_subclass_of/">is_subclass_of</a> [1184] => <a href="/php/functions/method_exists/">method_exists</a> [1185] => <a href="/php/functions/property_exists/">property_exists</a> [1186] => <a href="/php/functions/trait_exists/">trait_exists</a> [1187] => </div> [1188] => <h3>CSPRNG</h3> [1189] => <div class="nav-content section"> [1190] => <a href="/php/functions/random_bytes/">random_bytes</a> [1191] => <a href="/php/functions/random_int/">random_int</a> [1192] => </div> [1193] => <h3>Ctype</h3> [1194] => <div class="nav-content section"> [1195] => <a href="/php/functions/ctype_alnum/">ctype_alnum</a> [1196] => <a href="/php/functions/ctype_alpha/">ctype_alpha</a> [1197] => <a href="/php/functions/ctype_cntrl/">ctype_cntrl</a> [1198] => <a href="/php/functions/ctype_digit/">ctype_digit</a> [1199] => <a href="/php/functions/ctype_graph/">ctype_graph</a> [1200] => <a href="/php/functions/ctype_lower/">ctype_lower</a> [1201] => <a href="/php/functions/ctype_print/">ctype_print</a> [1202] => <a href="/php/functions/ctype_punct/">ctype_punct</a> [1203] => <a href="/php/functions/ctype_space/">ctype_space</a> [1204] => <a href="/php/functions/ctype_upper/">ctype_upper</a> [1205] => <a href="/php/functions/ctype_xdigit/">ctype_xdigit</a> [1206] => </div> [1207] => <h3>cURL</h3> [1208] => <div class="nav-content section"> [1209] => <a href="/php/functions/curl_close/">curl_close</a> [1210] => <a href="/php/functions/curl_copy_handle/">curl_copy_handle</a> [1211] => <a href="/php/functions/curl_errno/">curl_errno</a> [1212] => <a href="/php/functions/curl_error/">curl_error</a> [1213] => <a href="/php/functions/curl_escape/">curl_escape</a> [1214] => <a href="/php/functions/curl_exec/">curl_exec</a> [1215] => <a href="/php/functions/curl_file_create/">curl_file_create</a> [1216] => <a href="/php/functions/curl_getinfo/">curl_getinfo</a> [1217] => <a href="/php/functions/curl_init/">curl_init</a> [1218] => <a href="/php/functions/curl_multi_add_handle/">curl_multi_add_handle</a> [1219] => <a href="/php/functions/curl_multi_close/">curl_multi_close</a> [1220] => <a href="/php/functions/curl_multi_errno/">curl_multi_errno</a> [1221] => <a href="/php/functions/curl_multi_exec/">curl_multi_exec</a> [1222] => <a href="/php/functions/curl_multi_getcontent/">curl_multi_getcontent</a> [1223] => <a href="/php/functions/curl_multi_info_read/">curl_multi_info_read</a> [1224] => <a href="/php/functions/curl_multi_init/">curl_multi_init</a> [1225] => <a href="/php/functions/curl_multi_remove_handle/">curl_multi_remove_handle</a> [1226] => <a href="/php/functions/curl_multi_select/">curl_multi_select</a> [1227] => <a href="/php/functions/curl_multi_setopt/">curl_multi_setopt</a> [1228] => <a href="/php/functions/curl_multi_strerror/">curl_multi_strerror</a> [1229] => <a href="/php/functions/curl_pause/">curl_pause</a> [1230] => <a href="/php/functions/curl_reset/">curl_reset</a> [1231] => <a href="/php/functions/curl_setopt/">curl_setopt</a> [1232] => <a href="/php/functions/curl_setopt_array/">curl_setopt_array</a> [1233] => <a href="/php/functions/curl_share_close/">curl_share_close</a> [1234] => <a href="/php/functions/curl_share_errno/">curl_share_errno</a> [1235] => <a href="/php/functions/curl_share_init/">curl_share_init</a> [1236] => <a href="/php/functions/curl_share_setopt/">curl_share_setopt</a> [1237] => <a href="/php/functions/curl_share_strerror/">curl_share_strerror</a> [1238] => <a href="/php/functions/curl_strerror/">curl_strerror</a> [1239] => <a href="/php/functions/curl_unescape/">curl_unescape</a> [1240] => <a href="/php/functions/curl_version/">curl_version</a> [1241] => </div> [1242] => <h3>Date / Time</h3> [1243] => <div class="nav-content section"> [1244] => <a href="/php/functions/checkdate/">checkdate</a> [1245] => <a href="/php/functions/date/">date</a> [1246] => <a href="/php/functions/date_add/">date_add</a> [1247] => <a href="/php/functions/date_create/">date_create</a> [1248] => <a href="/php/functions/date_create_from_format/">date_create_from_format</a> [1249] => <a href="/php/functions/date_create_immutable/">date_create_immutable</a> [1250] => <a href="/php/functions/date_create_immutable_from_format/">date_create_immutable_from_format</a> [1251] => <a href="/php/functions/date_date_set/">date_date_set</a> [1252] => <a href="/php/functions/date_default_timezone_get/">date_default_timezone_get</a> [1253] => <a href="/php/functions/date_default_timezone_set/">date_default_timezone_set</a> [1254] => <a href="/php/functions/date_diff/">date_diff</a> [1255] => <a href="/php/functions/date_format/">date_format</a> [1256] => <a href="/php/functions/date_get_last_errors/">date_get_last_errors</a> [1257] => <a href="/php/functions/date_interval_create_from_date_string/">date_interval_create_from_date_string</a> [1258] => <a href="/php/functions/date_interval_format/">date_interval_format</a> [1259] => <a href="/php/functions/date_isodate_set/">date_isodate_set</a> [1260] => <a href="/php/functions/date_modify/">date_modify</a> [1261] => <a href="/php/functions/date_offset_get/">date_offset_get</a> [1262] => <a href="/php/functions/date_parse/">date_parse</a> [1263] => <a href="/php/functions/date_parse_from_format/">date_parse_from_format</a> [1264] => <a href="/php/functions/date_sub/">date_sub</a> [1265] => <a href="/php/functions/date_sun_info/">date_sun_info</a> [1266] => <a href="/php/functions/date_sunrise/">date_sunrise</a> [1267] => <a href="/php/functions/date_sunset/">date_sunset</a> [1268] => <a href="/php/functions/date_time_set/">date_time_set</a> [1269] => <a href="/php/functions/date_timestamp_get/">date_timestamp_get</a> [1270] => <a href="/php/functions/date_timestamp_set/">date_timestamp_set</a> [1271] => <a href="/php/functions/date_timezone_get/">date_timezone_get</a> [1272] => <a href="/php/functions/date_timezone_set/">date_timezone_set</a> [1273] => <a href="/php/functions/getdate/">getdate</a> [1274] => <a href="/php/functions/gettimeofday/">gettimeofday</a> [1275] => <a href="/php/functions/gmdate/">gmdate</a> [1276] => <a href="/php/functions/gmmktime/">gmmktime</a> [1277] => <a href="/php/functions/gmstrftime/">gmstrftime</a> [1278] => <a href="/php/functions/idate/">idate</a> [1279] => <a href="/php/functions/localtime/">localtime</a> [1280] => <a href=&