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.
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
1 · 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/ 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 margin"> [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/">HTML</a> [27] => </body> [28] => </html></textarea> [29] => <input id=input11 title=Reset type=button value=↻> [30] => <input id=input21 title=Editor type=button value=→> [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 margin"> [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/">CSS</a> [56] => </body> [57] => </html></textarea> [58] => <input id=input12 title=Reset type=button value=↻> [59] => <input id=input22 title=Editor type=button value=→> [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 margin"> [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/">JS</a> [85] => <script> [86] => function myfunction() [87] => { [88] => const myelement = document.querySelector("a"); [89] => const mystyle = myelement.style; [90] => mystyle.position = "absolute"; [91] => mystyle.left = Math.random() * (window.innerWidth - myelement.offsetWidth) + "px"; [92] => mystyle.top = Math.random() * (window.innerHeight - myelement.offsetHeight) + "px"; [93] => } [94] => document.querySelector("a").addEventListener("mouseout", myfunction); [95] => </script> [96] => </body> [97] => </html></textarea> [98] => <input id=input13 title=Reset type=button value=↻> [99] => <input id=input23 title=Editor type=button value=→> [100] => </form> [101] => <iframe id=iframe3 title=Editor></iframe> [102] => </div> [103] => <h2 id=php><a href=#php>PHP</a></h2> [104] => <div class="editor3 margin"> [105] => <pre><? [106] => [107] => echo '<!doctype html> [108] => <html> [109] => <head> [110] => <title>PHP</title> [111] => <style> [112] => a [113] => { [114] => background-color: rgba(255,0,255,0.1); [115] => color: purple; [116] => } [117] => a:hover [118] => { [119] => background-color: rgba(0,0,0,0.1); [120] => color: black; [121] => } [122] => </style> [123] => </head> [124] => <body> [125] => <a href="/php/">PHP</a> [126] => <script> [127] => function myfunction() [128] => { [129] => const myelement = document.querySelector("a"); [130] => const mystyle = myelement.style; [131] => mystyle.position = "absolute"; [132] => mystyle.left = Math.random() * (window.innerWidth - myelement.offsetWidth) + "px"; [133] => mystyle.top = Math.random() * (window.innerHeight - myelement.offsetHeight) + "px"; [134] => } [135] => document.querySelector("a").addEventListener("mouseout", myfunction); [136] => </script> [137] => </body> [138] => </html>'; [139] => [140] => ?></pre> [141] => <pre><!doctype html> [142] => <html> [143] => <head> [144] => <title>PHP</title> [145] => <style> [146] => a [147] => { [148] => background-color: rgba(255,0,255,0.1); [149] => color: purple; [150] => } [151] => a:hover [152] => { [153] => background-color: rgba(0,0,0,0.1); [154] => color: black; [155] => } [156] => </style> [157] => </head> [158] => <body> [159] => <a href="/php/">PHP</a> [160] => <script> [161] => function myfunction() [162] => { [163] => const myelement = document.querySelector("a"); [164] => const mystyle = myelement.style; [165] => mystyle.position = "absolute"; [166] => mystyle.left = Math.random() * (window.innerWidth - myelement.offsetWidth) + "px"; [167] => mystyle.top = Math.random() * (window.innerHeight - myelement.offsetHeight) + "px"; [168] => } [169] => document.querySelector("a").addEventListener("mouseout", myfunction); [170] => </script> [171] => </body> [172] => </html></pre> [173] => <iframe srcdoc="<!doctype html> [174] => <html> [175] => <head> [176] => <title>PHP</title> [177] => <style> [178] => a [179] => { [180] => background-color: rgba(255,0,255,0.1); [181] => color: purple; [182] => } [183] => a:hover [184] => { [185] => background-color: rgba(0,0,0,0.1); [186] => color: black; [187] => } [188] => </style> [189] => </head> [190] => <body> [191] => <a href="/php/">PHP</a> [192] => <script> [193] => function myfunction() [194] => { [195] => const myelement = document.querySelector("a"); [196] => const mystyle = myelement.style; [197] => mystyle.position = "absolute"; [198] => mystyle.left = Math.random() * (window.innerWidth - myelement.offsetWidth) + "px"; [199] => mystyle.top = Math.random() * (window.innerHeight - myelement.offsetHeight) + "px"; [200] => } [201] => document.querySelector("a").addEventListener("mouseout", myfunction); [202] => </script> [203] => </body> [204] => </html>" title=Editor></iframe> [205] => </div> [206] => <h2 id=svg><a href=#svg>SVG</a></h2> [207] => <div class="editor1 margin"> [208] => <form id=form4> [209] => <textarea id=textarea4 spellcheck=false title=Edit><svg xmlns="http://www.w3.org/2000/svg"> [210] => <rect fill="yellow" height="100%" opacity="0.1" width="100%"/> [211] => <a href="/svg/"> [212] => <circle cx="50%" cy="50%" fill="yellow" r="50vh"/> [213] => <text dominant-baseline="middle" text-anchor="middle" x="50%" y="50%">SVG</text> [214] => </a> [215] => </svg></textarea> [216] => <input id=input14 title=Reset type=button value=↻> [217] => <input id=input24 title=Editor type=button value=→> [218] => </form> [219] => <iframe id=iframe4 title=Editor></iframe> [220] => </div> [221] => </main> [222] => <nav> [223] => <div class=nav-h1> [224] => <p><a href=/Jesus/>JESUS</a></p> [225] => </div> [226] => <div class=nav-h1> [227] => <p><a id=nav-switch-Bible>BIBLE</a></p> [228] => </div> [229] => <div id=nav-content-Bible> [230] => <h2 id=overview><a href=#overview>Overview</a></h2> [231] => <div class=margin> [232] => <p><a href=/Bible/>Overview</a></p> [233] => </div> [234] => <h2 id=search><a href=#search>Search</a></h2> [235] => <div class=margin> [236] => <p><a href=/Bible/search/>Search</a></p> [237] => </div> [238] => <h2 id=download><a href=#download>Download</a></h2> [239] => <div class=margin> [240] => <p><a href=/Bible/download/>Download</a></p> [241] => </div> [242] => <h2 id=العربية><a href=#العربية>العربية</a></h2> [243] => <div class=margin> [244] => <p><a href=/Bible/asvd/>ASVD الكتاب المقدس ترجمة فانديك وسميث</a></p> [245] => </div> [246] => <h2 id=česky><a href=#česky>česky</a></h2> [247] => <div class=margin> [248] => <p><a href=/Bible/csbkr/>CSBKR Bible Kralická 1613</a></p> [249] => </div> [250] => <h2 id=dansk><a href=#dansk>Dansk</a></h2> [251] => <div class=margin> [252] => <p><a href=/Bible/da1871/>DA1871 Danske Bibel 1871</a></p> [253] => </div> [254] => <h2 id=deutsch><a href=#deutsch>Deutsch</a></h2> [255] => <div class=margin> [256] => <p><a href=/Bible/delut/>DELUT Luther Bible 1912</a></p> [257] => <p><a href=/Bible/elb/>ELB Elberfelder 1905</a></p> [258] => <p><a href=/Bible/elb71/>ELB71 Elberfelder 1871</a></p> [259] => </div> [260] => <h2 id=english><a href=#english>English</a></h2> [261] => <div class=margin> [262] => <p><a href=/Bible/asv/>ASV American Standard Version</a></p> [263] => <p><a href=/Bible/kjv/>KJV King James Version</a></p> [264] => <p><a href=/Bible/web/>WEB World English Bible</a></p> [265] => </div> [266] => <h2 id=español><a href=#español>Español</a></h2> [267] => <div class=margin> [268] => <p><a href=/Bible/rves/>RVES Reina-Valera Antigua</a></p> [269] => </div> [270] => <h2 id=suomi><a href=#suomi>Suomi</a></h2> [271] => <div class=margin> [272] => <p><a href=/Bible/fi1776/>FI1776 Finnish 1776</a></p> [273] => <p><a href=/Bible/finpr/>FINPR Finnish 1938</a></p> [274] => </div> [275] => <h2 id=français><a href=#français>Français</a></h2> [276] => <div class=margin> [277] => <p><a href=/Bible/fmar/>FMAR Martin 1744</a></p> [278] => <p><a href=/Bible/frdby/>FRDBY Bible Darby en français</a></p> [279] => <p><a href=/Bible/lsg/>LSG Louis Segond 1910</a></p> [280] => <p><a href=/Bible/ost/>OST Ostervald</a></p> [281] => </div> [282] => <h2 id=magyar><a href=#magyar>Magyar</a></h2> [283] => <div class=margin> [284] => <p><a href=/Bible/kar/>KAR Károli 1590</a></p> [285] => </div> [286] => <h2 id=bahasa-indonesia><a href=#bahasa-indonesia>Bahasa Indonesia</a></h2> [287] => <div class=margin> [288] => <p><a href=/Bible/idbar/>IDBAR Terjemahan Baru</a></p> [289] => </div> [290] => <h2 id=italiano><a href=#italiano>Italiano</a></h2> [291] => <div class=margin> [292] => <p><a href=/Bible/igd/>IGD Giovanni Diodati Bibbia</a></p> [293] => <p><a href=/Bible/itriv/>ITRIV Italian Riveduta 1927</a></p> [294] => </div> [295] => <h2 id=日本語><a href=#日本語>日本語</a></h2> [296] => <div class=margin> [297] => <p><a href=/Bible/ja1955/>JA1955 Colloquial Japanese (1955)</a></p> [298] => </div> [299] => <h2 id=malagasy><a href=#malagasy>Malagasy</a></h2> [300] => <div class=margin> [301] => <p><a href=/Bible/mg1865/>MG1865 Malagasy Bible</a></p> [302] => </div> [303] => <h2 id=te-reo-māori><a href=#te-reo-māori>te reo Māori</a></h2> [304] => <div class=margin> [305] => <p><a href=/Bible/maor/>MAOR Maori Bible</a></p> [306] => </div> [307] => <h2 id=한국어><a href=#한국어>한국어</a></h2> [308] => <div class=margin> [309] => <p><a href=/Bible/korvb/>KORVB 개역한글</a></p> [310] => </div> [311] => <h2 id=nederlands><a href=#nederlands>Nederlands</a></h2> [312] => <div class=margin> [313] => <p><a href=/Bible/sv1750/>SV1750 Statenvertaling</a></p> [314] => </div> [315] => <h2 id=norsk><a href=#norsk>Norsk</a></h2> [316] => <div class=margin> [317] => <p><a href=/Bible/norsk/>NORSK Det Norsk Bibelselskap 1930</a></p> [318] => </div> [319] => <h2 id=polski><a href=#polski>Polski</a></h2> [320] => <div class=margin> [321] => <p><a href=/Bible/pbg/>PBG Biblia Gdańska</a></p> [322] => </div> [323] => <h2 id=português><a href=#português>Português</a></h2> [324] => <div class=margin> [325] => <p><a href=/Bible/aa/>AA Almeida Atualizada</a></p> [326] => </div> [327] => <h2 id=română><a href=#română>Română</a></h2> [328] => <div class=margin> [329] => <p><a href=/Bible/rmnn/>RMNN Romanian Cornilescu 1928</a></p> [330] => <p><a href=/Bible/vdc/>VDC Versiunea Dumitru Cornilescu</a></p> [331] => <p><a href=/Bible/vdcc/>VDCC Versiunea Dumitru Cornilescu Corectată</a></p> [332] => </div> [333] => <h2 id=pyccкий><a href=#pyccкий>Pyccкий</a></h2> [334] => <div class=margin> [335] => <p><a href=/Bible/rursv/>RURSV Синодальный перевод</a></p> [336] => </div> [337] => <h2 id=shqip><a href=#shqip>Shqip</a></h2> [338] => <div class=margin> [339] => <p><a href=/Bible/albb/>ALBB Albanian Bible</a></p> [340] => </div> [341] => <h2 id=svenska><a href=#svenska>Svenska</a></h2> [342] => <div class=margin> [343] => <p><a href=/Bible/sk73/>SK73 Karl XII 1873</a></p> [344] => <p><a href=/Bible/sven/>SVEN Svenska 1917</a></p> [345] => </div> [346] => <h2 id=wikang-tagalog><a href=#wikang-tagalog>Wikang Tagalog</a></h2> [347] => <div class=margin> [348] => <p><a href=/Bible/tlab/>TLAB Ang Biblia</a></p> [349] => </div> [350] => <h2 id=українська><a href=#українська>українська</a></h2> [351] => <div class=margin> [352] => <p><a href=/Bible/ubio/>UBIO Біблія в пер. Івана Огієнка, 1962</a></p> [353] => <p><a href=/Bible/ukrk/>UKRK Біблія в пер. П.Куліша та І.Пулюя, 1905</a></p> [354] => </div> [355] => <h2 id=tiếng-việt><a href=#tiếng-việt>Tiếng Việt</a></h2> [356] => <div class=margin> [357] => <p><a href=/Bible/vi1934/>VI1934 1934 Vietnamese Bible</a></p> [358] => </div> [359] => <h2 id=简体中文><a href=#简体中文>简体中文</a></h2> [360] => <div class=margin> [361] => <p><a href=/Bible/cuvs/>CUVS 简体和合本</a></p> [362] => </div> [363] => <h2 id=繁體中文><a href=#繁體中文>繁體中文</a></h2> [364] => <div class=margin> [365] => <p><a href=/Bible/cuv/>CUV 和合本</a></p> [366] => </div> [367] => </div> [368] => <div class=nav-h1> [369] => <p><a id=nav-switch-html>HTML</a></p> [370] => </div> [371] => <div id=nav-content-html> [372] => <h2 id=overview><a href=#overview>Overview</a></h2> [373] => <div class=margin> [374] => <p><a href=/html/>Overview</a></p> [375] => </div> [376] => <h2 id=attributes><a href=#attributes>Attributes</a></h2> [377] => <div class=margin> [378] => <p><a href=/html/attributes/accesskey/>accesskey</a></p> [379] => <p><a href=/html/attributes/autocapitalize/>autocapitalize</a></p> [380] => <p><a href=/html/attributes/class/>class</a></p> [381] => <p><a href=/html/attributes/contenteditable/>contenteditable</a></p> [382] => <p><a href=/html/attributes/data/>data</a></p> [383] => <p><a href=/html/attributes/dir/>dir</a></p> [384] => <p><a href=/html/attributes/draggable/>draggable</a></p> [385] => <p><a href=/html/attributes/hidden/>hidden</a></p> [386] => <p><a href=/html/attributes/id/>id</a></p> [387] => <p><a href=/html/attributes/inputmode/>inputmode</a></p> [388] => <p><a href=/html/attributes/is/>is</a></p> [389] => <p><a href=/html/attributes/lang/>lang</a></p> [390] => <p><a href=/html/attributes/spellcheck/>spellcheck</a></p> [391] => <p><a href=/html/attributes/style/>style</a></p> [392] => <p><a href=/html/attributes/tabindex/>tabindex</a></p> [393] => <p><a href=/html/attributes/title/>title</a></p> [394] => </div> [395] => <h2 id=elements><a href=#elements>Elements</a></h2> [396] => <div class=margin> [397] => <p><a href=/html/elements/!doctype/>!doctype</a></p> [398] => <p><a href=/html/elements/a/>a</a></p> [399] => <p><a href=/html/elements/abbr/>abbr</a></p> [400] => <p><a href=/html/elements/address/>address</a></p> [401] => <p><a href=/html/elements/area/>area</a></p> [402] => <p><a href=/html/elements/article/>article</a></p> [403] => <p><a href=/html/elements/aside/>aside</a></p> [404] => <p><a href=/html/elements/audio/>audio</a></p> [405] => <p><a href=/html/elements/b/>b</a></p> [406] => <p><a href=/html/elements/base/>base</a></p> [407] => <p><a href=/html/elements/bdi/>bdi</a></p> [408] => <p><a href=/html/elements/bdo/>bdo</a></p> [409] => <p><a href=/html/elements/blockquote/>blockquote</a></p> [410] => <p><a href=/html/elements/body/>body</a></p> [411] => <p><a href=/html/elements/br/>br</a></p> [412] => <p><a href=/html/elements/button/>button</a></p> [413] => <p><a href=/html/elements/canvas/>canvas</a></p> [414] => <p><a href=/html/elements/caption/>caption</a></p> [415] => <p><a href=/html/elements/cite/>cite</a></p> [416] => <p><a href=/html/elements/code/>code</a></p> [417] => <p><a href=/html/elements/col/>col</a></p> [418] => <p><a href=/html/elements/colgroup/>colgroup</a></p> [419] => <p><a href=/html/elements/data/>data</a></p> [420] => <p><a href=/html/elements/datalist/>datalist</a></p> [421] => <p><a href=/html/elements/dd/>dd</a></p> [422] => <p><a href=/html/elements/del/>del</a></p> [423] => <p><a href=/html/elements/details/>details</a></p> [424] => <p><a href=/html/elements/dfn/>dfn</a></p> [425] => <p><a href=/html/elements/dialog/>dialog</a></p> [426] => <p><a href=/html/elements/div/>div</a></p> [427] => <p><a href=/html/elements/dl/>dl</a></p> [428] => <p><a href=/html/elements/dt/>dt</a></p> [429] => <p><a href=/html/elements/em/>em</a></p> [430] => <p><a href=/html/elements/embed/>embed</a></p> [431] => <p><a href=/html/elements/fieldset/>fieldset</a></p> [432] => <p><a href=/html/elements/figcaption/>figcaption</a></p> [433] => <p><a href=/html/elements/figure/>figure</a></p> [434] => <p><a href=/html/elements/footer/>footer</a></p> [435] => <p><a href=/html/elements/form/>form</a></p> [436] => <p><a href=/html/elements/h1/>h1</a></p> [437] => <p><a href=/html/elements/h2/>h2</a></p> [438] => <p><a href=/html/elements/h3/>h3</a></p> [439] => <p><a href=/html/elements/h4/>h4</a></p> [440] => <p><a href=/html/elements/h5/>h5</a></p> [441] => <p><a href=/html/elements/h6/>h6</a></p> [442] => <p><a href=/html/elements/head/>head</a></p> [443] => <p><a href=/html/elements/header/>header</a></p> [444] => <p><a href=/html/elements/hgroup/>hgroup</a></p> [445] => <p><a href=/html/elements/hr/>hr</a></p> [446] => <p><a href=/html/elements/html/>html</a></p> [447] => <p><a href=/html/elements/i/>i</a></p> [448] => <p><a href=/html/elements/iframe/>iframe</a></p> [449] => <p><a href=/html/elements/img/>img</a></p> [450] => <p><a href=/html/elements/input/>input</a></p> [451] => <p><a href=/html/elements/ins/>ins</a></p> [452] => <p><a href=/html/elements/kbd/>kbd</a></p> [453] => <p><a href=/html/elements/label/>label</a></p> [454] => <p><a href=/html/elements/legend/>legend</a></p> [455] => <p><a href=/html/elements/li/>li</a></p> [456] => <p><a href=/html/elements/link/>link</a></p> [457] => <p><a href=/html/elements/main/>main</a></p> [458] => <p><a href=/html/elements/map/>map</a></p> [459] => <p><a href=/html/elements/mark/>mark</a></p> [460] => <p><a href=/html/elements/menu/>menu</a></p> [461] => <p><a href=/html/elements/meta/>meta</a></p> [462] => <p><a href=/html/elements/meter/>meter</a></p> [463] => <p><a href=/html/elements/nav/>nav</a></p> [464] => <p><a href=/html/elements/noscript/>noscript</a></p> [465] => <p><a href=/html/elements/object/>object</a></p> [466] => <p><a href=/html/elements/ol/>ol</a></p> [467] => <p><a href=/html/elements/optgroup/>optgroup</a></p> [468] => <p><a href=/html/elements/option/>option</a></p> [469] => <p><a href=/html/elements/output/>output</a></p> [470] => <p><a href=/html/elements/p/>p</a></p> [471] => <p><a href=/html/elements/param/>param</a></p> [472] => <p><a href=/html/elements/picture/>picture</a></p> [473] => <p><a href=/html/elements/pre/>pre</a></p> [474] => <p><a href=/html/elements/progress/>progress</a></p> [475] => <p><a href=/html/elements/q/>q</a></p> [476] => <p><a href=/html/elements/rb/>rb</a></p> [477] => <p><a href=/html/elements/rp/>rp</a></p> [478] => <p><a href=/html/elements/rt/>rt</a></p> [479] => <p><a href=/html/elements/rtc/>rtc</a></p> [480] => <p><a href=/html/elements/ruby/>ruby</a></p> [481] => <p><a href=/html/elements/s/>s</a></p> [482] => <p><a href=/html/elements/samp/>samp</a></p> [483] => <p><a href=/html/elements/script/>script</a></p> [484] => <p><a href=/html/elements/section/>section</a></p> [485] => <p><a href=/html/elements/select/>select</a></p> [486] => <p><a href=/html/elements/slot/>slot</a></p> [487] => <p><a href=/html/elements/small/>small</a></p> [488] => <p><a href=/html/elements/source/>source</a></p> [489] => <p><a href=/html/elements/span/>span</a></p> [490] => <p><a href=/html/elements/strong/>strong</a></p> [491] => <p><a href=/html/elements/style/>style</a></p> [492] => <p><a href=/html/elements/sub/>sub</a></p> [493] => <p><a href=/html/elements/summary/>summary</a></p> [494] => <p><a href=/html/elements/sup/>sup</a></p> [495] => <p><a href=/html/elements/table/>table</a></p> [496] => <p><a href=/html/elements/tbody/>tbody</a></p> [497] => <p><a href=/html/elements/td/>td</a></p> [498] => <p><a href=/html/elements/template/>template</a></p> [499] => <p><a href=/html/elements/textarea/>textarea</a></p> [500] => <p><a href=/html/elements/tfoot/>tfoot</a></p> [501] => <p><a href=/html/elements/th/>th</a></p> [502] => <p><a href=/html/elements/thead/>thead</a></p> [503] => <p><a href=/html/elements/time/>time</a></p> [504] => <p><a href=/html/elements/title/>title</a></p> [505] => <p><a href=/html/elements/tr/>tr</a></p> [506] => <p><a href=/html/elements/track/>track</a></p> [507] => <p><a href=/html/elements/u/>u</a></p> [508] => <p><a href=/html/elements/ul/>ul</a></p> [509] => <p><a href=/html/elements/var/>var</a></p> [510] => <p><a href=/html/elements/video/>video</a></p> [511] => <p><a href=/html/elements/wbr/>wbr</a></p> [512] => </div> [513] => <h2 id=other><a href=#other>Other</a></h2> [514] => <div class=margin> [515] => <p><a href=/html/characters/>Characters</a></p> [516] => <p><a href=/html/comments/>Comments</a></p> [517] => <p><a href=/html/datatypes/>Datatypes</a></p> [518] => </div> [519] => </div> [520] => <div class=nav-h1> [521] => <p><a id=nav-switch-css>CSS</a></p> [522] => </div> [523] => <div id=nav-content-css> [524] => <h2 id=overview><a href=#overview>Overview</a></h2> [525] => <div class=margin> [526] => <p><a href=/css/>Overview</a></p> [527] => </div> [528] => <h2 id=functions><a href=#functions>Functions</a></h2> [529] => <div class=margin> [530] => <p><a href=/css/functions/abs/>abs</a></p> [531] => <p><a href=/css/functions/calc/>calc</a></p> [532] => </div> [533] => <h2 id=properties><a href=#properties>Properties</a></h2> [534] => <div class=margin> [535] => <p><a href=/css/properties/accent-color/>accent-color</a></p> [536] => <p><a href=/css/properties/align-content/>align-content</a></p> [537] => <p><a href=/css/properties/align-items/>align-items</a></p> [538] => <p><a href=/css/properties/align-self/>align-self</a></p> [539] => <p><a href=/css/properties/all/>all</a></p> [540] => <p><a href=/css/properties/animation/>animation</a></p> [541] => <p><a href=/css/properties/animation-delay/>animation-delay</a></p> [542] => <p><a href=/css/properties/animation-direction/>animation-direction</a></p> [543] => <p><a href=/css/properties/animation-duration/>animation-duration</a></p> [544] => <p><a href=/css/properties/animation-fill-mode/>animation-fill-mode</a></p> [545] => <p><a href=/css/properties/animation-iteration-count/>animation-iteration-count</a></p> [546] => <p><a href=/css/properties/animation-name/>animation-name</a></p> [547] => <p><a href=/css/properties/animation-play-state/>animation-play-state</a></p> [548] => <p><a href=/css/properties/animation-timing-function/>animation-timing-function</a></p> [549] => <p><a href=/css/properties/appearance/>appearance</a></p> [550] => <p><a href=/css/properties/aspect-ratio/>aspect-ratio</a></p> [551] => <p><a href=/css/properties/backdrop-filter/>backdrop-filter</a></p> [552] => <p><a href=/css/properties/backface-visibility/>backface-visibility</a></p> [553] => <p><a href=/css/properties/background/>background</a></p> [554] => <p><a href=/css/properties/background-attachment/>background-attachment</a></p> [555] => <p><a href=/css/properties/background-blend-mode/>background-blend-mode</a></p> [556] => <p><a href=/css/properties/background-clip/>background-clip</a></p> [557] => <p><a href=/css/properties/background-color/>background-color</a></p> [558] => <p><a href=/css/properties/background-image/>background-image</a></p> [559] => <p><a href=/css/properties/background-origin/>background-origin</a></p> [560] => <p><a href=/css/properties/background-position/>background-position</a></p> [561] => <p><a href=/css/properties/background-position-x/>background-position-x</a></p> [562] => <p><a href=/css/properties/background-position-y/>background-position-y</a></p> [563] => <p><a href=/css/properties/background-repeat/>background-repeat</a></p> [564] => <p><a href=/css/properties/background-size/>background-size</a></p> [565] => <p><a href=/css/properties/block-ellipsis/>block-ellipsis</a></p> [566] => <p><a href=/css/properties/block-size/>block-size</a></p> [567] => <p><a href=/css/properties/border/>border</a></p> [568] => <p><a href=/css/properties/border-block/>border-block</a></p> [569] => <p><a href=/css/properties/border-block-color/>border-block-color</a></p> [570] => <p><a href=/css/properties/border-block-end/>border-block-end</a></p> [571] => <p><a href=/css/properties/border-block-end-color/>border-block-end-color</a></p> [572] => <p><a href=/css/properties/border-block-end-style/>border-block-end-style</a></p> [573] => <p><a href=/css/properties/border-block-end-width/>border-block-end-width</a></p> [574] => <p><a href=/css/properties/border-block-start/>border-block-start</a></p> [575] => <p><a href=/css/properties/border-block-start-color/>border-block-start-color</a></p> [576] => <p><a href=/css/properties/border-block-start-style/>border-block-start-style</a></p> [577] => <p><a href=/css/properties/border-block-start-width/>border-block-start-width</a></p> [578] => <p><a href=/css/properties/border-block-style/>border-block-style</a></p> [579] => <p><a href=/css/properties/border-block-width/>border-block-width</a></p> [580] => <p><a href=/css/properties/border-bottom/>border-bottom</a></p> [581] => <p><a href=/css/properties/border-bottom-color/>border-bottom-color</a></p> [582] => <p><a href=/css/properties/border-bottom-left-radius/>border-bottom-left-radius</a></p> [583] => <p><a href=/css/properties/border-bottom-right-radius/>border-bottom-right-radius</a></p> [584] => <p><a href=/css/properties/border-bottom-style/>border-bottom-style</a></p> [585] => <p><a href=/css/properties/border-bottom-width/>border-bottom-width</a></p> [586] => <p><a href=/css/properties/border-collapse/>border-collapse</a></p> [587] => <p><a href=/css/properties/border-color/>border-color</a></p> [588] => <p><a href=/css/properties/border-end-end-radius/>border-end-end-radius</a></p> [589] => <p><a href=/css/properties/border-end-start-radius/>border-end-start-radius</a></p> [590] => <p><a href=/css/properties/border-image/>border-image</a></p> [591] => <p><a href=/css/properties/border-image-outset/>border-image-outset</a></p> [592] => <p><a href=/css/properties/border-image-repeat/>border-image-repeat</a></p> [593] => <p><a href=/css/properties/border-image-slice/>border-image-slice</a></p> [594] => <p><a href=/css/properties/border-image-source/>border-image-source</a></p> [595] => <p><a href=/css/properties/border-image-width/>border-image-width</a></p> [596] => <p><a href=/css/properties/border-inline/>border-inline</a></p> [597] => <p><a href=/css/properties/border-inline-color/>border-inline-color</a></p> [598] => <p><a href=/css/properties/border-inline-end/>border-inline-end</a></p> [599] => <p><a href=/css/properties/border-inline-end-color/>border-inline-end-color</a></p> [600] => <p><a href=/css/properties/border-inline-end-style/>border-inline-end-style</a></p> [601] => <p><a href=/css/properties/border-inline-end-width/>border-inline-end-width</a></p> [602] => <p><a href=/css/properties/border-inline-start/>border-inline-start</a></p> [603] => <p><a href=/css/properties/border-inline-start-color/>border-inline-start-color</a></p> [604] => <p><a href=/css/properties/border-inline-start-style/>border-inline-start-style</a></p> [605] => <p><a href=/css/properties/border-inline-start-width/>border-inline-start-width</a></p> [606] => <p><a href=/css/properties/border-inline-style/>border-inline-style</a></p> [607] => <p><a href=/css/properties/border-inline-width/>border-inline-width</a></p> [608] => <p><a href=/css/properties/border-left/>border-left</a></p> [609] => <p><a href=/css/properties/border-left-color/>border-left-color</a></p> [610] => <p><a href=/css/properties/border-left-style/>border-left-style</a></p> [611] => <p><a href=/css/properties/border-left-width/>border-left-width</a></p> [612] => <p><a href=/css/properties/border-radius/>border-radius</a></p> [613] => <p><a href=/css/properties/border-right/>border-right</a></p> [614] => <p><a href=/css/properties/border-right-color/>border-right-color</a></p> [615] => <p><a href=/css/properties/border-right-style/>border-right-style</a></p> [616] => <p><a href=/css/properties/border-right-width/>border-right-width</a></p> [617] => <p><a href=/css/properties/border-spacing/>border-spacing</a></p> [618] => <p><a href=/css/properties/border-start-end-radius/>border-start-end-radius</a></p> [619] => <p><a href=/css/properties/border-start-start-radius/>border-start-start-radius</a></p> [620] => <p><a href=/css/properties/border-style/>border-style</a></p> [621] => <p><a href=/css/properties/border-top/>border-top</a></p> [622] => <p><a href=/css/properties/border-top-color/>border-top-color</a></p> [623] => <p><a href=/css/properties/border-top-left-radius/>border-top-left-radius</a></p> [624] => <p><a href=/css/properties/border-top-right-radius/>border-top-right-radius</a></p> [625] => <p><a href=/css/properties/border-top-style/>border-top-style</a></p> [626] => <p><a href=/css/properties/border-top-width/>border-top-width</a></p> [627] => <p><a href=/css/properties/border-width/>border-width</a></p> [628] => <p><a href=/css/properties/bottom/>bottom</a></p> [629] => <p><a href=/css/properties/box-decoration-break/>box-decoration-break</a></p> [630] => <p><a href=/css/properties/box-shadow/>box-shadow</a></p> [631] => <p><a href=/css/properties/box-sizing/>box-sizing</a></p> [632] => <p><a href=/css/properties/caption-side/>caption-side</a></p> [633] => <p><a href=/css/properties/caret/>caret</a></p> [634] => <p><a href=/css/properties/caret-color/>caret-color</a></p> [635] => <p><a href=/css/properties/caret-shape/>caret-shape</a></p> [636] => <p><a href=/css/properties/clear/>clear</a></p> [637] => <p><a href=/css/properties/clip/>clip</a></p> [638] => <p><a href=/css/properties/clip-path/>clip-path</a></p> [639] => <p><a href=/css/properties/color/>color</a></p> [640] => <p><a href=/css/properties/color-scheme/>color-scheme</a></p> [641] => <p><a href=/css/properties/column-count/>column-count</a></p> [642] => <p><a href=/css/properties/column-fill/>column-fill</a></p> [643] => <p><a href=/css/properties/column-gap/>column-gap</a></p> [644] => <p><a href=/css/properties/column-rule/>column-rule</a></p> [645] => <p><a href=/css/properties/column-rule-color/>column-rule-color</a></p> [646] => <p><a href=/css/properties/column-rule-style/>column-rule-style</a></p> [647] => <p><a href=/css/properties/column-rule-width/>column-rule-width</a></p> [648] => <p><a href=/css/properties/column-span/>column-span</a></p> [649] => <p><a href=/css/properties/column-width/>column-width</a></p> [650] => <p><a href=/css/properties/columns/>columns</a></p> [651] => <p><a href=/css/properties/contain/>contain</a></p> [652] => <p><a href=/css/properties/container/>container</a></p> [653] => <p><a href=/css/properties/container-name/>container-name</a></p> [654] => <p><a href=/css/properties/container-type/>container-type</a></p> [655] => <p><a href=/css/properties/content/>content</a></p> [656] => <p><a href=/css/properties/content-visibility/>content-visibility</a></p> [657] => <p><a href=/css/properties/continue/>continue</a></p> [658] => <p><a href=/css/properties/counter-increment/>counter-increment</a></p> [659] => <p><a href=/css/properties/counter-reset/>counter-reset</a></p> [660] => <p><a href=/css/properties/counter-set/>counter-set</a></p> [661] => <p><a href=/css/properties/cursor/>cursor</a></p> [662] => <p><a href=/css/properties/direction/>direction</a></p> [663] => <p><a href=/css/properties/display/>display</a></p> [664] => <p><a href=/css/properties/empty-cells/>empty-cells</a></p> [665] => <p><a href=/css/properties/filter/>filter</a></p> [666] => <p><a href=/css/properties/flex/>flex</a></p> [667] => <p><a href=/css/properties/flex-basis/>flex-basis</a></p> [668] => <p><a href=/css/properties/flex-direction/>flex-direction</a></p> [669] => <p><a href=/css/properties/flex-flow/>flex-flow</a></p> [670] => <p><a href=/css/properties/flex-grow/>flex-grow</a></p> [671] => <p><a href=/css/properties/flex-shrink/>flex-shrink</a></p> [672] => <p><a href=/css/properties/flex-wrap/>flex-wrap</a></p> [673] => <p><a href=/css/properties/float/>float</a></p> [674] => <p><a href=/css/properties/font/>font</a></p> [675] => <p><a href=/css/properties/font-family/>font-family</a></p> [676] => <p><a href=/css/properties/font-feature-settings/>font-feature-settings</a></p> [677] => <p><a href=/css/properties/font-kerning/>font-kerning</a></p> [678] => <p><a href=/css/properties/font-optical-sizing/>font-optical-sizing</a></p> [679] => <p><a href=/css/properties/font-size/>font-size</a></p> [680] => <p><a href=/css/properties/font-size-adjust/>font-size-adjust</a></p> [681] => <p><a href=/css/properties/font-stretch/>font-stretch</a></p> [682] => <p><a href=/css/properties/font-style/>font-style</a></p> [683] => <p><a href=/css/properties/font-variant/>font-variant</a></p> [684] => <p><a href=/css/properties/font-variant-caps/>font-variant-caps</a></p> [685] => <p><a href=/css/properties/font-variant-ligatures/>font-variant-ligatures</a></p> [686] => <p><a href=/css/properties/font-variant-numeric/>font-variant-numeric</a></p> [687] => <p><a href=/css/properties/font-variant-position/>font-variant-position</a></p> [688] => <p><a href=/css/properties/font-variation-settings/>font-variation-settings</a></p> [689] => <p><a href=/css/properties/font-weight/>font-weight</a></p> [690] => <p><a href=/css/properties/forced-color-adjust/>forced-color-adjust</a></p> [691] => <p><a href=/css/properties/gap/>gap</a></p> [692] => <p><a href=/css/properties/grid/>grid</a></p> [693] => <p><a href=/css/properties/grid-area/>grid-area</a></p> [694] => <p><a href=/css/properties/grid-auto-columns/>grid-auto-columns</a></p> [695] => <p><a href=/css/properties/grid-auto-flow/>grid-auto-flow</a></p> [696] => <p><a href=/css/properties/grid-auto-rows/>grid-auto-rows</a></p> [697] => <p><a href=/css/properties/grid-column/>grid-column</a></p> [698] => <p><a href=/css/properties/grid-column-end/>grid-column-end</a></p> [699] => <p><a href=/css/properties/grid-column-start/>grid-column-start</a></p> [700] => <p><a href=/css/properties/grid-row/>grid-row</a></p> [701] => <p><a href=/css/properties/grid-row-end/>grid-row-end</a></p> [702] => <p><a href=/css/properties/grid-row-start/>grid-row-start</a></p> [703] => <p><a href=/css/properties/grid-template/>grid-template</a></p> [704] => <p><a href=/css/properties/grid-template-areas/>grid-template-areas</a></p> [705] => <p><a href=/css/properties/grid-template-columns/>grid-template-columns</a></p> [706] => <p><a href=/css/properties/grid-template-rows/>grid-template-rows</a></p> [707] => <p><a href=/css/properties/hanging-punctuation/>hanging-punctuation</a></p> [708] => <p><a href=/css/properties/height/>height</a></p> [709] => <p><a href=/css/properties/hyphens/>hyphens</a></p> [710] => <p><a href=/css/properties/image-rendering/>image-rendering</a></p> [711] => <p><a href=/css/properties/inline-size/>inline-size</a></p> [712] => <p><a href=/css/properties/inset/>inset</a></p> [713] => <p><a href=/css/properties/inset-block/>inset-block</a></p> [714] => <p><a href=/css/properties/inset-block-end/>inset-block-end</a></p> [715] => <p><a href=/css/properties/inset-block-start/>inset-block-start</a></p> [716] => <p><a href=/css/properties/inset-inline/>inset-inline</a></p> [717] => <p><a href=/css/properties/inset-inline-end/>inset-inline-end</a></p> [718] => <p><a href=/css/properties/inset-inline-start/>inset-inline-start</a></p> [719] => <p><a href=/css/properties/isolation/>isolation</a></p> [720] => <p><a href=/css/properties/justify-content/>justify-content</a></p> [721] => <p><a href=/css/properties/justify-items/>justify-items</a></p> [722] => <p><a href=/css/properties/justify-self/>justify-self</a></p> [723] => <p><a href=/css/properties/left/>left</a></p> [724] => <p><a href=/css/properties/letter-spacing/>letter-spacing</a></p> [725] => <p><a href=/css/properties/line-break/>line-break</a></p> [726] => <p><a href=/css/properties/line-clamp/>line-clamp</a></p> [727] => <p><a href=/css/properties/line-height/>line-height</a></p> [728] => <p><a href=/css/properties/list-style/>list-style</a></p> [729] => <p><a href=/css/properties/list-style-image/>list-style-image</a></p> [730] => <p><a href=/css/properties/list-style-position/>list-style-position</a></p> [731] => <p><a href=/css/properties/list-style-type/>list-style-type</a></p> [732] => <p><a href=/css/properties/margin/>margin</a></p> [733] => <p><a href=/css/properties/margin-block/>margin-block</a></p> [734] => <p><a href=/css/properties/margin-block-end/>margin-block-end</a></p> [735] => <p><a href=/css/properties/margin-block-start/>margin-block-start</a></p> [736] => <p><a href=/css/properties/margin-bottom/>margin-bottom</a></p> [737] => <p><a href=/css/properties/margin-inline/>margin-inline</a></p> [738] => <p><a href=/css/properties/margin-inline-end/>margin-inline-end</a></p> [739] => <p><a href=/css/properties/margin-inline-start/>margin-inline-start</a></p> [740] => <p><a href=/css/properties/margin-left/>margin-left</a></p> [741] => <p><a href=/css/properties/margin-right/>margin-right</a></p> [742] => <p><a href=/css/properties/margin-top/>margin-top</a></p> [743] => <p><a href=/css/properties/mask/>mask</a></p> [744] => <p><a href=/css/properties/mask-border/>mask-border</a></p> [745] => <p><a href=/css/properties/mask-border-mode/>mask-border-mode</a></p> [746] => <p><a href=/css/properties/mask-border-outset/>mask-border-outset</a></p> [747] => <p><a href=/css/properties/mask-border-repeat/>mask-border-repeat</a></p> [748] => <p><a href=/css/properties/mask-border-slice/>mask-border-slice</a></p> [749] => <p><a href=/css/properties/mask-border-source/>mask-border-source</a></p> [750] => <p><a href=/css/properties/mask-border-width/>mask-border-width</a></p> [751] => <p><a href=/css/properties/mask-clip/>mask-clip</a></p> [752] => <p><a href=/css/properties/mask-composite/>mask-composite</a></p> [753] => <p><a href=/css/properties/mask-image/>mask-image</a></p> [754] => <p><a href=/css/properties/mask-mode/>mask-mode</a></p> [755] => <p><a href=/css/properties/mask-origin/>mask-origin</a></p> [756] => <p><a href=/css/properties/mask-position/>mask-position</a></p> [757] => <p><a href=/css/properties/mask-repeat/>mask-repeat</a></p> [758] => <p><a href=/css/properties/mask-size/>mask-size</a></p> [759] => <p><a href=/css/properties/mask-type/>mask-type</a></p> [760] => <p><a href=/css/properties/max-block-size/>max-block-size</a></p> [761] => <p><a href=/css/properties/max-height/>max-height</a></p> [762] => <p><a href=/css/properties/max-inline-size/>max-inline-size</a></p> [763] => <p><a href=/css/properties/max-lines/>max-lines</a></p> [764] => <p><a href=/css/properties/max-width/>max-width</a></p> [765] => <p><a href=/css/properties/min-block-size/>min-block-size</a></p> [766] => <p><a href=/css/properties/min-height/>min-height</a></p> [767] => <p><a href=/css/properties/min-inline-size/>min-inline-size</a></p> [768] => <p><a href=/css/properties/min-width/>min-width</a></p> [769] => <p><a href=/css/properties/mix-blend-mode/>mix-blend-mode</a></p> [770] => <p><a href=/css/properties/nav-down/>nav-down</a></p> [771] => <p><a href=/css/properties/nav-left/>nav-left</a></p> [772] => <p><a href=/css/properties/nav-right/>nav-right</a></p> [773] => <p><a href=/css/properties/nav-up/>nav-up</a></p> [774] => <p><a href=/css/properties/object-fit/>object-fit</a></p> [775] => <p><a href=/css/properties/object-position/>object-position</a></p> [776] => <p><a href=/css/properties/opacity/>opacity</a></p> [777] => <p><a href=/css/properties/orphans/>orphans</a></p> [778] => <p><a href=/css/properties/outline/>outline</a></p> [779] => <p><a href=/css/properties/outline-color/>outline-color</a></p> [780] => <p><a href=/css/properties/outline-offset/>outline-offset</a></p> [781] => <p><a href=/css/properties/outline-style/>outline-style</a></p> [782] => <p><a href=/css/properties/outline-width/>outline-width</a></p> [783] => <p><a href=/css/properties/overflow/>overflow</a></p> [784] => <p><a href=/css/properties/overflow-block/>overflow-block</a></p> [785] => <p><a href=/css/properties/overflow-clip-margin/>overflow-clip-margin</a></p> [786] => <p><a href=/css/properties/overflow-inline/>overflow-inline</a></p> [787] => <p><a href=/css/properties/overflow-wrap/>overflow-wrap</a></p> [788] => <p><a href=/css/properties/overflow-x/>overflow-x</a></p> [789] => <p><a href=/css/properties/overflow-y/>overflow-y</a></p> [790] => <p><a href=/css/properties/padding/>padding</a></p> [791] => <p><a href=/css/properties/padding-block/>padding-block</a></p> [792] => <p><a href=/css/properties/padding-block-end/>padding-block-end</a></p> [793] => <p><a href=/css/properties/padding-block-start/>padding-block-start</a></p> [794] => <p><a href=/css/properties/padding-bottom/>padding-bottom</a></p> [795] => <p><a href=/css/properties/padding-inline/>padding-inline</a></p> [796] => <p><a href=/css/properties/padding-inline-end/>padding-inline-end</a></p> [797] => <p><a href=/css/properties/padding-inline-start/>padding-inline-start</a></p> [798] => <p><a href=/css/properties/padding-left/>padding-left</a></p> [799] => <p><a href=/css/properties/padding-right/>padding-right</a></p> [800] => <p><a href=/css/properties/padding-top/>padding-top</a></p> [801] => <p><a href=/css/properties/paint-order/>paint-order</a></p> [802] => <p><a href=/css/properties/perspective/>perspective</a></p> [803] => <p><a href=/css/properties/perspective-origin/>perspective-origin</a></p> [804] => <p><a href=/css/properties/place-content/>place-content</a></p> [805] => <p><a href=/css/properties/place-items/>place-items</a></p> [806] => <p><a href=/css/properties/place-self/>place-self</a></p> [807] => <p><a href=/css/properties/pointer-events/>pointer-events</a></p> [808] => <p><a href=/css/properties/position/>position</a></p> [809] => <p><a href=/css/properties/print-color-adjust/>print-color-adjust</a></p> [810] => <p><a href=/css/properties/quotes/>quotes</a></p> [811] => <p><a href=/css/properties/resize/>resize</a></p> [812] => <p><a href=/css/properties/right/>right</a></p> [813] => <p><a href=/css/properties/rotate/>rotate</a></p> [814] => <p><a href=/css/properties/row-gap/>row-gap</a></p> [815] => <p><a href=/css/properties/scale/>scale</a></p> [816] => <p><a href=/css/properties/scroll-behavior/>scroll-behavior</a></p> [817] => <p><a href=/css/properties/scroll-margin/>scroll-margin</a></p> [818] => <p><a href=/css/properties/scroll-margin-block/>scroll-margin-block</a></p> [819] => <p><a href=/css/properties/scroll-margin-block-end/>scroll-margin-block-end</a></p> [820] => <p><a href=/css/properties/scroll-margin-block-start/>scroll-margin-block-start</a></p> [821] => <p><a href=/css/properties/scroll-margin-bottom/>scroll-margin-bottom</a></p> [822] => <p><a href=/css/properties/scroll-margin-inline/>scroll-margin-inline</a></p> [823] => <p><a href=/css/properties/scroll-margin-inline-end/>scroll-margin-inline-end</a></p> [824] => <p><a href=/css/properties/scroll-margin-inline-start/>scroll-margin-inline-start</a></p> [825] => <p><a href=/css/properties/scroll-margin-left/>scroll-margin-left</a></p> [826] => <p><a href=/css/properties/scroll-margin-right/>scroll-margin-right</a></p> [827] => <p><a href=/css/properties/scroll-margin-top/>scroll-margin-top</a></p> [828] => <p><a href=/css/properties/scroll-padding/>scroll-padding</a></p> [829] => <p><a href=/css/properties/scroll-padding-block/>scroll-padding-block</a></p> [830] => <p><a href=/css/properties/scroll-padding-block-end/>scroll-padding-block-end</a></p> [831] => <p><a href=/css/properties/scroll-padding-block-start/>scroll-padding-block-start</a></p> [832] => <p><a href=/css/properties/scroll-padding-bottom/>scroll-padding-bottom</a></p> [833] => <p><a href=/css/properties/scroll-padding-inline/>scroll-padding-inline</a></p> [834] => <p><a href=/css/properties/scroll-padding-inline-end/>scroll-padding-inline-end</a></p> [835] => <p><a href=/css/properties/scroll-padding-inline-start/>scroll-padding-inline-start</a></p> [836] => <p><a href=/css/properties/scroll-padding-left/>scroll-padding-left</a></p> [837] => <p><a href=/css/properties/scroll-padding-right/>scroll-padding-right</a></p> [838] => <p><a href=/css/properties/scroll-padding-top/>scroll-padding-top</a></p> [839] => <p><a href=/css/properties/scroll-snap-align/>scroll-snap-align</a></p> [840] => <p><a href=/css/properties/scroll-snap-stop/>scroll-snap-stop</a></p> [841] => <p><a href=/css/properties/scroll-snap-type/>scroll-snap-type</a></p> [842] => <p><a href=/css/properties/scrollbar-color/>scrollbar-color</a></p> [843] => <p><a href=/css/properties/scrollbar-gutter/>scrollbar-gutter</a></p> [844] => <p><a href=/css/properties/scrollbar-width/>scrollbar-width</a></p> [845] => <p><a href=/css/properties/shape-image-threshold/>shape-image-threshold</a></p> [846] => <p><a href=/css/properties/shape-margin/>shape-margin</a></p> [847] => <p><a href=/css/properties/shape-outside/>shape-outside</a></p> [848] => <p><a href=/css/properties/tab-size/>tab-size</a></p> [849] => <p><a href=/css/properties/table-layout/>table-layout</a></p> [850] => <p><a href=/css/properties/text-align/>text-align</a></p> [851] => <p><a href=/css/properties/text-align-all/>text-align-all</a></p> [852] => <p><a href=/css/properties/text-align-last/>text-align-last</a></p> [853] => <p><a href=/css/properties/text-combine-upright/>text-combine-upright</a></p> [854] => <p><a href=/css/properties/text-decoration/>text-decoration</a></p> [855] => <p><a href=/css/properties/text-decoration-color/>text-decoration-color</a></p> [856] => <p><a href=/css/properties/text-decoration-line/>text-decoration-line</a></p> [857] => <p><a href=/css/properties/text-decoration-skip-ink/>text-decoration-skip-ink</a></p> [858] => <p><a href=/css/properties/text-decoration-style/>text-decoration-style</a></p> [859] => <p><a href=/css/properties/text-decoration-thickness/>text-decoration-thickness</a></p> [860] => <p><a href=/css/properties/text-decoration-trim/>text-decoration-trim</a></p> [861] => <p><a href=/css/properties/text-emphasis/>text-emphasis</a></p> [862] => <p><a href=/css/properties/text-emphasis-color/>text-emphasis-color</a></p> [863] => <p><a href=/css/properties/text-emphasis-position/>text-emphasis-position</a></p> [864] => <p><a href=/css/properties/text-emphasis-style/>text-emphasis-style</a></p> [865] => <p><a href=/css/properties/text-indent/>text-indent</a></p> [866] => <p><a href=/css/properties/text-justify/>text-justify</a></p> [867] => <p><a href=/css/properties/text-orientation/>text-orientation</a></p> [868] => <p><a href=/css/properties/text-overflow/>text-overflow</a></p> [869] => <p><a href=/css/properties/text-shadow/>text-shadow</a></p> [870] => <p><a href=/css/properties/text-transform/>text-transform</a></p> [871] => <p><a href=/css/properties/text-underline-offset/>text-underline-offset</a></p> [872] => <p><a href=/css/properties/text-underline-position/>text-underline-position</a></p> [873] => <p><a href=/css/properties/top/>top</a></p> [874] => <p><a href=/css/properties/transform/>transform</a></p> [875] => <p><a href=/css/properties/transform-box/>transform-box</a></p> [876] => <p><a href=/css/properties/transform-origin/>transform-origin</a></p> [877] => <p><a href=/css/properties/transform-style/>transform-style</a></p> [878] => <p><a href=/css/properties/transition/>transition</a></p> [879] => <p><a href=/css/properties/transition-delay/>transition-delay</a></p> [880] => <p><a href=/css/properties/transition-duration/>transition-duration</a></p> [881] => <p><a href=/css/properties/transition-property/>transition-property</a></p> [882] => <p><a href=/css/properties/transition-timing-function/>transition-timing-function</a></p> [883] => <p><a href=/css/properties/translate/>translate</a></p> [884] => <p><a href=/css/properties/unicode-bidi/>unicode-bidi</a></p> [885] => <p><a href=/css/properties/vertical-align/>vertical-align</a></p> [886] => <p><a href=/css/properties/visibility/>visibility</a></p> [887] => <p><a href=/css/properties/white-space/>white-space</a></p> [888] => <p><a href=/css/properties/widows/>widows</a></p> [889] => <p><a href=/css/properties/width/>width</a></p> [890] => <p><a href=/css/properties/word-break/>word-break</a></p> [891] => <p><a href=/css/properties/word-spacing/>word-spacing</a></p> [892] => <p><a href=/css/properties/word-wrap/>word-wrap</a></p> [893] => <p><a href=/css/properties/writing-mode/>writing-mode</a></p> [894] => <p><a href=/css/properties/z-index/>z-index</a></p> [895] => </div> [896] => <h2 id=pseudo-classes><a href=#pseudo-classes>Pseudo-Classes</a></h2> [897] => <div class=margin> [898] => <p><a href=/css/pseudo-classes/active/>active</a></p> [899] => <p><a href=/css/pseudo-classes/any-link/>any-link</a></p> [900] => <p><a href=/css/pseudo-classes/blank/>blank</a></p> [901] => <p><a href=/css/pseudo-classes/checked/>checked</a></p> [902] => <p><a href=/css/pseudo-classes/default/>default</a></p> [903] => <p><a href=/css/pseudo-classes/defined/>defined</a></p> [904] => <p><a href=/css/pseudo-classes/dir/>dir</a></p> [905] => <p><a href=/css/pseudo-classes/disabled/>disabled</a></p> [906] => <p><a href=/css/pseudo-classes/empty/>empty</a></p> [907] => <p><a href=/css/pseudo-classes/enabled/>enabled</a></p> [908] => <p><a href=/css/pseudo-classes/first-child/>first-child</a></p> [909] => <p><a href=/css/pseudo-classes/first-of-type/>first-of-type</a></p> [910] => <p><a href=/css/pseudo-classes/focus/>focus</a></p> [911] => <p><a href=/css/pseudo-classes/focus-visible/>focus-visible</a></p> [912] => <p><a href=/css/pseudo-classes/focus-within/>focus-within</a></p> [913] => <p><a href=/css/pseudo-classes/fullscreen/>fullscreen</a></p> [914] => <p><a href=/css/pseudo-classes/has/>has</a></p> [915] => <p><a href=/css/pseudo-classes/hover/>hover</a></p> [916] => <p><a href=/css/pseudo-classes/in-range/>in-range</a></p> [917] => <p><a href=/css/pseudo-classes/indeterminate/>indeterminate</a></p> [918] => <p><a href=/css/pseudo-classes/invalid/>invalid</a></p> [919] => <p><a href=/css/pseudo-classes/is/>is</a></p> [920] => <p><a href=/css/pseudo-classes/lang/>lang</a></p> [921] => <p><a href=/css/pseudo-classes/last-child/>last-child</a></p> [922] => <p><a href=/css/pseudo-classes/last-of-type/>last-of-type</a></p> [923] => <p><a href=/css/pseudo-classes/link/>link</a></p> [924] => <p><a href=/css/pseudo-classes/local-link/>local-link</a></p> [925] => <p><a href=/css/pseudo-classes/modal/>modal</a></p> [926] => <p><a href=/css/pseudo-classes/not/>not</a></p> [927] => <p><a href=/css/pseudo-classes/nth-child/>nth-child</a></p> [928] => <p><a href=/css/pseudo-classes/nth-col/>nth-col</a></p> [929] => <p><a href=/css/pseudo-classes/nth-last-child/>nth-last-child</a></p> [930] => <p><a href=/css/pseudo-classes/nth-last-col/>nth-last-col</a></p> [931] => <p><a href=/css/pseudo-classes/nth-last-of-type/>nth-last-of-type</a></p> [932] => <p><a href=/css/pseudo-classes/nth-of-type/>nth-of-type</a></p> [933] => <p><a href=/css/pseudo-classes/only-child/>only-child</a></p> [934] => <p><a href=/css/pseudo-classes/only-of-type/>only-of-type</a></p> [935] => <p><a href=/css/pseudo-classes/optional/>optional</a></p> [936] => <p><a href=/css/pseudo-classes/out-of-range/>out-of-range</a></p> [937] => <p><a href=/css/pseudo-classes/picture-in-picture/>picture-in-picture</a></p> [938] => <p><a href=/css/pseudo-classes/placeholder-shown/>placeholder-shown</a></p> [939] => <p><a href=/css/pseudo-classes/read-only/>read-only</a></p> [940] => <p><a href=/css/pseudo-classes/read-write/>read-write</a></p> [941] => <p><a href=/css/pseudo-classes/required/>required</a></p> [942] => <p><a href=/css/pseudo-classes/root/>root</a></p> [943] => <p><a href=/css/pseudo-classes/scope/>scope</a></p> [944] => <p><a href=/css/pseudo-classes/target/>target</a></p> [945] => <p><a href=/css/pseudo-classes/valid/>valid</a></p> [946] => <p><a href=/css/pseudo-classes/visited/>visited</a></p> [947] => <p><a href=/css/pseudo-classes/where/>where</a></p> [948] => </div> [949] => <h2 id=pseudo-elements><a href=#pseudo-elements>Pseudo-Elements</a></h2> [950] => <div class=margin> [951] => <p><a href=/css/pseudo-elements/after/>after</a></p> [952] => <p><a href=/css/pseudo-elements/backdrop/>backdrop</a></p> [953] => <p><a href=/css/pseudo-elements/before/>before</a></p> [954] => <p><a href=/css/pseudo-elements/first-letter/>first-letter</a></p> [955] => <p><a href=/css/pseudo-elements/first-line/>first-line</a></p> [956] => <p><a href=/css/pseudo-elements/marker/>marker</a></p> [957] => <p><a href=/css/pseudo-elements/placeholder/>placeholder</a></p> [958] => <p><a href=/css/pseudo-elements/selection/>selection</a></p> [959] => </div> [960] => <h2 id=units><a href=#units>Units</a></h2> [961] => <div class=margin> [962] => <p><a href=/css/units/cap/>cap</a></p> [963] => <p><a href=/css/units/ch/>ch</a></p> [964] => <p><a href=/css/units/cm/>cm</a></p> [965] => <p><a href=/css/units/cqb/>cqb</a></p> [966] => <p><a href=/css/units/cqh/>cqh</a></p> [967] => <p><a href=/css/units/cqi/>cqi</a></p> [968] => <p><a href=/css/units/cqmax/>cqmax</a></p> [969] => <p><a href=/css/units/cqmin/>cqmin</a></p> [970] => <p><a href=/css/units/cqw/>cqw</a></p> [971] => <p><a href=/css/units/deg/>deg</a></p> [972] => <p><a href=/css/units/dpcm/>dpcm</a></p> [973] => <p><a href=/css/units/dpi/>dpi</a></p> [974] => <p><a href=/css/units/dppx/>dppx</a></p> [975] => <p><a href=/css/units/dvb/>dvb</a></p> [976] => <p><a href=/css/units/dvh/>dvh</a></p> [977] => <p><a href=/css/units/dvi/>dvi</a></p> [978] => <p><a href=/css/units/dvmax/>dvmax</a></p> [979] => <p><a href=/css/units/dvmin/>dvmin</a></p> [980] => <p><a href=/css/units/dvw/>dvw</a></p> [981] => <p><a href=/css/units/em/>em</a></p> [982] => <p><a href=/css/units/ex/>ex</a></p> [983] => <p><a href=/css/units/grad/>grad</a></p> [984] => <p><a href=/css/units/ic/>ic</a></p> [985] => <p><a href=/css/units/in/>in</a></p> [986] => <p><a href=/css/units/lvb/>lvb</a></p> [987] => <p><a href=/css/units/lvh/>lvh</a></p> [988] => <p><a href=/css/units/lvi/>lvi</a></p> [989] => <p><a href=/css/units/lvmax/>lvmax</a></p> [990] => <p><a href=/css/units/lvmin/>lvmin</a></p> [991] => <p><a href=/css/units/lvw/>lvw</a></p> [992] => <p><a href=/css/units/mm/>mm</a></p> [993] => <p><a href=/css/units/ms/>ms</a></p> [994] => <p><a href=/css/units/pc/>pc</a></p> [995] => <p><a href=/css/units/pt/>pt</a></p> [996] => <p><a href=/css/units/px/>px</a></p> [997] => <p><a href=/css/units/q/>Q</a></p> [998] => <p><a href=/css/units/rad/>rad</a></p> [999] => <p><a href=/css/units/rem/>rem</a></p> [1000] => <p><a href=/css/units/s/>s</a></p> [1001] => <p><a href=/css/units/svb/>svb</a></p> [1002] => <p><a href=/css/units/svh/>svh</a></p> [1003] => <p><a href=/css/units/svi/>svi</a></p> [1004] => <p><a href=/css/units/svmax/>svmax</a></p> [1005] => <p><a href=/css/units/svmin/>svmin</a></p> [1006] => <p><a href=/css/units/svw/>svw</a></p> [1007] => <p><a href=/css/units/turn/>turn</a></p> [1008] => <p><a href=/css/units/vb/>vb</a></p> [1009] => <p><a href=/css/units/vh/>vh</a></p> [1010] => <p><a href=/css/units/vi/>vi</a></p> [1011] => <p><a href=/css/units/vmax/>vmax</a></p> [1012] => <p><a href=/css/units/vmin/>vmin</a></p> [1013] => <p><a href=/css/units/vw/>vw</a></p> [1014] => </div> [1015] => </div> [1016] => <div class=nav-h1> [1017] => <p><a id=nav-switch-js>JS</a></p> [1018] => </div> [1019] => <div id=nav-content-js> [1020] => <h2 id=overview><a href=#overview>Overview</a></h2> [1021] => <div class=margin> [1022] => <p><a href=/js/>Overview</a></p> [1023] => </div> [1024] => <h2 id=abortcontroller><a href=#abortcontroller>AbortController</a></h2> [1025] => <div class=margin> [1026] => <p><a href=/js/abortcontroller/abort/>abort</a></p> [1027] => <p><a href=/js/abortcontroller/abortcontroller/>AbortController</a></p> [1028] => <p><a href=/js/abortcontroller/signal/>signal</a></p> [1029] => </div> [1030] => <h2 id=abstractrange><a href=#abstractrange>AbstractRange</a></h2> [1031] => <div class=margin> [1032] => <p><a href=/js/abstractrange/collapsed/>collapsed</a></p> [1033] => <p><a href=/js/abstractrange/endcontainer/>endContainer</a></p> [1034] => <p><a href=/js/abstractrange/endoffset/>endOffset</a></p> [1035] => <p><a href=/js/abstractrange/startcontainer/>startContainer</a></p> [1036] => <p><a href=/js/abstractrange/startoffset/>startOffset</a></p> [1037] => </div> [1038] => <h2 id=abortsignal><a href=#abortsignal>AbortSignal</a></h2> [1039] => <div class=margin> [1040] => <p><a href=/js/abortsignal/abort/>abort</a></p> [1041] => <p><a href=/js/abortsignal/aborted/>aborted</a></p> [1042] => <p><a href=/js/abortsignal/reason/>reason</a></p> [1043] => <p><a href=/js/abortsignal/throwifaborted/>throwIfAborted</a></p> [1044] => <p><a href=/js/abortsignal/timeout/>timeout</a></p> [1045] => </div> [1046] => <h2 id=childnode><a href=#childnode>ChildNode</a></h2> [1047] => <div class=margin> [1048] => <p><a href=/js/childnode/after/>after</a></p> [1049] => <p><a href=/js/childnode/before/>before</a></p> [1050] => <p><a href=/js/childnode/remove/>remove</a></p> [1051] => <p><a href=/js/childnode/replacewith/>replaceWith</a></p> [1052] => </div> [1053] => <h2 id=comment><a href=#comment>Comment</a></h2> [1054] => <div class=margin> [1055] => <p><a href=/js/comment/comment/>Comment</a></p> [1056] => </div> [1057] => <h2 id=console><a href=#console>console</a></h2> [1058] => <div class=margin> [1059] => <p><a href=/js/console/assert/>assert</a></p> [1060] => <p><a href=/js/console/clear/>clear</a></p> [1061] => <p><a href=/js/console/count/>count</a></p> [1062] => <p><a href=/js/console/countreset/>countReset</a></p> [1063] => <p><a href=/js/console/debug/>debug</a></p> [1064] => <p><a href=/js/console/dir/>dir</a></p> [1065] => <p><a href=/js/console/dirxml/>dirxml</a></p> [1066] => <p><a href=/js/console/error/>error</a></p> [1067] => <p><a href=/js/console/group/>group</a></p> [1068] => <p><a href=/js/console/groupcollapsed/>groupCollapsed</a></p> [1069] => <p><a href=/js/console/groupend/>groupEnd</a></p> [1070] => <p><a href=/js/console/info/>info</a></p> [1071] => <p><a href=/js/console/log/>log</a></p> [1072] => <p><a href=/js/console/time/>time</a></p> [1073] => <p><a href=/js/console/timeend/>timeEnd</a></p> [1074] => <p><a href=/js/console/timelog/>timeLog</a></p> [1075] => <p><a href=/js/console/trace/>trace</a></p> [1076] => <p><a href=/js/console/warn/>warn</a></p> [1077] => </div> [1078] => <h2 id=customevent><a href=#customevent>CustomEvent</a></h2> [1079] => <div class=margin> [1080] => <p><a href=/js/customevent/customevent/>CustomEvent</a></p> [1081] => <p><a href=/js/customevent/detail/>detail</a></p> [1082] => </div> [1083] => <h2 id=declarations><a href=#declarations>Declarations</a></h2> [1084] => <div class=margin> [1085] => <p><a href=/js/declarations/const/>const</a></p> [1086] => <p><a href=/js/declarations/let/>let</a></p> [1087] => <p><a href=/js/declarations/var/>var</a></p> [1088] => </div> [1089] => <h2 id=document><a href=#document>Document</a></h2> [1090] => <div class=margin> [1091] => <p><a href=/js/document/adoptnode/>adoptNode</a></p> [1092] => <p><a href=/js/document/characterset/>characterSet</a></p> [1093] => <p><a href=/js/document/compatmode/>compatMode</a></p> [1094] => <p><a href=/js/document/contenttype/>contentType</a></p> [1095] => <p><a href=/js/document/createcdatasection/>createCDATASection</a></p> [1096] => <p><a href=/js/document/createcomment/>createComment</a></p> [1097] => <p><a href=/js/document/createdocumentfragment/>createDocumentFragment</a></p> [1098] => <p><a href=/js/document/createelement/>createElement</a></p> [1099] => <p><a href=/js/document/createelementns/>createElementNS</a></p> [1100] => <p><a href=/js/document/createprocessinginstruction/>createProcessingInstruction</a></p> [1101] => <p><a href=/js/document/createtextnode/>createTextNode</a></p> [1102] => <p><a href=/js/document/doctype/>doctype</a></p> [1103] => <p><a href=/js/document/document/>Document</a></p> [1104] => <p><a href=/js/document/documentelement/>documentElement</a></p> [1105] => <p><a href=/js/document/documenturi/>documentURI</a></p> [1106] => <p><a href=/js/document/exitpictureinpicture/>exitPictureInPicture</a></p> [1107] => <p><a href=/js/document/getelementsbyclassname/>getElementsByClassName</a></p> [1108] => <p><a href=/js/document/getelementsbytagname/>getElementsByTagName</a></p> [1109] => <p><a href=/js/document/getelementsbytagnamens/>getElementsByTagNameNS</a></p> [1110] => <p><a href=/js/document/implementation/>implementation</a></p> [1111] => <p><a href=/js/document/importnode/>importNode</a></p> [1112] => <p><a href=/js/document/pictureinpictureenabled/>pictureInPictureEnabled</a></p> [1113] => <p><a href=/js/document/url/>URL</a></p> [1114] => <p><a href=/js/document/write/>write</a></p> [1115] => <p><a href=/js/document/writeln/>writeln</a></p> [1116] => </div> [1117] => <h2 id=documentfragment><a href=#documentfragment>DocumentFragment</a></h2> [1118] => <div class=margin> [1119] => <p><a href=/js/documentfragment/documentfragment/>DocumentFragment</a></p> [1120] => </div> [1121] => <h2 id=documentorshadowroot><a href=#documentorshadowroot>DocumentOrShadowRoot</a></h2> [1122] => <div class=margin> [1123] => <p><a href=/js/documentorshadowroot/pictureinpictureelement/>pictureInPictureElement</a></p> [1124] => </div> [1125] => <h2 id=domimplementation><a href=#domimplementation>DOMImplementation</a></h2> [1126] => <div class=margin> [1127] => <p><a href=/js/domimplementation/createdocument/>createDocument</a></p> [1128] => <p><a href=/js/domimplementation/createdocumenttype/>createDocumentType</a></p> [1129] => <p><a href=/js/domimplementation/createhtmldocument/>createHTMLDocument</a></p> [1130] => </div> [1131] => <h2 id=domtokenlist><a href=#domtokenlist>DOMTokenList</a></h2> [1132] => <div class=margin> [1133] => <p><a href=/js/domtokenlist/add/>add</a></p> [1134] => <p><a href=/js/domtokenlist/contains/>contains</a></p> [1135] => <p><a href=/js/domtokenlist/item/>item</a></p> [1136] => <p><a href=/js/domtokenlist/length/>length</a></p> [1137] => <p><a href=/js/domtokenlist/remove/>remove</a></p> [1138] => <p><a href=/js/domtokenlist/replace/>replace</a></p> [1139] => <p><a href=/js/domtokenlist/supports/>supports</a></p> [1140] => <p><a href=/js/domtokenlist/toggle/>toggle</a></p> [1141] => <p><a href=/js/domtokenlist/value/>value</a></p> [1142] => </div> [1143] => <h2 id=element><a href=#element>Element</a></h2> [1144] => <div class=margin> [1145] => <p><a href=/js/element/attachshadow/>attachShadow</a></p> [1146] => <p><a href=/js/element/classlist/>classList</a></p> [1147] => <p><a href=/js/element/classname/>className</a></p> [1148] => <p><a href=/js/element/closest/>closest</a></p> [1149] => <p><a href=/js/element/getattribute/>getAttribute</a></p> [1150] => <p><a href=/js/element/getattributenames/>getAttributeNames</a></p> [1151] => <p><a href=/js/element/getattributens/>getAttributeNS</a></p> [1152] => <p><a href=/js/element/hasattribute/>hasAttribute</a></p> [1153] => <p><a href=/js/element/hasattributens/>hasAttributeNS</a></p> [1154] => <p><a href=/js/element/hasattributes/>hasAttributes</a></p> [1155] => <p><a href=/js/element/id/>id</a></p> [1156] => <p><a href=/js/element/innerhtml/>innerHTML</a></p> [1157] => <p><a href=/js/element/insertadjacenthtml/>insertAdjacentHTML</a></p> [1158] => <p><a href=/js/element/localname/>localName</a></p> [1159] => <p><a href=/js/element/matches/>matches</a></p> [1160] => <p><a href=/js/element/namespaceuri/>namespaceURI</a></p> [1161] => <p><a href=/js/element/outerhtml/>outerHTML</a></p> [1162] => <p><a href=/js/element/prefix/>prefix</a></p> [1163] => <p><a href=/js/element/removeattribute/>removeAttribute</a></p> [1164] => <p><a href=/js/element/removeattributens/>removeAttributeNS</a></p> [1165] => <p><a href=/js/element/setattribute/>setAttribute</a></p> [1166] => <p><a href=/js/element/setattributens/>setAttributeNS</a></p> [1167] => <p><a href=/js/element/shadowroot/>shadowRoot</a></p> [1168] => <p><a href=/js/element/slot/>slot</a></p> [1169] => <p><a href=/js/element/tagname/>tagName</a></p> [1170] => <p><a href=/js/element/toggleattribute/>toggleAttribute</a></p> [1171] => </div> [1172] => <h2 id=event><a href=#event>Event</a></h2> [1173] => <div class=margin> [1174] => <p><a href=/js/event/bubbles/>bubbles</a></p> [1175] => <p><a href=/js/event/cancelable/>cancelable</a></p> [1176] => <p><a href=/js/event/composed/>composed</a></p> [1177] => <p><a href=/js/event/composedpath/>composedPath</a></p> [1178] => <p><a href=/js/event/currenttarget/>currentTarget</a></p> [1179] => <p><a href=/js/event/defaultprevented/>defaultPrevented</a></p> [1180] => <p><a href=/js/event/event/>Event</a></p> [1181] => <p><a href=/js/event/eventphase/>eventPhase</a></p> [1182] => <p><a href=/js/event/istrusted/>isTrusted</a></p> [1183] => <p><a href=/js/event/preventdefault/>preventDefault</a></p> [1184] => <p><a href=/js/event/stopimmediatepropagation/>stopImmediatePropagation</a></p> [1185] => <p><a href=/js/event/stoppropagation/>stopPropagation</a></p> [1186] => <p><a href=/js/event/target/>target</a></p> [1187] => <p><a href=/js/event/timestamp/>timeStamp</a></p> [1188] => <p><a href=/js/event/type/>type</a></p> [1189] => </div> [1190] => <h2 id=eventtarget><a href=#eventtarget>EventTarget</a></h2> [1191] => <div class=margin> [1192] => <p><a href=/js/eventtarget/addeventlistener/>addEventListener</a></p> [1193] => <p><a href=/js/eventtarget/dispatchevent/>dispatchEvent</a></p> [1194] => <p><a href=/js/eventtarget/eventtarget/>EventTarget</a></p> [1195] => <p><a href=/js/eventtarget/removeeventlistener/>removeEventListener</a></p> [1196] => </div> [1197] => <h2 id=htmlcollection><a href=#htmlcollection>HTMLCollection</a></h2> [1198] => <div class=margin> [1199] => <p><a href=/js/htmlcollection/item/>item</a></p> [1200] => <p><a href=/js/htmlcollection/length/>length</a></p> [1201] => <p><a href=/js/htmlcollection/nameditem/>namedItem</a></p> [1202] => </div> [1203] => <h2 id=htmldialogelement><a href=#htmldialogelement>HTMLDialogElement</a></h2> [1204] => <div class=margin> [1205] => <p><a href=/js/htmldialogelement/close/>close</a></p> [1206] => <p><a href=/js/htmldialogelement/open/>open</a></p> [1207] => <p><a href=/js/htmldialogelement/returnvalue/>returnValue</a></p> [1208] => <p><a href=/js/htmldialogelement/show/>show</a></p> [1209] => <p><a href=/js/htmldialogelement/showmodal/>showModal</a></p> [1210] => </div> [1211] => <h2 id=htmlvideoelement><a href=#htmlvideoelement>HTMLVideoElement</a></h2> [1212] => <div class=margin> [1213] => <p><a href=/js/htmlvideoelement/autopictureinpicture/>autoPictureInPicture</a></p> [1214] => <p><a href=/js/htmlvideoelement/disablepictureinpicture/>disablePictureInPicture</a></p> [1215] => <p><a href=/js/htmlvideoelement/requestpictureinpicture/>requestPictureInPicture</a></p> [1216] => </div> [1217] => <h2 id=iterations><a href=#iterations>Iterations</a></h2> [1218] => <div class=margin> [1219] => <p><a href=/js/iterations/do-while/>do-while</a></p> [1220] => <p><a href=/js/iterations/for/>for</a></p> [1221] => <p><a href=/js/iterations/for-await-of/>for-await-of</a></p> [1222] => <p><a href=/js/iterations/for-in/>for-in</a></p> [1223] => <p><a href=/js/iterations/for-of/>for-of</a></p> [1224] => <p><a href=/js/iterations/while/>while</a></p> [1225] => </div> [1226] => <h2 id=mutationobserver><a href=#mutationobserver>MutationObserver</a></h2> [1227] => <div class=margin> [1228] => <p><a href=/js/mutationobserver/disconnect/>disconnect</a></p> [1229] => <p><a href=/js/mutationobserver/mutationobserver/>MutationObserver</a></p> [1230] => <p><a href=/js/mutationobserver/observe/>observe</a></p> [1231] => <p><a href=/js/mutationobserver/takerecords/>takeRecords</a></p> [1232] => </div> [1233] => <h2 id=mutationrecord><a href=#mutationrecord>MutationRecord</a></h2> [1234] => <div class=margin> [1235] => <p><a href=/js/mutationrecord/addednodes/>addedNodes</a></p> [1236] => <p><a href=/js/mutationrecord/attributename/>attributeName</a></p> [1237] => <p><a href=/js/mutationrecord/attributenamespace/>attributeNamespace</a></p> [1238] => <p><a href=/js/mutationrecord/nextsibling/>nextSibling</a></p> [1239] => <p><a href=/js/mutationrecord/oldvalue/>oldValue</a></p> [1240] => <p><a href=/js/mutationrecord/previoussibling/>previousSibling</a></p> [1241] => <p><a href=/js/mutationrecord/removednodes/>removedNodes</a></p> [1242] => <p><a href=/js/mutationrecord/target/>target</a></p> [1243] => <p><a href=/js/mutationrecord/type/>type</a></p> [1244] => </div> [1245] => <h2 id=node><a href=#node>Node</a></h2> [1246] => <div class=margin> [1247] => <p><a href=/js/node/baseuri/>baseURI</a></p> [1248] => <p><a href=/js/node/childnodes/>childNodes</a></p> [1249] => <p><a href=/js/node/clonenode/>cloneNode</a></p> [1250] => <p><a href=/js/node/comparedocumentposition/>compareDocumentPosition</a></p> [1251] => <p><a href=/js/node/contains/>contains</a></p> [1252] => <p><a href=/js/node/firstchild/>firstChild</a></p> [1253] => <p><a href=/js/node/getrootnode/>getRootNode</a></p> [1254] => <p><a href=/js/node/haschildnodes/>hasChildNodes</a></p> [1255] => <p><a href=/js/node/isconnected/>isConnected</a></p> [1256] => <p><a href=/js/node/isequalnode/>isEqualNode</a></p> [1257] => <p><a href=/js/node/lastchild/>lastChild</a></p> [1258] => <p><a href=/js/node/nextsibling/>nextSibling</a></p> [1259] => <p><a href=/js/node/nodename/>nodeName</a></p> [1260] => <p><a href=/js/node/nodetype/>nodeType</a></p> [1261] => <p><a href=/js/node/normalize/>normalize</a></p> [1262] => <p><a href=/js/node/ownerdocument/>ownerDocument</a></p> [1263] => <p><a href=/js/node/parentelement/>parentElement</a></p> [1264] => <p><a href=/js/node/parentnode/>parentNode</a></p> [1265] => <p><a href=/js/node/previoussibling/>previousSibling</a></p> [1266] => </div> [1267] => <h2 id=nodelist><a href=#nodelist>NodeList</a></h2> [1268] => <div class=margin> [1269] => <p><a href=/js/nodelist/item/>item</a></p> [1270] => <p><a href=/js/nodelist/length/>length</a></p> [1271] => </div> [1272] => <h2 id=nondocumenttypechildnode><a href=#nondocumenttypechildnode>NonDocumentTypeChildNode</a></h2> [1273] => <div class=margin> [1274] => <p><a href=/js/nondocumenttypechildnode/nextelementsibling/>nextElementSibling</a></p> [1275] => <p><a href=/js/nondocumenttypechildnode/previouselementsibling/>previousElementSibling</a></p> [1276] => </div> [1277] => <h2 id=nonelementparentnode><a href=#nonelementparentnode>NonElementParentNode</a></h2> [1278] => <div class=margin> [1279] => <p><a href=/js/nonelementparentnode/getelementbyid/>getElementById</a></p> [1280] => </div> [1281] => <h2 id=parentnode><a href=#parentnode>ParentNode</a></h2> [1282] => <div class=margin> [1283] => <p><a href=/js/parentnode/append/>append</a></p> [1284] => <p><a href=/js/parentnode/children/>children</a></p> [1285] => <p><a href=/js/parentnode/firstelementchild/>firstElementChild</a></p> [1286] => <p><a href=/js/parentnode/lastelementchild/>lastElementChild</a></p> [1287] => <p><a href=/js/parentnode/prepend/>prepend</a></p> [1288] => <p><a href=/js/parentnode/queryselector/>querySelector</a></p> [1289] => <p><a href=/js/parentnode/queryselectorall/>querySelectorAll</a></p> [1290] => <p><a href=/js/parentnode/replacechildren/>replaceChildren</a></p> [1291] => </div> [1292] => <h2 id=prompts><a href=#prompts>Prompts</a></h2> [1293] => <div class=margin> [1294] => <p><a href=/js/prompts/alert/>alert</a></p> [1295] => <p><a href=/js/prompts/confirm/>confirm</a></p> [1296] => <p><a href=/js/prompts/prompt/>prompt</a></p> [1297] => </div> [1298] => <h2 id=range><a href=#range>Range</a></h2> [1299] => <div class=margin> [1300] => <p><a href=/js/range/commonancestorcontainer/>commonAncestorContainer</a></p> [1301] => <p><a href=/js/range/comparepoint/>comparePoint</a></p> [1302] => <p><a href=/js/range/createcontextualfragment/>createContextualFragment</a></p> [1303] => <p><a href=/js/range/intersectsnode/>intersectsNode</a></p> [1304] => <p><a href=/js/range/range/>Range</a></p> [1305] => </div> [1306] => <h2 id=slottable><a href=#slottable>Slottable</a></h2> [1307] => <div class=margin> [1308] => <p><a href=/js/slottable/assignedslot/>assignedSlot</a></p> [1309] => </div> [1310] => <h2 id=statements><a href=#statements>Statements</a></h2> [1311] => <div class=margin> [1312] => <p><a href=/js/statements/if/>if</a></p> [1313] => <p><a href=/js/statements/switch/>switch</a></p> [1314] => <p><a href=/js/statements/try/>try</a></p> [1315] => </div> [1316] => <h2 id=staticrange><a href=#staticrange>StaticRange</a></h2> [1317] => <div class=margin> [1318] => <p><a href=/js/staticrange/staticrange/>StaticRange</a></p> [1319] => </div> [1320] => <h2 id=text><a href=#text>Text</a></h2> [1321] => <div class=margin> [1322] => <p><a href=/js/text/splittext/>splitText</a></p> [1323] => <p><a href=/js/text/text/>Text</a></p> [1324] => <p><a href=/js/text/wholetext/>wholeText</a></p> [1325] => </div> [1326] => <h2 id=other><a href=#other>Other</a></h2> [1327] => <div class=margin> [1328] => <p><a href=/js/array/>Array</a></p> [1329] => <p><a href=/js/comments/>Comments</a></p> [1330] => <p><a href=/js/date/>Date</a></p> [1331] => <p><a href=/js/enable/>Enable</a></p> [1332] => <p><a href=/js/functions/>Functions</a></p> [1333] => <p><a href=/js/infinity/>Infinity</a></p> [1334] => <p><a href=/js/print/>print</a></p> [1335] => </div> [1336] => </div> [1337] => <div class=nav-h1> [1338] => <p><a id=nav-switch-php>PHP</a></p> [1339] => </div> [1340] => <div id=nav-content-php> [1341] => <h2 id=overview><a href=#overview>Overview</a></h2> [1342] => <div class=margin> [1343] => <p><a href=/php/>Overview</a></p> [1344] => </div> [1345] => <h2 id=array><a href=#array>Array</a></h2> [1346] => <div class=margin> [1347] => <p><a href=/php/array/array/>array</a></p> [1348] => <p><a href=/php/array/array_change_key_case/>array_change_key_case</a></p> [1349] => <p><a href=/php/array/array_chunk/>array_chunk</a></p> [1350] => <p><a href=/php/array/array_column/>array_column</a></p> [1351] => <p><a href=/php/array/array_combine/>array_combine</a></p> [1352] => <p><a href=/php/array/array_count_values/>array_count_values</a></p> [1353] => <p><a href=/php/array/array_diff/>array_diff</a></p> [1354] => <p><a href=/php/array/array_diff_assoc/>array_diff_assoc</a></p> [1355] => <p><a href=/php/array/array_diff_key/>array_diff_key</a></p> [1356] => <p><a href=/php/array/array_diff_uassoc/>array_diff_uassoc</a></p> [1357] => <p><a href=/php/array/array_diff_ukey/>array_diff_ukey</a></p> [1358] => <p><a href=/php/array/array_fill/>array_fill</a></p> [1359] => <p><a href=/php/array/array_fill_keys/>array_fill_keys</a></p> [1360] => <p><a href=/php/array/array_filter/>array_filter</a></p> [1361] => <p><a href=/php/array/array_flip/>array_flip</a></p> [1362] => <p><a href=/php/array/array_intersect/>array_intersect</a></p> [1363] => <p><a href=/php/array/array_intersect_assoc/>array_intersect_assoc</a></p> [1364] => <p><a href=/php/array/array_intersect_key/>array_intersect_key</a></p> [1365] => <p><a href=/php/array/array_intersect_uassoc/>array_intersect_uassoc</a></p> [1366] => <p><a href=/php/array/array_intersect_ukey/>array_intersect_ukey</a></p> [1367] => <p><a href=/php/array/array_key_exists/>array_key_exists</a></p> [1368] => <p><a href=/php/array/array_key_first/>array_key_first</a></p> [1369] => <p><a href=/php/array/array_key_last/>array_key_last</a></p> [1370] => <p><a href=/php/array/array_keys/>array_keys</a></p> [1371] => <p><a href=/php/array/array_map/>array_map</a></p> [1372] => <p><a href=/php/array/array_merge/>array_merge</a></p> [1373] => <p><a href=/php/array/array_merge_recursive/>array_merge_recursive</a></p> [1374] => <p><a href=/php/array/array_multisort/>array_multisort</a></p> [1375] => <p><a href=/php/array/array_pad/>array_pad</a></p> [1376] => <p><a href=/php/array/array_pop/>array_pop</a></p> [1377] => <p><a href=/php/array/array_product/>array_product</a></p> [1378] => <p><a href=/php/array/array_push/>array_push</a></p> [1379] => <p><a href=/php/array/array_rand/>array_rand</a></p> [1380] => <p><a href=/php/array/array_reduce/>array_reduce</a></p> [1381] => <p><a href=/php/array/array_replace/>array_replace</a></p> [1382] => <p><a href=/php/array/array_replace_recursive/>array_replace_recursive</a></p> [1383] => <p><a href=/php/array/array_reverse/>array_reverse</a></p> [1384] => <p><a href=/php/array/array_search/>array_search</a></p> [1385] => <p><a href=/php/array/array_shift/>array_shift</a></p> [1386] => <p><a href=/php/array/array_slice/>array_slice</a></p> [1387] => <p><a href=/php/array/array_splice/>array_splice</a></p> [1388] => <p><a href=/php/array/array_sum/>array_sum</a></p> [1389] => <p><a href=/php/array/array_udiff/>array_udiff</a></p> [1390] => <p><a href=/php/array/array_udiff_assoc/>array_udiff_assoc</a></p> [1391] => <p><a href=/php/array/array_udiff_uassoc/>array_udiff_uassoc</a></p> [1392] => <p><a href=/php/array/array_uintersect/>array_uintersect</a></p> [1393] => <p><a href=/php/array/array_uintersect_assoc/>array_uintersect_assoc</a></p> [1394] => <p><a href=/php/array/array_uintersect_uassoc/>array_uintersect_uassoc</a></p> [1395] => <p><a href=/php/array/array_unique/>array_unique</a></p> [1396] => <p><a href=/php/array/array_unshift/>array_unshift</a></p> [1397] => <p><a href=/php/array/array_values/>array_values</a></p> [1398] => <p><a href=/php/array/array_walk/>array_walk</a></p> [1399] => <p><a href=/php/array/array_walk_recursive/>array_walk_recursive</a></p> [1400] => <p><a href=/php/array/arsort/>arsort</a></p> [1401] => <p><a href=/php/array/asort/>asort</a></p> [1402] => <p><a href=/php/array/compact/>compact</a></p> [1403] => <p><a href=/php/array/count/>count</a></p> [1404] => <p><a href=/php/array/current/>current</a></p> [1405] => <p><a href=/php/array/end/>end</a></p> [1406] => <p><a href=/php/array/extract/>extract</a></p> [1407] => <p><a href=/php/array/in_array/>in_array</a></p> [1408] => <p><a href=/php/array/key/>key</a></p> [1409] => <p><a href=/php/array/key_exists/>key_exists</a></p> [1410] => <p><a href=/php/array/krsort/>krsort</a></p> [1411] => <p><a href=/php/array/ksort/>ksort</a></p> [1412] => <p><a href=/php/array/list/>list</a></p> [1413] => <p><a href=/php/array/natcasesort/>natcasesort</a></p> [1414] => <p><a href=/php/array/natsort/>natsort</a></p> [1415] => <p><a href=/php/array/next/>next</a></p> [1416] => <p><a href=/php/array/pos/>pos</a></p> [1417] => <p><a href=/php/array/prev/>prev</a></p> [1418] => <p><a href=/php/array/range/>range</a></p> [1419] => <p><a href=/php/array/reset/>reset</a></p> [1420] => <p><a href=/php/array/rsort/>rsort</a></p> [1421] => <p><a href=/php/array/shuffle/>shuffle</a></p> [1422] => <p><a href=/php/array/sizeof/>sizeof</a></p> [1423] => <p><a href=/php/array/sort/>sort</a></p> [1424] => <p><a href=/php/array/uasort/>uasort</a></p> [1425] => <p><a href=/php/array/uksort/>uksort</a></p> [1426] => <p><a href=/php/array/usort/>usort</a></p> [1427] => </div> [1428] => <h2 id=calendar><a href=#calendar>Calendar</a></h2> [1429] => <div class=margin> [1430] => <p><a href=/php/calendar/cal_days_in_month/>cal_days_in_month</a></p> [1431] => <p><a href=/php/calendar/cal_from_jd/>cal_from_jd</a></p> [1432] => <p><a href=/php/calendar/cal_info/>cal_info</a></p> [1433] => <p><a href=/php/calendar/cal_to_jd/>cal_to_jd</a></p> [1434] => <p><a href=/php/calendar/easter_date/>easter_date</a></p> [1435] => <p><a href=/php/calendar/easter_days/>easter_days</a></p> [1436] => <p><a href=/php/calendar/frenchtojd/>frenchtojd</a></p> [1437] => <p><a href=/php/calendar/gregoriantojd/>gregoriantojd</a></p> [1438] => <p><a href=/php/calendar/jddayofweek/>jddayofweek</a></p> [1439] => <p><a href=/php/calendar/jdmonthname/>jdmonthname</a></p> [1440] => <p><a href=/php/calendar/jdtofrench/>jdtofrench</a></p> [1441] => <p><a href=/php/calendar/jdtogregorian/>jdtogregorian</a></p> [1442] => <p><a href=/php/calendar/jdtojewish/>jdtojewish</a></p> [1443] => <p><a href=/php/calendar/jdtojulian/>jdtojulian</a></p> [1444] => <p><a href=/php/calendar/jdtounix/>jdtounix</a></p> [1445] => <p><a href=/php/calendar/jewishtojd/>jewishtojd</a></p> [1446] => <p><a href=/php/calendar/juliantojd/>juliantojd</a></p> [1447] => <p><a href=/php/calendar/unixtojd/>unixtojd</a></p> [1448] => </div> [1449] => <h2 id=class-/-object><a href=#class-/-object>Class / Object</a></h2> [1450] => <div class=margin> [1451] => <p><a href=/php/class-object/class_alias/>class_alias</a></p> [1452] => <p><a href=/php/class-object/class_exists/>class_exists</a></p> [1453] => <p><a href=/php/class-object/get_called_class/>get_called_class</a></p> [1454] => <p><a href=/php/class-object/get_class/>get_class</a></p> [1455] => <p><a href=/php/class-object/get_class_methods/>get_class_methods</a></p> [1456] => <p><a href=/php/class-object/get_class_vars/>get_class_vars</a></p> [1457] => <p><a href=/php/class-object/get_declared_classes/>get_declared_classes</a></p> [1458] => <p><a href=/php/class-object/get_declared_interfaces/>get_declared_interfaces</a></p> [1459] => <p><a href=/php/class-object/get_declared_traits/>get_declared_traits</a></p> [1460] => <p><a href=/php/class-object/get_object_vars/>get_object_vars</a></p> [1461] => <p><a href=/php/class-object/get_parent_class/>get_parent_class</a></p> [1462] => <p><a href=/php/class-object/interface_exists/>interface_exists</a></p> [1463] => <p><a href=/php/class-object/is_a/>is_a</a></p> [1464] => <p><a href=/php/class-object/is_subclass_of/>is_subclass_of</a></p> [1465] => <p><a href=/php/class-object/method_exists/>method_exists</a></p> [1466] => <p><a href=/php/class-object/property_exists/>property_exists</a></p> [1467] => <p><a href=/php/class-object/trait_exists/>trait_exists</a></p> [1468] => </div> [1469] => <h2 id=csprng><a href=#csprng>CSPRNG</a></h2> [1470] => <div class=margin> [1471] => <p><a href=/php/csprng/random_bytes/>random_bytes</a></p> [1472] => <p><a href=/php/csprng/random_int/>random_int</a></p> [1473] => </div> [1474] => <h2 id=ctype><a href=#ctype>Ctype</a></h2> [1475] => <div class=margin> [1476] => <p><a href=/php/ctype/ctype_alnum/>ctype_alnum</a></p> [1477] => <p><a href=/php/ctype/ctype_alpha/>ctype_alpha</a></p> [1478] => <p><a href=/php/ctype/ctype_cntrl/>ctype_cntrl</a></p> [1479] => <p><a href=/php/ctype/ctype_digit/>ctype_digit</a></p> [1480] => <p><a href=/php/ctype/ctype_graph/>ctype_graph</a></p> [1481] => <p><a href=/php/ctype/ctype_lower/>ctype_lower</a></p> [1482] => <p><a href=/php/ctype/ctype_print/>ctype_print</a></p> [1483] => <p><a href=/php/ctype/ctype_punct/>ctype_punct</a></p> [1484] => <p><a href=/php/ctype/ctype_space/>ctype_space</a></p> [1485] => <p><a href=/php/ctype/ctype_upper/>ctype_upper</a></p> [1486] => <p><a href=/php/ctype/ctype_xdigit/>ctype_xdigit</a></p> [1487] => </div> [1488] => <h2 id=curl><a href=#curl>cURL</a></h2> [1489] => <div class=margin> [1490] => <p><a href=/php/curl/curl_close/>curl_close</a></p> [1491] => <p><a href=/php/curl/curl_copy_handle/>curl_copy_handle</a></p> [1492] => <p><a href=/php/curl/curl_errno/>curl_errno</a></p> [1493] => <p><a href=/php/curl/curl_error/>curl_error</a></p> [1494] => <p><a href=/php/curl/curl_escape/>curl_escape</a></p> [1495] => <p><a href=/php/curl/curl_exec/>curl_exec</a></p> [1496] => <p><a href=/php/curl/curl_getinfo/>curl_getinfo</a></p> [1497] => <p><a href=/php/curl/curl_init/>curl_init</a></p> [1498] => <p><a href=/php/curl/curl_multi_add_handle/>curl_multi_add_handle</a></p> [1499] => <p><a href=/php/curl/curl_multi_close/>curl_multi_close</a></p> [1500] => <p><a href=/php/curl/curl_multi_errno/>curl_multi_errno</a></p> [1501] => <p><a href=/php/curl/curl_multi_exec/>curl_multi_exec</a></p> [1502] => <p><a href=/php/curl/curl_multi_getcontent/>curl_multi_getcontent</a></p> [1503] => <p><a href=/php/curl/curl_multi_info_read/>curl_multi_info_read</a></p> [1504] => <p><a href=/php/curl/curl_multi_init/>curl_multi_init</a></p> [1505] => <p><a href=/php/curl/curl_multi_remove_handle/>curl_multi_remove_handle</a></p> [1506] => <p><a href=/php/curl/curl_multi_select/>curl_multi_select</a></p> [1507] => <p><a href=/php/curl/curl_multi_setopt/>curl_multi_setopt</a></p> [1508] => <p><a href=/php/curl/curl_multi_strerror/>curl_multi_strerror</a></p> [1509] => <p><a href=/php/curl/curl_pause/>curl_pause</a></p> [1510] => <p><a href=/php/curl/curl_reset/>curl_reset</a></p> [1511] => <p><a href=/php/curl/curl_setopt/>curl_setopt</a></p> [1512] => <p><a href=/php/curl/curl_setopt_array/>curl_setopt_array</a></p> [1513] => <p><a href=/php/curl/curl_share_close/>curl_share_close</a></p> [1514] => <p><a href=/php/curl/curl_share_errno/>curl_share_errno</a></p> [1515] => <p><a href=/php/curl/curl_share_init/>curl_share_init</a></p> [1516] => <p><a href=/php/curl/curl_share_setopt/>curl_share_setopt</a></p> [1517] => <p><a href=/php/curl/curl_share_strerror/>curl_share_strerror</a></p> [1518] => <p><a href=/php/curl/curl_strerror/>curl_strerror</a></p> [1519] => <p><a href=/php/curl/curl_unescape/>curl_unescape</a></p> [1520] => <p><a href=/php/curl/curl_version/>curl_version</a></p> [1521] => </div> [1522] => <h2 id=date-/-time><a href=#date-/-time>Date / Time</a></h2> [1523] => <div class=margin> [1524] => <p><a href=/php/date-time/checkdate/>checkdate</a></p> [1525] => <p><a href=/php/date-time/date/>date</a></p> [1526] => <p><a href=/php/date-time/date_add/>date_add</a></p> [1527] => <p><a href=/php/date-time/date_create/>date_create</a></p> [1528] => <p><a href=/php/date-time/date_create_from_format/>date_create_from_format</a></p> [1529] => <p><a href=/php/date-time/date_create_immutable/>date_create_immutable</a></p> [1530] => <p><a href=/php/date-time/date_create_immutable_from_format/>date_create_immutable_from_format</a></p> [1531] => <p><a href=/php/date-time/date_date_set/>date_date_set</a></p> [1532] => <p><a href=/php/date-time/date_default_timezone_get/>date_default_timezone_get</a></p> [1533] => <p><a href=/php/date-time/date_default_timezone_set/>date_default_timezone_set</a></p> [1534] => <p><a href=/php/date-time/date_diff/>date_diff</a></p> [1535] => <p><a href=/php/date-time/date_format/>date_format</a></p> [1536] => <p><a href=/php/date-time/date_get_last_errors/>date_get_last_errors</a></p> [1537] => <p><a href=/php/date-time/date_interval_create_from_date_string/>date_interval_create_from_date_string</a></p> [1538] => <p><a href=/php/date-time/date_interval_format/>date_interval_format</a></p> [1539] => <p><a href=/php/date-time/date_isodate_set/>date_isodate_set</a></p> [1540] => <p><a href=/php/date-time/date_modify/>date_modify</a></p> [1541] => <p><a href=/php/date-time/date_offset_get/>date_offset_get</a></p> [1542] => <p><a href=/php/date-time/date_parse/>date_parse</a></p> [1543] => <p><a href=/php/date-time/date_parse_from_format/>date_parse_from_format</a></p> [1544] => <p><a href=/php/date-time/date_sub/>date_sub</a></p> [1545] => <p><a href=/php/date-time/date_sun_info/>date_sun_info</a></p> [1546] => <p><a href=/php/date-time/date_sunrise/>date_sunrise</a></p> [1547] => <p><a href=/php/date-time/date_sunset/>date_sunset</a></p> [1548] => <p><a href=/php/date-time/date_time_set/>date_time_set</a></p> [1549] => <p><a href=/php/date-time/date_timestamp_get/>date_timestamp_get</a></p> [1550] => <p><a href=/php/date-time/date_timestamp_set/>date_timestamp_set</a></p> [1551] => <p><a href=/php/date-time/date_timezone_get/>date_timezone_get</a></p> [1552] => <p><a href=/php/date-time/date_timezone_set/>date_timezone_set</a></p> [1553] => <p><a href=/php/date-time/getdate/>getdate</a></p> [1554] => <p><a href=/php/date-time/gettimeofday/>gettimeofday</a></p> [1555] => <p><a href=/php/date-time/gmdate/>gmdate</a></p> [1556] => <p><a href=/php/date-time/gmmktime/>gmmktime</a></p> [1557] => <p><a href=/php/date-time/gmstrftime/>gmstrftime</a></p> [1558] => <p><a href=/php/date-time/idate/>idate</a></p> [1559] => <p><a href=/php/date-time/localtime/>localtime</a></p> [1560] => <p><a href=/php/date-time/microtime/>microtime</a></p> [1561] => <p><a href=/php/date-time/mktime/>mktime</a></p> [1562] => <p><a href=/php/date-time/strftime/>strftime</a></p> [1563] => <p><a href=/php/date-time/strptime/>strptime</a></p> [1564] => <p><a href=/php/date-time/strtotime/>strtotime</a></p> [1565] => <p><a href=/php/date-time/time/>time</a></p> [1566] => <p><a href=/php/date-time/timezone_abbreviations_list/>timezone_abbreviations_list</a></p> [1567] => <p><a href=/php/date-time/timezone_identifiers_list/>timezone_identifiers_list</a></p> [1568] => <p><a href=/php/date-time/timezone_location_get/>timezone_location_get</a></p> [1569] => <p><a href=/php/date-time/timezone_name_from_abbr/>timezone_name_from_abbr</a></p> [1570] => <p><a href=/php/date-time/timezone_name_get/>timezone_name_get</a></p> [1571] => <p><a href=/php/date-time/timezone_offset_get/>timezone_offset_get</a></p> [1572] => <p><a href=/php/date-time/timezone_open/>timezone_open</a></p> [1573] => <p><a href=/php/date-time/timezone_transitions_get/>timezone_transitions_get</a></p> [1574] => <p><a href=/php/date-time/timezone_version_get/>timezone_version_get</a></p> [1575] => </div> [1576] => <h2 id=directory><a href=#directory>Directory</a></h2> [1577] => <div class=margin> [1578] => <p><a href=/php/directory/chdir/>chdir</a></p> [1579] => <p><a href=/php/directory/chroot/>chroot</a></p> [1580] => <p><a href=/php/directory/closedir/>closedir</a></p> [1581] => <p><a href=/php/directory/dir/>dir</a></p> [1582] => <p><a href=/php/directory/getcwd/>getcwd</a></p> [1583] => <p><a href=/php/directory/opendir/>opendir</a></p> [1584] => <p><a href=/php/directory/readdir/>readdir</a></p> [1585] => <p><a href=/php/directory/rewinddir/>rewinddir</a></p> [1586] => <p><a href=/php/directory/scandir/>scandir</a></p> [1587] => </div> [1588] => <h2 id=error-handling><a href=#error-handling>Error Handling</a></h2> [1589] => <div class=margin> [1590] => <p><a href=/php/error-handling/debug_backtrace/>debug_backtrace</a></p> [1591] => <p><a href=/php/error-handling/debug_print_backtrace/>debug_print_backtrace</a></p> [1592] => <p><a href=/php/error-handling/error_clear_last/>error_clear_last</a></p> [1593] => <p><a href=/php/error-handling/error_get_last/>error_get_last</a></p> [1594] => <p><a href=/php/error-handling/error_log/>error_log</a></p> [1595] => <p><a href=/php/error-handling/error_reporting/>error_reporting</a></p> [1596] => <p><a href=/php/error-handling/restore_error_handler/>restore_error_handler</a></p> [1597] => <p><a href=/php/error-handling/restore_exception_handler/>restore_exception_handler</a></p> [1598] => <p><a href=/php/error-handling/set_error_handler/>set_error_handler</a></p> [1599] => <p><a href=/php/error-handling/set_exception_handler/>set_exception_handler</a></p> [1600] => <p><a href=/php/error-handling/trigger_error/>trigger_error</a></p> [1601] => <p><a href=/php/error-handling/user_error/>user_error</a></p> [1602] => </div> [1603] => <h2 id=filesystem><a href=#filesystem>Filesystem</a></h2> [1604] => <div class=margin> [1605] => <p><a href=/php/filesystem/basename/>basename</a></p> [1606] => <p><a href=/php/filesystem/chgrp/>chgrp</a></p> [1607] => <p><a href=/php/filesystem/chmod/>chmod</a></p> [1608] => <p><a href=/php/filesystem/chown/>chown</a></p> [1609] => <p><a href=/php/filesystem/clearstatcache/>clearstatcache</a></p> [1610] => <p><a href=/php/filesystem/copy/>copy</a></p> [1611] => <p><a href=/php/filesystem/dirname/>dirname</a></p> [1612] => <p><a href=/php/filesystem/disk_free_space/>disk_free_space</a></p> [1613] => <p><a href=/php/filesystem/disk_total_space/>disk_total_space</a></p> [1614] => <p><a href=/php/filesystem/diskfreespace/>diskfreespace</a></p> [1615] => <p><a href=/php/filesystem/fclose/>fclose</a></p> [1616] => <p><a href=/php/filesystem/feof/>feof</a></p> [1617] => <p><a href=/php/filesystem/fflush/>fflush</a></p> [1618] => <p><a href=/php/filesystem/fgetc/>fgetc</a></p> [1619] => <p><a href=/php/filesystem/fgetcsv/>fgetcsv</a></p> [1620] => <p><a href=/php/filesystem/fgets/>fgets</a></p> [1621] => <p><a href=/php/filesystem/file/>file</a></p> [1622] => <p><a href=/php/filesystem/file_exists/>file_exists</a></p> [1623] => <p><a href=/php/filesystem/file_get_contents/>file_get_contents</a></p> [1624] => <p><a href=/php/filesystem/file_put_contents/>file_put_contents</a></p> [1625] => <p><a href=/php/filesystem/fileatime/>fileatime</a></p> [1626] => <p><a href=/php/filesystem/filectime/>filectime</a></p> [1627] => <p><a href=/php/filesystem/filegroup/>filegroup</a></p> [1628] => <p><a href=/php/filesystem/fileinode/>fileinode</a></p> [1629] => <p><a href=/php/filesystem/filemtime/>filemtime</a></p> [1630] => <p><a href=/php/filesystem/fileowner/>fileowner</a></p> [1631] => <p><a href=/php/filesystem/fileperms/>fileperms</a></p> [1632] => <p><a href=/php/filesystem/filesize/>filesize</a></p> [1633] => <p><a href=/php/filesystem/filetype/>filetype</a></p> [1634] => <p><a href=/php/filesystem/flock/>flock</a></p> [1635] => <p><a href=/php/filesystem/fnmatch/>fnmatch</a></p> [1636] => <p><a href=/php/filesystem/fopen/>fopen</a></p> [1637] => <p><a href=/php/filesystem/fpassthru/>fpassthru</a></p> [1638] => <p><a href=/php/filesystem/fputcsv/>fputcsv</a></p> [1639] => <p><a href=/php/filesystem/fputs/>fputs</a></p> [1640] => <p><a href=/php/filesystem/fread/>fread</a></p> [1641] => <p><a href=/php/filesystem/fscanf/>fscanf</a></p> [1642] => <p><a href=/php/filesystem/fseek/>fseek</a></p> [1643] => <p><a href=/php/filesystem/fstat/>fstat</a></p> [1644] => <p><a href=/php/filesystem/ftell/>ftell</a></p> [1645] => <p><a href=/php/filesystem/ftruncate/>ftruncate</a></p> [1646] => <p><a href=/php/filesystem/fwrite/>fwrite</a></p> [1647] => <p><a href=/php/filesystem/glob/>glob</a></p> [1648] => <p><a href=/php/filesystem/is_dir/>is_dir</a></p> [1649] => <p><a href=/php/filesystem/is_executable/>is_executable</a></p> [1650] => <p><a href=/php/filesystem/is_file/>is_file</a></p> [1651] => <p><a href=/php/filesystem/is_link/>is_link</a></p> [1652] => <p><a href=/php/filesystem/is_readable/>is_readable</a></p> [1653] => <p><a href=/php/filesystem/is_uploaded_file/>is_uploaded_file</a></p> [1654] => <p><a href=/php/filesystem/is_writable/>is_writable</a></p> [1655] => <p><a href=/php/filesystem/is_writeable/>is_writeable</a></p> [1656] => <p><a href=/php/filesystem/lchgrp/>lchgrp</a></p> [1657] => <p><a href=/php/filesystem/lchown/>lchown</a></p> [1658] => <p><a href=/php/filesystem/link/>link</a></p> [1659] => <p><a href=/php/filesystem/linkinfo/>linkinfo</a></p> [1660] => <p><a href=/php/filesystem/lstat/>lstat</a></p> [1661] => <p><a href=/php/filesystem/mkdir/>mkdir</a></p> [1662] => <p><a href=/php/filesystem/move_uploaded_file/>move_uploaded_file</a></p> [1663] => <p><a href=/php/filesystem/pathinfo/>pathinfo</a></p> [1664] => <p><a href=/php/filesystem/pclose/>pclose</a></p> [1665] => <p><a href=/php/filesystem/popen/>popen</a></p> [1666] => <p><a href=/php/filesystem/readfile/>readfile</a></p> [1667] => <p><a href=/php/filesystem/readlink/>readlink</a></p> [1668] => <p><a href=/php/filesystem/realpath/>realpath</a></p> [1669] => <p><a href=/php/filesystem/realpath_cache_get/>realpath_cache_get</a></p> [1670] => <p><a href=/php/filesystem/realpath_cache_size/>realpath_cache_size</a></p> [1671] => <p><a href=/php/filesystem/rename/>rename</a></p> [1672] => <p><a href=/php/filesystem/rewind/>rewind</a></p> [1673] => <p><a href=/php/filesystem/rmdir/>rmdir</a></p> [1674] => <p><a href=/php/filesystem/set_file_buffer/>set_file_buffer</a></p> [1675] => <p><a href=/php/filesystem/stat/>stat</a></p> [1676] => <p><a href=/php/filesystem/symlink/>symlink</a></p> [1677] => <p><a href=/php/filesystem/tempnam/>tempnam</a></p> [1678] => <p><a href=/php/filesystem/tmpfile/>tmpfile</a></p> [1679] => <p><a href=/php/filesystem/touch/>touch</a></p> [1680] => <p><a href=/php/filesystem/umask/>umask</a></p> [1681] => <p><a href=/php/filesystem/unlink/>unlink</a></p> [1682] => </div> [1683] => <h2 id=filter><a href=#filter>Filter</a></h2> [1684] => <div class=margin> [1685] => <p><a href=/php/filter/filter_has_var/>filter_has_var</a></p> [1686] => <p><a href=/php/filter/filter_id/>filter_id</a></p> [1687] => <p><a href=/php/filter/filter_input/>filter_input</a></p> [1688] => <p><a href=/php/filter/filter_input_array/>filter_input_array</a></p> [1689] => <p><a href=/php/filter/filter_list/>filter_list</a></p> [1690] => <p><a href=/php/filter/filter_var/>filter_var</a></p> [1691] => <p><a href=/php/filter/filter_var_array/>filter_var_array</a></p> [1692] => </div> [1693] => <h2 id=function-handling><a href=#function-handling>Function Handling</a></h2> [1694] => <div class=margin> [1695] => <p><a href=/php/function-handling/call_user_func/>call_user_func</a></p> [1696] => <p><a href=/php/function-handling/call_user_func_array/>call_user_func_array</a></p> [1697] => <p><a href=/php/function-handling/forward_static_call/>forward_static_call</a></p> [1698] => <p><a href=/php/function-handling/forward_static_call_array/>forward_static_call_array</a></p> [1699] => <p><a href=/php/function-handling/func_get_arg/>func_get_arg</a></p> [1700] => <p><a href=/php/function-handling/func_get_args/>func_get_args</a></p> [1701] => <p><a href=/php/function-handling/func_num_args/>func_num_args</a></p> [1702] => <p><a href=/php/function-handling/function_exists/>function_exists</a></p> [1703] => <p><a href=/php/function-handling/get_defined_functions/>get_defined_functions</a></p> [1704] => <p><a href=/php/function-handling/register_shutdown_function/>register_shutdown_function</a></p> [1705] => <p><a href=/php/function-handling/register_tick_function/>register_tick_function</a></p> [1706] => <p><a href=/php/function-handling/unregister_tick_function/>unregister_tick_function</a></p> [1707] => </div> [1708] => <h2 id=mail><a href=#mail>Mail</a></h2> [1709] => <div class=margin> [1710] => <p><a href=/php/mail/mail/>mail</a></p> [1711] => </div> [1712] => <h2 id=math><a href=#math>Math</a></h2> [1713] => <div class=margin> [1714] => <p><a href=/php/math/abs/>abs</a></p> [1715] => <p><a href=/php/math/acos/>acos</a></p> [1716] => <p><a href=/php/math/acosh/>acosh</a></p> [1717] => <p><a href=/php/math/asin/>asin</a></p> [1718] => <p><a href=/php/math/asinh/>asinh</a></p> [1719] => <p><a href=/php/math/atan/>atan</a></p> [1720] => <p><a href=/php/math/atan2/>atan2</a></p> [1721] => <p><a href=/php/math/atanh/>atanh</a></p> [1722] => <p><a href=/php/math/base_convert/>base_convert</a></p> [1723] => <p><a href=/php/math/bindec/>bindec</a></p> [1724] => <p><a href=/php/math/ceil/>ceil</a></p> [1725] => <p><a href=/php/math/cos/>cos</a></p> [1726] => <p><a href=/php/math/cosh/>cosh</a></p> [1727] => <p><a href=/php/math/decbin/>decbin</a></p> [1728] => <p><a href=/php/math/dechex/>dechex</a></p> [1729] => <p><a href=/php/math/decoct/>decoct</a></p> [1730] => <p><a href=/php/math/deg2rad/>deg2rad</a></p> [1731] => <p><a href=/php/math/exp/>exp</a></p> [1732] => <p><a href=/php/math/expm1/>expm1</a></p> [1733] => <p><a href=/php/math/fdiv/>fdiv</a></p> [1734] => <p><a href=/php/math/floor/>floor</a></p> [1735] => <p><a href=/php/math/fmod/>fmod</a></p> [1736] => <p><a href=/php/math/hexdec/>hexdec</a></p> [1737] => <p><a href=/php/math/hypot/>hypot</a></p> [1738] => <p><a href=/php/math/intdiv/>intdiv</a></p> [1739] => <p><a href=/php/math/is_finite/>is_finite</a></p> [1740] => <p><a href=/php/math/is_infinite/>is_infinite</a></p> [1741] => <p><a href=/php/math/is_nan/>is_nan</a></p> [1742] => <p><a href=/php/math/log/>log</a></p> [1743] => <p><a href=/php/math/log10/>log10</a></p> [1744] => <p><a href=/php/math/log1p/>log1p</a></p> [1745] => <p><a href=/php/math/max/>max</a></p> [1746] => <p><a href=/php/math/min/>min</a></p> [1747] => <p><a href=/php/math/octdec/>octdec</a></p> [1748] => <p><a href=/php/math/pi/>pi</a></p> [1749] => <p><a href=/php/math/pow/>pow</a></p> [1750] => <p><a href=/php/math/rad2deg/>rad2deg</a></p> [1751] => <p><a href=/php/math/round/>round</a></p> [1752] => <p><a href=/php/math/sin/>sin</a></p> [1753] => <p><a href=/php/math/sinh/>sinh</a></p> [1754] => <p><a href=/php/math/sqrt/>sqrt</a></p> [1755] => <p><a href=/php/math/tan/>tan</a></p> [1756] => <p><a href=/php/math/tanh/>tanh</a></p> [1757] => </div> [1758] => <h2 id=miscellaneous><a href=#miscellaneous>Miscellaneous</a></h2> [1759] => <div class=margin> [1760] => <p><a href=/php/miscellaneous/__halt_compiler/>__halt_compiler</a></p> [1761] => <p><a href=/php/miscellaneous/connection_aborted/>connection_aborted</a></p> [1762] => <p><a href=/php/miscellaneous/connection_status/>connection_status</a></p> [1763] => <p><a href=/php/miscellaneous/constant/>constant</a></p> [1764] => <p><a href=/php/miscellaneous/define/>define</a></p> [1765] => <p><a href=/php/miscellaneous/defined/>defined</a></p> [1766] => <p><a href=/php/miscellaneous/die/>die</a></p> [1767] => <p><a href=/php/miscellaneous/eval/>eval</a></p> [1768] => <p><a href=/php/miscellaneous/exit/>exit</a></p> [1769] => <p><a href=/php/miscellaneous/highlight_file/>highlight_file</a></p> [1770] => <p><a href=/php/miscellaneous/highlight_string/>highlight_string</a></p> [1771] => <p><a href=/php/miscellaneous/hrtime/>hrtime</a></p> [1772] => <p><a href=/php/miscellaneous/ignore_user_abort/>ignore_user_abort</a></p> [1773] => <p><a href=/php/miscellaneous/pack/>pack</a></p> [1774] => <p><a href=/php/miscellaneous/php_strip_whitespace/>php_strip_whitespace</a></p> [1775] => <p><a href=/php/miscellaneous/show_source/>show_source</a></p> [1776] => <p><a href=/php/miscellaneous/sleep/>sleep</a></p> [1777] => <p><a href=/php/miscellaneous/sys_getloadavg/>sys_getloadavg</a></p> [1778] => <p><a href=/php/miscellaneous/time_nanosleep/>time_nanosleep</a></p> [1779] => <p><a href=/php/miscellaneous/time_sleep_until/>time_sleep_until</a></p> [1780] => <p><a href=/php/miscellaneous/uniqid/>uniqid</a></p> [1781] => <p><a href=/php/miscellaneous/unpack/>unpack</a></p> [1782] => <p><a href=/php/miscellaneous/usleep/>usleep</a></p> [1783] => </div> [1784] => <h2 id=network><a href=#network>Network</a></h2> [1785] => <div class=margin> [1786] => <p><a href=/php/network/checkdnsrr/>checkdnsrr</a></p> [1787] => <p><a href=/php/network/closelog/>closelog</a></p> [1788] => <p><a href=/php/network/dns_check_record/>dns_check_record</a></p> [1789] => <p><a href=/php/network/dns_get_mx/>dns_get_mx</a></p> [1790] => <p><a href=/php/network/dns_get_record/>dns_get_record</a></p> [1791] => <p><a href=/php/network/fsockopen/>fsockopen</a></p> [1792] => <p><a href=/php/network/gethostbyaddr/>gethostbyaddr</a></p> [1793] => <p><a href=/php/network/gethostbyname/>gethostbyname</a></p> [1794] => <p><a href=/php/network/gethostbynamel/>gethostbynamel</a></p> [1795] => <p><a href=/php/network/gethostname/>gethostname</a></p> [1796] => <p><a href=/php/network/getmxrr/>getmxrr</a></p> [1797] => <p><a href=/php/network/getprotobyname/>getprotobyname</a></p> [1798] => <p><a href=/php/network/getprotobynumber/>getprotobynumber</a></p> [1799] => <p><a href=/php/network/getservbyname/>getservbyname</a></p> [1800] => <p><a href=/php/network/getservbyport/>getservbyport</a></p> [1801] => <p><a href=/php/network/header/>header</a></p> [1802] => <p><a href=/php/network/header_register_callback/>header_register_callback</a></p> [1803] => <p><a href=/php/network/header_remove/>header_remove</a></p> [1804] => <p><a href=/php/network/headers_list/>headers_list</a></p> [1805] => <p><a href=/php/network/headers_sent/>headers_sent</a></p> [1806] => <p><a href=/php/network/http_response_code/>http_response_code</a></p> [1807] => <p><a href=/php/network/inet_ntop/>inet_ntop</a></p> [1808] => <p><a href=/php/network/inet_pton/>inet_pton</a></p> [1809] => <p><a href=/php/network/ip2long/>ip2long</a></p> [1810] => <p><a href=/php/network/long2ip/>long2ip</a></p> [1811] => <p><a href=/php/network/openlog/>openlog</a></p> [1812] => <p><a href=/php/network/pfsockopen/>pfsockopen</a></p> [1813] => <p><a href=/php/network/setcookie/>setcookie</a></p> [1814] => <p><a href=/php/network/setrawcookie/>setrawcookie</a></p> [1815] => <p><a href=/php/network/socket_get_status/>socket_get_status</a></p> [1816] => <p><a href=/php/network/socket_set_blocking/>socket_set_blocking</a></p> [1817] => <p><a href=/php/network/socket_set_timeout/>socket_set_timeout</a></p> [1818] => <p><a href=/php/network/syslog/>syslog</a></p> [1819] => </div> [1820] => <h2 id=options-/-information><a href=#options-/-information>Options / Information</a></h2> [1821] => <div class=margin> [1822] => <p><a href=/php/options-information/assert/>assert</a></p> [1823] => <p><a href=/php/options-information/assert_options/>assert_options</a></p> [1824] => <p><a href=/php/options-information/cli_get_process_title/>cli_get_process_title</a></p> [1825] => <p><a href=/php/options-information/cli_set_process_title/>cli_set_process_title</a></p> [1826] => <p><a href=/php/options-information/dl/>dl</a></p> [1827] => <p><a href=/php/options-information/extension_loaded/>extension_loaded</a></p> [1828] => <p><a href=/php/options-information/gc_collect_cycles/>gc_collect_cycles</a></p> [1829] => <p><a href=/php/options-information/gc_disable/>gc_disable</a></p> [1830] => <p><a href=/php/options-information/gc_enable/>gc_enable</a></p> [1831] => <p><a href=/php/options-information/gc_enabled/>gc_enabled</a></p> [1832] => <p><a href=/php/options-information/gc_mem_caches/>gc_mem_caches</a></p> [1833] => <p><a href=/php/options-information/gc_status/>gc_status</a></p> [1834] => <p><a href=/php/options-information/get_cfg_var/>get_cfg_var</a></p> [1835] => <p><a href=/php/options-information/get_current_user/>get_current_user</a></p> [1836] => <p><a href=/php/options-information/get_defined_constants/>get_defined_constants</a></p> [1837] => <p><a href=/php/options-information/get_extension_funcs/>get_extension_funcs</a></p> [1838] => <p><a href=/php/options-information/get_include_path/>get_include_path</a></p> [1839] => <p><a href=/php/options-information/get_included_files/>get_included_files</a></p> [1840] => <p><a href=/php/options-information/get_loaded_extensions/>get_loaded_extensions</a></p> [1841] => <p><a href=/php/options-information/get_required_files/>get_required_files</a></p> [1842] => <p><a href=/php/options-information/get_resources/>get_resources</a></p> [1843] => <p><a href=/php/options-information/getenv/>getenv</a></p> [1844] => <p><a href=/php/options-information/getlastmod/>getlastmod</a></p> [1845] => <p><a href=/php/options-information/getmygid/>getmygid</a></p> [1846] => <p><a href=/php/options-information/getmyinode/>getmyinode</a></p> [1847] => <p><a href=/php/options-information/getmypid/>getmypid</a></p> [1848] => <p><a href=/php/options-information/getmyuid/>getmyuid</a></p> [1849] => <p><a href=/php/options-information/getopt/>getopt</a></p> [1850] => <p><a href=/php/options-information/getrusage/>getrusage</a></p> [1851] => <p><a href=/php/options-information/ini_alter/>ini_alter</a></p> [1852] => <p><a href=/php/options-information/ini_get/>ini_get</a></p> [1853] => <p><a href=/php/options-information/ini_get_all/>ini_get_all</a></p> [1854] => <p><a href=/php/options-information/ini_restore/>ini_restore</a></p> [1855] => <p><a href=/php/options-information/ini_set/>ini_set</a></p> [1856] => <p><a href=/php/options-information/memory_get_peak_usage/>memory_get_peak_usage</a></p> [1857] => <p><a href=/php/options-information/memory_get_usage/>memory_get_usage</a></p> [1858] => <p><a href=/php/options-information/memory_reset_peak_usage/>memory_reset_peak_usage</a></p> [1859] => <p><a href=/php/options-information/php_ini_loaded_file/>php_ini_loaded_file</a></p> [1860] => <p><a href=/php/options-information/php_ini_scanned_files/>php_ini_scanned_files</a></p> [1861] => <p><a href=/php/options-information/php_sapi_name/>php_sapi_name</a></p> [1862] => <p><a href=/php/options-information/php_uname/>php_uname</a></p> [1863] => <p><a href=/php/options-information/phpcredits/>phpcredits</a></p> [1864] => <p><a href=/php/options-information/phpinfo/>phpinfo</a></p> [1865] => <p><a href=/php/options-information/phpversion/>phpversion</a></p> [1866] => <p><a href=/php/options-information/putenv/>putenv</a></p> [1867] => <p><a href=/php/options-information/set_include_path/>set_include_path</a></p> [1868] => <p><a href=/php/options-information/set_time_limit/>set_time_limit</a></p> [1869] => <p><a href=/php/options-information/sys_get_temp_dir/>sys_get_temp_dir</a></p> [1870] => <p><a href=/php/options-information/version_compare/>version_compare</a></p> [1871] => <p><a href=/php/options-information/zend_thread_id/>zend_thread_id</a></p> [1872] => <p><a href=/php/options-information/zend_version/>zend_version</a></p> [1873] => </div> [1874] => <h2 id=pcre><a href=#pcre>PCRE</a></h2> [1875] => <div class=margin> [1876] => <p><a href=/php/pcre/preg_filter/>preg_filter</a></p> [1877] => <p><a href=/php/pcre/preg_grep/>preg_grep</a></p> [1878] => <p><a href=/php/pcre/preg_last_error/>preg_last_error</a></p> [1879] => <p><a href=/php/pcre/preg_match/>preg_match</a></p> [1880] => <p><a href=/php/pcre/preg_match_all/>preg_match_all</a></p> [1881] => <p><a href=/php/pcre/preg_quote/>preg_quote</a></p> [1882] => <p><a href=/php/pcre/preg_replace/>preg_replace</a></p> [1883] => <p><a href=/php/pcre/preg_replace_callback/>preg_replace_callback</a></p> [1884] => <p><a href=/php/pcre/preg_replace_callback_array/>preg_replace_callback_array</a></p> [1885] => <p><a href=/php/pcre/preg_split/>preg_split</a></p> [1886] => </div> [1887] => <h2 id=random><a href=#random>Random</a></h2> [1888] => <div class=margin> [1889] => <p><a href=/php/random/getrandmax/>getrandmax</a></p> [1890] => <p><a href=/php/random/lcg_value/>lcg_value</a></p> [1891] => <p><a href=/php/random/mt_getrandmax/>mt_getrandmax</a></p> [1892] => <p><a href=/php/random/mt_rand/>mt_rand</a></p> [1893] => <p><a href=/php/random/mt_srand/>mt_srand</a></p> [1894] => <p><a href=/php/random/rand/>rand</a></p> [1895] => <p><a href=/php/random/srand/>srand</a></p> [1896] => </div> [1897] => <h2 id=readline><a href=#readline>Readline</a></h2> [1898] => <div class=margin> [1899] => <p><a href=/php/readline/readline/>readline</a></p> [1900] => <p><a href=/php/readline/readline_add_history/>readline_add_history</a></p> [1901] => <p><a href=/php/readline/readline_callback_handler_install/>readline_callback_handler_install</a></p> [1902] => <p><a href=/php/readline/readline_callback_handler_remove/>readline_callback_handler_remove</a></p> [1903] => <p><a href=/php/readline/readline_callback_read_char/>readline_callback_read_char</a></p> [1904] => <p><a href=/php/readline/readline_clear_history/>readline_clear_history</a></p> [1905] => <p><a href=/php/readline/readline_completion_function/>readline_completion_function</a></p> [1906] => <p><a href=/php/readline/readline_info/>readline_info</a></p> [1907] => <p><a href=/php/readline/readline_list_history/>readline_list_history</a></p> [1908] => <p><a href=/php/readline/readline_on_new_line/>readline_on_new_line</a></p> [1909] => <p><a href=/php/readline/readline_read_history/>readline_read_history</a></p> [1910] => <p><a href=/php/readline/readline_redisplay/>readline_redisplay</a></p> [1911] => <p><a href=/php/readline/readline_write_history/>readline_write_history</a></p> [1912] => </div> [1913] => <h2 id=stream><a href=#stream>Stream</a></h2> [1914] => <div class=margin> [1915] => <p><a href=/php/stream/stream_bucket_append/>stream_bucket_append</a></p> [1916] => <p><a href=/php/stream/stream_bucket_make_writeable/>stream_bucket_make_writeable</a></p> [1917] => <p><a href=/php/stream/stream_bucket_new/>stream_bucket_new</a></p> [1918] => <p><a href=/php/stream/stream_bucket_prepend/>stream_bucket_prepend</a></p> [1919] => <p><a href=/php/stream/stream_context_create/>stream_context_create</a></p> [1920] => <p><a href=/php/stream/stream_context_get_default/>stream_context_get_default</a></p> [1921] => <p><a href=/php/stream/stream_context_get_options/>stream_context_get_options</a></p> [1922] => <p><a href=/php/stream/stream_context_get_params/>stream_context_get_params</a></p> [1923] => <p><a href=/php/stream/stream_context_set_default/>stream_context_set_default</a></p> [1924] => <p><a href=/php/stream/stream_context_set_option/>stream_context_set_option</a></p> [1925] => <p><a href=/php/stream/stream_context_set_params/>stream_context_set_params</a></p> [1926] => <p><a href=/php/stream/stream_copy_to_stream/>stream_copy_to_stream</a></p> [1927] => <p><a href=/php/stream/stream_filter_append/>stream_filter_append</a></p> [1928] => <p><a href=/php/stream/stream_filter_prepend/>stream_filter_prepend</a></p> [1929] => <p><a href=/php/stream/stream_filter_register/>stream_filter_register</a></p> [1930] => <p><a href=/php/stream/stream_filter_remove/>stream_filter_remove</a></p> [1931] => <p><a href=/php/stream/stream_get_contents/>stream_get_contents</a></p> [1932] => <p><a href=/php/stream/stream_get_filters/>stream_get_filters</a></p> [1933] => <p><a href=/php/stream/stream_get_line/>stream_get_line</a></p> [1934] => <p><a href=/php/stream/stream_get_meta_data/>stream_get_meta_data</a></p> [1935] => <p><a href=/php/stream/stream_get_transports/>stream_get_transports</a></p> [1936] => <p><a href=/php/stream/stream_get_wrappers/>stream_get_wrappers</a></p> [1937] => <p><a href=/php/stream/stream_is_local/>stream_is_local</a></p> [1938] => <p><a href=/php/stream/stream_isatty/>stream_isatty</a></p> [1939] => <p><a href=/php/stream/stream_notification_callback/>stream_notification_callback</a></p> [1940] => <p><a href=/php/stream/stream_register_wrapper/>stream_register_wrapper</a></p> [1941] => <p><a href=/php/stream/stream_resolve_include_path/>stream_resolve_include_path</a></p> [1942] => <p><a href=/php/stream/stream_select/>stream_select</a></p> [1943] => <p><a href=/php/stream/stream_set_blocking/>stream_set_blocking</a></p> [1944] => <p><a href=/php/stream/stream_set_chunk_size/>stream_set_chunk_size</a></p> [1945] => <p><a href=/php/stream/stream_set_read_buffer/>stream_set_read_buffer</a></p> [1946] => <p><a href=/php/stream/stream_set_timeout/>stream_set_timeout</a></p> [1947] => <p><a href=/php/stream/stream_set_write_buffer/>stream_set_write_buffer</a></p> [1948] => <p><a href=/php/stream/stream_socket_accept/>stream_socket_accept</a></p> [1949] => <p><a href=/php/stream/stream_socket_client/>stream_socket_client</a></p> [1950] => <p><a href=/php/stream/stream_socket_enable_crypto/>stream_socket_enable_crypto</a></p> [1951] => <p><a href=/php/stream/stream_socket_get_name/>stream_socket_get_name</a></p> [1952] => <p><a href=/php/stream/stream_socket_pair/>stream_socket_pair</a></p> [1953] => <p><a href=/php/stream/stream_socket_recvfrom/>stream_socket_recvfrom</a></p> [1954] => <p><a href=/php/stream/stream_socket_sendto/>stream_socket_sendto</a></p> [1955] => <p><a href=/php/stream/stream_socket_server/>stream_socket_server</a></p> [1956] => <p><a href=/php/stream/stream_socket_shutdown/>stream_socket_shutdown</a></p> [1957] => <p><a href=/php/stream/stream_supports_lock/>stream_supports_lock</a></p> [1958] => <p><a href=/php/stream/stream_wrapper_register/>stream_wrapper_register</a></p> [1959] => <p><a href=/php/stream/stream_wrapper_restore/>stream_wrapper_restore</a></p> [1960] => <p><a href=/php/stream/stream_wrapper_unregister/>stream_wrapper_unregister</a></p> [1961] => </div> [1962] => <h2 id=string><a href=#string>String</a></h2> [1963] => <div class=margin> [1964] => <p><a href=/php/string/addcslashes/>addcslashes</a></p> [1965] => <p><a href=/php/string/addslashes/>addslashes</a></p> [1966] => <p><a href=/php/string/bin2hex/>bin2hex</a></p> [1967] => <p><a href=/php/string/chop/>chop</a></p> [1968] => <p><a href=/php/string/chr/>chr</a></p> [1969] => <p><a href=/php/string/chunk_split/>chunk_split</a></p> [1970] => <p><a href=/php/string/convert_uudecode/>convert_uudecode</a></p> [1971] => <p><a href=/php/string/convert_uuencode/>convert_uuencode</a></p> [1972] => <p><a href=/php/string/count_chars/>count_chars</a></p> [1973] => <p><a href=/php/string/crc32/>crc32</a></p> [1974] => <p><a href=/php/string/crypt/>crypt</a></p> [1975] => <p><a href=/php/string/echo/>echo</a></p> [1976] => <p><a href=/php/string/explode/>explode</a></p> [1977] => <p><a href=/php/string/fprintf/>fprintf</a></p> [1978] => <p><a href=/php/string/get_html_translation_table/>get_html_translation_table</a></p> [1979] => <p><a href=/php/string/hebrev/>hebrev</a></p> [1980] => <p><a href=/php/string/hebrevc/>hebrevc</a></p> [1981] => <p><a href=/php/string/hex2bin/>hex2bin</a></p> [1982] => <p><a href=/php/string/html_entity_decode/>html_entity_decode</a></p> [1983] => <p><a href=/php/string/htmlentities/>htmlentities</a></p> [1984] => <p><a href=/php/string/htmlspecialchars/>htmlspecialchars</a></p> [1985] => <p><a href=/php/string/htmlspecialchars_decode/>htmlspecialchars_decode</a></p> [1986] => <p><a href=/php/string/implode/>implode</a></p> [1987] => <p><a href=/php/string/join/>join</a></p> [1988] => <p><a href=/php/string/lcfirst/>lcfirst</a></p> [1989] => <p><a href=/php/string/levenshtein/>levenshtein</a></p> [1990] => <p><a href=/php/string/localeconv/>localeconv</a></p> [1991] => <p><a href=/php/string/ltrim/>ltrim</a></p> [1992] => <p><a href=/php/string/md5/>md5</a></p> [1993] => <p><a href=/php/string/md5_file/>md5_file</a></p> [1994] => <p><a href=/php/string/metaphone/>metaphone</a></p> [1995] => <p><a href=/php/string/nl_langinfo/>nl_langinfo</a></p> [1996] => <p><a href=/php/string/nl2br/>nl2br</a></p> [1997] => <p><a href=/php/string/number_format/>number_format</a></p> [1998] => <p><a href=/php/string/ord/>ord</a></p> [1999] => <p><a href=/php/string/parse_str/>parse_str</a></p> [2000] => <p><a href=/php/string/print/>print</a></p> [2001] => <p><a href=/php/string/printf/>printf</a></p> [2002] => <p><a href=/php/string/quoted_printable_decode/>quoted_printable_decode</a></p> [2003] => <p><a href=/php/string/quoted_printable_encode/>quoted_printable_encode</a></p> [2004] => <p><a href=/php/string/quotemeta/>quotemeta</a></p> [2005] => <p><a href=/php/string/rtrim/>rtrim</a></p> [2006] => <p><a href=/php/string/setlocale/>setlocale</a></p> [2007] => <p><a href=/php/string/sha1/>sha1</a></p> [2008] => <p><a href=/php/string/sha1_file/>sha1_file</a></p> [2009] => <p><a href=/php/string/similar_text/>similar_text</a></p> [2010] => <p><a href=/php/string/soundex/>soundex</a></p> [2011] => <p><a href=/php/string/sprintf/>sprintf</a></p> [2012] => <p><a href=/php/string/sscanf/>sscanf</a></p> [2013] => <p><a href=/php/string/str_contains/>str_contains</a></p> [2014] => <p><a href=/php/string/str_ends_with/>str_ends_with</a></p> [2015] => <p><a href=/php/string/str_getcsv/>str_getcsv</a></p> [2016] => <p><a href=/php/string/str_ireplace/>str_ireplace</a></p> [2017] => <p><a href=/php/string/str_pad/>str_pad</a></p> [2018] => <p><a href=/php/string/str_repeat/>str_repeat</a></p> [2019] => <p><a href=/php/string/str_replace/>str_replace</a></p> [2020] => <p><a href=/php/string/str_rot13/>str_rot13</a></p> [2021] => <p><a href=/php/string/str_shuffle/>str_shuffle</a></p> [2022] => <p><a href=/php/string/str_split/>str_split</a></p> [2023] => <p><a href=/php/string/str_starts_with/>str_starts_with</a></p> [2024] => <p><a href=/php/string/str_word_count/>str_word_count</a></p> [2025] => <p><a href=/php/string/strcasecmp/>strcasecmp</a></p> [2026] => <p><a href=/php/string/strchr/>strchr</a></p> [2027] => <p><a href=/php/string/strcmp/>strcmp</a></p> [2028] => <p><a href=/php/string/strcoll/>strcoll</a></p> [2029] => <p><a href=/php/string/strcspn/>strcspn</a></p> [2030] => <p><a href=/php/string/strip_tags/>strip_tags</a></p> [2031] => <p><a href=/php/string/stripcslashes/>stripcslashes</a></p> [2032] => <p><a href=/php/string/stripos/>stripos</a></p> [2033] => <p><a href=/php/string/stripslashes/>stripslashes</a></p> [2034] => <p><a href=/php/string/stristr/>stristr</a></p> [2035] => <p><a href=/php/string/strlen/>strlen</a></p> [2036] => <p><a href=/php/string/strnatcasecmp/>strnatcasecmp</a></p> [2037] => <p><a href=/php/string/strnatcmp/>strnatcmp</a></p> [2038] => <p><a href=/php/string/strncasecmp/>strncasecmp</a></p> [2039] => <p><a href=/php/string/strncmp/>strncmp</a></p> [2040] => <p><a href=/php/string/strpbrk/>strpbrk</a></p> [2041] => <p><a href=/php/string/strpos/>strpos</a></p> [2042] => <p><a href=/php/string/strrchr/>strrchr</a></p> [2043] => <p><a href=/php/string/strrev/>strrev</a></p> [2044] => <p><a href=/php/string/strripos/>strripos</a></p> [2045] => <p><a href=/php/string/strrpos/>strrpos</a></p> [2046] => <p><a href=/php/string/strspn/>strspn</a></p> [2047] => <p><a href=/php/string/strstr/>strstr</a></p> [2048] => <p><a href=/php/string/strtok/>strtok</a></p> [2049] => <p><a href=/php/string/strtolower/>strtolower</a></p> [2050] => <p><a href=/php/string/strtoupper/>strtoupper</a></p> [2051] => <p><a href=/php/string/strtr/>strtr</a></p> [2052] => <p><a href=/php/string/substr/>substr</a></p> [2053] => <p><a href=/php/string/substr_compare/>substr_compare</a></p> [2054] => <p><a href=/php/string/substr_count/>substr_count</a></p> [2055] => <p><a href=/php/string/substr_replace/>substr_replace</a></p> [2056] => <p><a href=/php/string/trim/>trim</a></p> [2057] => <p><a href=/php/string/ucfirst/>ucfirst</a></p> [2058] => <p><a href=/php/string/ucwords/>ucwords</a></p> [2059] => <p><a href=/php/string/vfprintf/>vfprintf</a></p> [2060] => <p><a href=/php/string/vprintf/>vprintf</a></p> [2061] => <p><a href=/php/string/vsprintf/>vsprintf</a></p> [2062] => <p><a href=/php/string/wordwrap/>wordwrap</a></p> [2063] => </div> [2064] => <h2 id=tokenizer><a href=#tokenizer>Tokenizer</a></h2> [2065] => <div class=margin> [2066] => <p><a href=/php/tokenizer/token_get_all/>token_get_all</a></p> [2067] => <p><a href=/php/tokenizer/token_name/>token_name</a></p> [2068] => </div> [2069] => <h2 id=url><a href=#url>URL</a></h2> [2070] => <div class=margin> [2071] => <p><a href=/php/url/base64_decode/>base64_decode</a></p> [2072] => <p><a href=/php/url/base64_encode/>base64_encode</a></p> [2073] => <p><a href=/php/url/get_headers/>get_headers</a></p> [2074] => <p><a href=/php/url/get_meta_tags/>get_meta_tags</a></p> [2075] => <p><a href=/php/url/http_build_query/>http_build_query</a></p> [2076] => <p><a href=/php/url/parse_url/>parse_url</a></p> [2077] => <p><a href=/php/url/rawurldecode/>rawurldecode</a></p> [2078] => <p><a href=/php/url/rawurlencode/>rawurlencode</a></p> [2079] => <p><a href=/php/url/urldecode/>urldecode</a></p> [2080] => <p><a href=/php/url/urlencode/>urlencode</a></p> [2081] => </div> [2082] => <h2 id=variable-handling><a href=#variable-handling>Variable Handling</a></h2> [2083] => <div class=margin> [2084] => <p><a href=/php/variable-handling/boolval/>boolval</a></p> [2085] => <p><a href=/php/variable-handling/debug_zval_dump/>debug_zval_dump</a></p> [2086] => <p><a href=/php/variable-handling/doubleval/>doubleval</a></p> [2087] => <p><a href=/php/variable-handling/empty/>empty</a></p> [2088] => <p><a href=/php/variable-handling/floatval/>floatval</a></p> [2089] => <p><a href=/php/variable-handling/get_debug_type/>get_debug_type</a></p> [2090] => <p><a href=/php/variable-handling/get_defined_vars/>get_defined_vars</a></p> [2091] => <p><a href=/php/variable-handling/get_resource_id/>get_resource_id</a></p> [2092] => <p><a href=/php/variable-handling/get_resource_type/>get_resource_type</a></p> [2093] => <p><a href=/php/variable-handling/gettype/>gettype</a></p> [2094] => <p><a href=/php/variable-handling/intval/>intval</a></p> [2095] => <p><a href=/php/variable-handling/is_array/>is_array</a></p> [2096] => <p><a href=/php/variable-handling/is_bool/>is_bool</a></p> [2097] => <p><a href=/php/variable-handling/is_callable/>is_callable</a></p> [2098] => <p><a href=/php/variable-handling/is_countable/>is_countable</a></p> [2099] => <p><a href=/php/variable-handling/is_double/>is_double</a></p> [2100] => <p><a href=/php/variable-handling/is_float/>is_float</a></p> [2101] => <p><a href=/php/variable-handling/is_int/>is_int</a></p> [2102] => <p><a href=/php/variable-handling/is_integer/>is_integer</a></p> [2103] => <p><a href=/php/variable-handling/is_iterable/>is_iterable</a></p> [2104] => <p><a href=/php/variable-handling/is_long/>is_long</a></p> [2105] => <p><a href=/php/variable-handling/is_null/>is_null</a></p> [2106] => <p><a href=/php/variable-handling/is_numeric/>is_numeric</a></p> [2107] => <p><a href=/php/variable-handling/is_object/>is_object</a></p> [2108] => <p><a href=/php/variable-handling/is_real/>is_real</a></p> [2109] => <p><a href=/php/variable-handling/is_resource/>is_resource</a></p> [2110] => <p><a href=/php/variable-handling/is_scalar/>is_scalar</a></p> [2111] => <p><a href=/php/variable-handling/is_string/>is_string</a></p> [2112] => <p><a href=/php/variable-handling/isset/>isset</a></p> [2113] => <p><a href=/php/variable-handling/print_r/>print_r</a></p> [2114] => <p><a href=/php/variable-handling/serialize/>serialize</a></p> [2115] => <p><a href=/php/variable-handling/settype/>settype</a></p> [2116] => <p><a href=/php/variable-handling/strval/>strval</a></p> [2117] => <p><a href=/php/variable-handling/unserialize/>unserialize</a></p> [2118] => <p><a href=/php/variable-handling/unset/>unset</a></p> [2119] => <p><a href=/php/variable-handling/var_dump/>var_dump</a></p> [2120] => <p><a href=/php/variable-handling/var_export/>var_export</a></p> [2121] => </div> [2122] => </div> [2123] => <div class=nav-h1> [2124] => <p><a id=nav-switch-svg>SVG</a></p> [2125] => </div> [2126] => <div id=nav-content-svg> [2127] => <h2 id=overview><a href=#overview>Overview</a></h2> [2128] => <div class=margin> [2129] => <p><a href=/svg/>Overview</a></p> [2130] => </div> [2131] => <h2 id=attributes><a href=#attributes>Attributes</a></h2> [2132] => <div class=margin> [2133] => <p><a href=/svg/attributes/accumulate/>accumulate</a></p> [2134] => <p><a href=/svg/attributes/additive/>additive</a></p> [2135] => <p><a href=/svg/attributes/amplitude/>amplitude</a></p> [2136] => <p><a href=/svg/attributes/attributename/>attributeName</a></p> [2137] => <p><a href=/svg/attributes/azimuth/>azimuth</a></p> [2138] => <p><a href=/svg/attributes/basefrequency/>baseFrequency</a></p> [2139] => <p><a href=/svg/attributes/begin/>begin</a></p> [2140] => <p><a href=/svg/attributes/bias/>bias</a></p> [2141] => <p><a href=/svg/attributes/by/>by</a></p> [2142] => <p><a href=/svg/attributes/calcmode/>calcMode</a></p> [2143] => <p><a href=/svg/attributes/clippathunits/>clipPathUnits</a></p> [2144] => <p><a href=/svg/attributes/crossorigin/>crossorigin</a></p> [2145] => <p><a href=/svg/attributes/cx/>cx</a></p> [2146] => <p><a href=/svg/attributes/cy/>cy</a></p> [2147] => <p><a href=/svg/attributes/d/>d</a></p> [2148] => <p><a href=/svg/attributes/diffuseconstant/>diffuseConstant</a></p> [2149] => <p><a href=/svg/attributes/divisor/>divisor</a></p> [2150] => <p><a href=/svg/attributes/download/>download</a></p> [2151] => <p><a href=/svg/attributes/dur/>dur</a></p> [2152] => <p><a href=/svg/attributes/dx/>dx</a></p> [2153] => <p><a href=/svg/attributes/dy/>dy</a></p> [2154] => <p><a href=/svg/attributes/edgemode/>edgeMode</a></p> [2155] => <p><a href=/svg/attributes/elevation/>elevation</a></p> [2156] => <p><a href=/svg/attributes/end/>end</a></p> [2157] => <p><a href=/svg/attributes/exponent/>exponent</a></p> [2158] => <p><a href=/svg/attributes/fill/>fill</a></p> [2159] => <p><a href=/svg/attributes/filterunits/>filterUnits</a></p> [2160] => <p><a href=/svg/attributes/flood-color/>flood-color</a></p> [2161] => <p><a href=/svg/attributes/flood-opacity/>flood-opacity</a></p> [2162] => <p><a href=/svg/attributes/fr/>fr</a></p> [2163] => <p><a href=/svg/attributes/from/>from</a></p> [2164] => <p><a href=/svg/attributes/fx/>fx</a></p> [2165] => <p><a href=/svg/attributes/fy/>fy</a></p> [2166] => <p><a href=/svg/attributes/gradienttransform/>gradientTransform</a></p> [2167] => <p><a href=/svg/attributes/gradientunits/>gradientUnits</a></p> [2168] => <p><a href=/svg/attributes/height/>height</a></p> [2169] => <p><a href=/svg/attributes/href/>href</a></p> [2170] => <p><a href=/svg/attributes/hreflang/>hreflang</a></p> [2171] => <p><a href=/svg/attributes/id/>id</a></p> [2172] => <p><a href=/svg/attributes/in/>in</a></p> [2173] => <p><a href=/svg/attributes/in2/>in2</a></p> [2174] => <p><a href=/svg/attributes/intercept/>intercept</a></p> [2175] => <p><a href=/svg/attributes/k1/>k1</a></p> [2176] => <p><a href=/svg/attributes/k2/>k2</a></p> [2177] => <p><a href=/svg/attributes/k3/>k3</a></p> [2178] => <p><a href=/svg/attributes/k4/>k4</a></p> [2179] => <p><a href=/svg/attributes/kernelmatrix/>kernelMatrix</a></p> [2180] => <p><a href=/svg/attributes/keypoints/>keyPoints</a></p> [2181] => <p><a href=/svg/attributes/keysplines/>keySplines</a></p> [2182] => <p><a href=/svg/attributes/keytimes/>keyTimes</a></p> [2183] => <p><a href=/svg/attributes/lengthadjust/>lengthAdjust</a></p> [2184] => <p><a href=/svg/attributes/limitingconeangle/>limitingConeAngle</a></p> [2185] => <p><a href=/svg/attributes/markerheight/>markerHeight</a></p> [2186] => <p><a href=/svg/attributes/markerunits/>markerUnits</a></p> [2187] => <p><a href=/svg/attributes/markerwidth/>markerWidth</a></p> [2188] => <p><a href=/svg/attributes/maskcontentunits/>maskContentUnits</a></p> [2189] => <p><a href=/svg/attributes/maskunits/>maskUnits</a></p> [2190] => <p><a href=/svg/attributes/max/>max</a></p> [2191] => <p><a href=/svg/attributes/media/>media</a></p> [2192] => <p><a href=/svg/attributes/method/>method</a></p> [2193] => <p><a href=/svg/attributes/min/>min</a></p> [2194] => <p><a href=/svg/attributes/mode/>mode</a></p> [2195] => <p><a href=/svg/attributes/no-composite/>no-composite</a></p> [2196] => <p><a href=/svg/attributes/numoctaves/>numOctaves</a></p> [2197] => <p><a href=/svg/attributes/offset/>offset</a></p> [2198] => <p><a href=/svg/attributes/onbegin/>onbegin</a></p> [2199] => <p><a href=/svg/attributes/onend/>onend</a></p> [2200] => <p><a href=/svg/attributes/onrepeat/>onrepeat</a></p> [2201] => <p><a href=/svg/attributes/operator/>operator</a></p> [2202] => <p><a href=/svg/attributes/order/>order</a></p> [2203] => <p><a href=/svg/attributes/orient/>orient</a></p> [2204] => <p><a href=/svg/attributes/origin/>origin</a></p> [2205] => <p><a href=/svg/attributes/path/>path</a></p> [2206] => <p><a href=/svg/attributes/pathlength/>pathLength</a></p> [2207] => <p><a href=/svg/attributes/patterncontentunits/>patternContentUnits</a></p> [2208] => <p><a href=/svg/attributes/patterntransform/>patternTransform</a></p> [2209] => <p><a href=/svg/attributes/patternunits/>patternUnits</a></p> [2210] => <p><a href=/svg/attributes/ping/>ping</a></p> [2211] => <p><a href=/svg/attributes/points/>points</a></p> [2212] => <p><a href=/svg/attributes/pointsatx/>pointsAtX</a></p> [2213] => <p><a href=/svg/attributes/pointsaty/>pointsAtY</a></p> [2214] => <p><a href=/svg/attributes/pointsatz/>pointsAtZ</a></p> [2215] => <p><a href=/svg/attributes/preservealpha/>preserveAlpha</a></p> [2216] => <p><a href=/svg/attributes/preserveaspectratio/>preserveAspectRatio</a></p> [2217] => <p><a href=/svg/attributes/primitiveunits/>primitiveUnits</a></p> [2218] => <p><a href=/svg/attributes/r/>r</a></p> [2219] => <p><a href=/svg/attributes/radius/>radius</a></p> [2220] => <p><a href=/svg/attributes/referrerpolicy/>referrerPolicy</a></p> [2221] => <p><a href=/svg/attributes/refx/>refx</a></p> [2222] => <p><a href=/svg/attributes/refy/>refy</a></p> [2223] => <p><a href=/svg/attributes/rel/>rel</a></p> [2224] => <p><a href=/svg/attributes/repeatcount/>repeatCount</a></p> [2225] => <p><a href=/svg/attributes/repeatdur/>repeatDur</a></p> [2226] => <p><a href=/svg/attributes/requiredextensions/>requiredExtensions</a></p> [2227] => <p><a href=/svg/attributes/restart/>restart</a></p> [2228] => <p><a href=/svg/attributes/rotate/>rotate</a></p> [2229] => <p><a href=/svg/attributes/rx/>rx</a></p> [2230] => <p><a href=/svg/attributes/ry/>ry</a></p> [2231] => <p><a href=/svg/attributes/scale/>scale</a></p> [2232] => <p><a href=/svg/attributes/seed/>seed</a></p> [2233] => <p><a href=/svg/attributes/side/>side</a></p> [2234] => <p><a href=/svg/attributes/slope/>slope</a></p> [2235] => <p><a href=/svg/attributes/spacing/>spacing</a></p> [2236] => <p><a href=/svg/attributes/specularconstant/>specularConstant</a></p> [2237] => <p><a href=/svg/attributes/specularexponent/>specularExponent</a></p> [2238] => <p><a href=/svg/attributes/spreadmethod/>spreadMethod</a></p> [2239] => <p><a href=/svg/attributes/startoffset/>startoffset</a></p> [2240] => <p><a href=/svg/attributes/stddeviation/>stdDeviation</a></p> [2241] => <p><a href=/svg/attributes/stitchtiles/>stitchTiles</a></p> [2242] => <p><a href=/svg/attributes/stop-color/>stop-color</a></p> [2243] => <p><a href=/svg/attributes/stop-opacity/>stop-opacity</a></p> [2244] => <p><a href=/svg/attributes/surfacescale/>surfaceScale</a></p> [2245] => <p><a href=/svg/attributes/systemlanguage/>systemLanguage</a></p> [2246] => <p><a href=/svg/attributes/tabindex/>tabindex</a></p> [2247] => <p><a href=/svg/attributes/tablevalues/>tableValues</a></p> [2248] => <p><a href=/svg/attributes/target/>target</a></p> [2249] => <p><a href=/svg/attributes/targetx/>targetX</a></p> [2250] => <p><a href=/svg/attributes/targety/>targetY</a></p> [2251] => <p><a href=/svg/attributes/textlength/>textLength</a></p> [2252] => <p><a href=/svg/attributes/title/>title</a></p> [2253] => <p><a href=/svg/attributes/to/>to</a></p> [2254] => <p><a href=/svg/attributes/transform/>transform</a></p> [2255] => <p><a href=/svg/attributes/type/>type</a></p> [2256] => <p><a href=/svg/attributes/values/>values</a></p> [2257] => <p><a href=/svg/attributes/viewbox/>viewBox</a></p> [2258] => <p><a href=/svg/attributes/width/>width</a></p> [2259] => <p><a href=/svg/attributes/x/>x</a></p> [2260] => <p><a href=/svg/attributes/x1/>x1</a></p> [2261] => <p><a href=/svg/attributes/x2/>x2</a></p> [2262] => <p><a href=/svg/attributes/xchannelselector/>xChannelSelector</a></p> [2263] => <p><a href=/svg/attributes/y/>y</a></p> [2264] => <p><a href=/svg/attributes/y1/>y1</a></p> [2265] => <p><a href=/svg/attributes/y2/>y2</a></p> [2266] => <p><a href=/svg/attributes/ychannelselector/>yChannelSelector</a></p> [2267] => <p><a href=/svg/attributes/z/>z</a></p> [2268] => <p><a href=/svg/attributes/zoomandpan/>zoomAndPan</a></p> [2269] => </div> [2270] => <h2 id=elements><a href=#elements>Elements</a></h2> [2271] => <div class=margin> [2272] => <p><a href=/svg/elements/a/>a</a></p> [2273] => <p><a href=/svg/elements/animate/>animate</a></p> [2274] => <p><a href=/svg/elements/animatemotion/>animateMotion</a></p> [2275] => <p><a href=/svg/elements/animatetransform/>animateTransform</a></p> [2276] => <p><a href=/svg/elements/circle/>circle</a></p> [2277] => <p><a href=/svg/elements/clippath/>clipPath</a></p> [2278] => <p><a href=/svg/elements/defs/>defs</a></p> [2279] => <p><a href=/svg/elements/desc/>desc</a></p> [2280] => <p><a href=/svg/elements/discard/>discard</a></p> [2281] => <p><a href=/svg/elements/ellipse/>ellipse</a></p> [2282] => <p><a href=/svg/elements/feblend/>feBlend</a></p> [2283] => <p><a href=/svg/elements/fecolormatrix/>feColorMatrix</a></p> [2284] => <p><a href=/svg/elements/fecomponenttransfer/>feComponentTransfer</a></p> [2285] => <p><a href=/svg/elements/fecomposite/>feComposite</a></p> [2286] => <p><a href=/svg/elements/feconvolvematrix/>feConvolveMatrix</a></p> [2287] => <p><a href=/svg/elements/fediffuselighting/>feDiffuseLighting</a></p> [2288] => <p><a href=/svg/elements/fedisplacementmap/>feDisplacementMap</a></p> [2289] => <p><a href=/svg/elements/fedistantlight/>feDistantLight</a></p> [2290] => <p><a href=/svg/elements/fedropshadow/>feDropShadow</a></p> [2291] => <p><a href=/svg/elements/feflood/>feFlood</a></p> [2292] => <p><a href=/svg/elements/fefunca/>feFuncA</a></p> [2293] => <p><a href=/svg/elements/fefuncb/>feFuncB</a></p> [2294] => <p><a href=/svg/elements/fefuncg/>feFuncG</a></p> [2295] => <p><a href=/svg/elements/fefuncr/>feFuncR</a></p> [2296] => <p><a href=/svg/elements/fegaussianblur/>feGaussianBlur</a></p> [2297] => <p><a href=/svg/elements/feimage/>feImage</a></p> [2298] => <p><a href=/svg/elements/femerge/>feMerge</a></p> [2299] => <p><a href=/svg/elements/femergenode/>feMergeNode</a></p> [2300] => <p><a href=/svg/elements/femorphology/>feMorphology</a></p> [2301] => <p><a href=/svg/elements/feoffset/>feOffset</a></p> [2302] => <p><a href=/svg/elements/fepointlight/>fePointLight</a></p> [2303] => <p><a href=/svg/elements/fespecularlighting/>feSpecularLighting</a></p> [2304] => <p><a href=/svg/elements/fespotlight/>feSpotLight</a></p> [2305] => <p><a href=/svg/elements/fetile/>feTile</a></p> [2306] => <p><a href=/svg/elements/feturbulence/>feTurbulence</a></p> [2307] => <p><a href=/svg/elements/filter/>filter</a></p> [2308] => <p><a href=/svg/elements/foreignobject/>foreignObject</a></p> [2309] => <p><a href=/svg/elements/g/>g</a></p> [2310] => <p><a href=/svg/elements/image/>image</a></p> [2311] => <p><a href=/svg/elements/line/>line</a></p> [2312] => <p><a href=/svg/elements/lineargradient/>linearGradient</a></p> [2313] => <p><a href=/svg/elements/marker/>marker</a></p> [2314] => <p><a href=/svg/elements/mask/>mask</a></p> [2315] => <p><a href=/svg/elements/metadata/>metadata</a></p> [2316] => <p><a href=/svg/elements/mpath/>mpath</a></p> [2317] => <p><a href=/svg/elements/path/>path</a></p> [2318] => <p><a href=/svg/elements/pattern/>pattern</a></p> [2319] => <p><a href=/svg/elements/polygon/>polygon</a></p> [2320] => <p><a href=/svg/elements/polyline/>polyline</a></p> [2321] => <p><a href=/svg/elements/radialgradient/>radialGradient</a></p> [2322] => <p><a href=/svg/elements/rect/>rect</a></p> [2323] => <p><a href=/svg/elements/script/>script</a></p> [2324] => <p><a href=/svg/elements/set/>set</a></p> [2325] => <p><a href=/svg/elements/stop/>stop</a></p> [2326] => <p><a href=/svg/elements/style/>style</a></p> [2327] => <p><a href=/svg/elements/svg/>svg</a></p> [2328] => <p><a href=/svg/elements/switch/>switch</a></p> [2329] => <p><a href=/svg/elements/symbol/>symbol</a></p> [2330] => <p><a href=/svg/elements/text/>text</a></p> [2331] => <p><a href=/svg/elements/textpath/>textPath</a></p> [2332] => <p><a href=/svg/elements/title/>title</a></p> [2333] => <p><a href=/svg/elements/tspan/>tspan</a></p> [2334] => <p><a href=/svg/elements/unknown/>unknown</a></p> [2335] => <p><a href=/svg/elements/use/>use</a></p> [2336] => <p><a href=/svg/elements/view/>view</a></p> [2337] => </div> [2338] => <h2 id=values><a href=#values>Values</a></h2> [2339] => <div class=margin> [2340] => <p><a href=/svg/values/_blank/>_blank</a></p> [2341] => <p><a href=/svg/values/_parent/>_parent</a></p> [2342] => <p><a href=/svg/values/_self/>_self</a></p> [2343] => <p><a href=/svg/values/_top/>_top</a></p> [2344] => <p><a href=/svg/values/a/>A</a></p> [2345] => <p><a href=/svg/values/align/>align</a></p> [2346] => <p><a href=/svg/values/alpha-value/>alpha-value</a></p> [2347] => <p><a href=/svg/values/always/>always</a></p> [2348] => <p><a href=/svg/values/angle/>angle</a></p> [2349] => <p><a href=/svg/values/anonymous/>anonymous</a></p> [2350] => <p><a href=/svg/values/arithmetic/>arithmetic</a></p> [2351] => <p><a href=/svg/values/atop/>atop</a></p> [2352] => <p><a href=/svg/values/auto/>auto</a></p> [2353] => <p><a href=/svg/values/auto-start-reverse/>auto-start-reverse</a></p> [2354] => <p><a href=/svg/values/auto-reverse/>auto-reverse</a></p> [2355] => <p><a href=/svg/values/b/>B</a></p> [2356] => <p><a href=/svg/values/backgroundalpha/>BackgroundAlpha</a></p> [2357] => <p><a href=/svg/values/backgroundimage/>BackgroundImage</a></p> [2358] => <p><a href=/svg/values/begin-value-list/>begin-value-list</a></p> [2359] => <p><a href=/svg/values/blend-mode/>blend-mode</a></p> [2360] => <p><a href=/svg/values/bottom/>bottom</a></p> [2361] => <p><a href=/svg/values/center/>center</a></p> [2362] => <p><a href=/svg/values/clock-value/>clock-value</a></p> [2363] => <p><a href=/svg/values/color/>color</a></p> [2364] => <p><a href=/svg/values/control-point/>control-point</a></p> [2365] => <p><a href=/svg/values/currentcolor/>currentColor</a></p> [2366] => <p><a href=/svg/values/default/>default</a></p> [2367] => <p><a href=/svg/values/dilate/>dilate</a></p> [2368] => <p><a href=/svg/values/disable/>disable</a></p> [2369] => <p><a href=/svg/values/discrete/>discrete</a></p> [2370] => <p><a href=/svg/values/duplicate/>duplicate</a></p> [2371] => <p><a href=/svg/values/empty-string/>empty-string</a></p> [2372] => <p><a href=/svg/values/end-value-list/>end-value-list</a></p> [2373] => <p><a href=/svg/values/erode/>erode</a></p> [2374] => <p><a href=/svg/values/exact/>exact</a></p> [2375] => <p><a href=/svg/values/false/>false</a></p> [2376] => <p><a href=/svg/values/fillpaint/>FillPaint</a></p> [2377] => <p><a href=/svg/values/filter-primitive-reference/>filter-primitive-reference</a></p> [2378] => <p><a href=/svg/values/fractalnoise/>fractalNoise</a></p> [2379] => <p><a href=/svg/values/freeze/>freeze</a></p> [2380] => <p><a href=/svg/values/g/>G</a></p> [2381] => <p><a href=/svg/values/gamma/>gamma</a></p> [2382] => <p><a href=/svg/values/height/>height</a></p> [2383] => <p><a href=/svg/values/huerotate/>hueRotate</a></p> [2384] => <p><a href=/svg/values/icccolor/>icccolor</a></p> [2385] => <p><a href=/svg/values/id/>id</a></p> [2386] => <p><a href=/svg/values/identity/>identity</a></p> [2387] => <p><a href=/svg/values/in/>in</a></p> [2388] => <p><a href=/svg/values/indefinite/>indefinite</a></p> [2389] => <p><a href=/svg/values/integer/>integer</a></p> [2390] => <p><a href=/svg/values/left/>left</a></p> [2391] => <p><a href=/svg/values/length/>length</a></p> [2392] => <p><a href=/svg/values/length-percentage/>length-percentage</a></p> [2393] => <p><a href=/svg/values/lighter/>lighter</a></p> [2394] => <p><a href=/svg/values/linear/>linear</a></p> [2395] => <p><a href=/svg/values/list/>list</a></p> [2396] => <p><a href=/svg/values/list-of-numbers/>list-of-numbers</a></p> [2397] => <p><a href=/svg/values/luminancetoalpha/>luminanceToAlpha</a></p> [2398] => <p><a href=/svg/values/magnify/>magnify</a></p> [2399] => <p><a href=/svg/values/matrix/>matrix</a></p> [2400] => <p><a href=/svg/values/media/>media</a></p> [2401] => <p><a href=/svg/values/meetorslice/>meetOrSlice</a></p> [2402] => <p><a href=/svg/values/min-x/>min-x</a></p> [2403] => <p><a href=/svg/values/min-y/>min-y</a></p> [2404] => <p><a href=/svg/values/name/>name</a></p> [2405] => <p><a href=/svg/values/never/>never</a></p> [2406] => <p><a href=/svg/values/no-composite/>no-composite</a></p> [2407] => <p><a href=/svg/values/no-referrer/>no-referrer</a></p> [2408] => <p><a href=/svg/values/no-referrer-when-downgrade/>no-referrer-when-downgrade</a></p> [2409] => <p><a href=/svg/values/none/>none</a></p> [2410] => <p><a href=/svg/values/nostitch/>noStitch</a></p> [2411] => <p><a href=/svg/values/number/>number</a></p> [2412] => <p><a href=/svg/values/number-optional-number/>number-optional-number</a></p> [2413] => <p><a href=/svg/values/objectboundingbox/>objectBoundingBox</a></p> [2414] => <p><a href=/svg/values/origin/>origin</a></p> [2415] => <p><a href=/svg/values/origin-when-cross-origin/>origin-when-cross-origin</a></p> [2416] => <p><a href=/svg/values/out/>out</a></p> [2417] => <p><a href=/svg/values/over/>over</a></p> [2418] => <p><a href=/svg/values/paced/>paced</a></p> [2419] => <p><a href=/svg/values/pad/>pad</a></p> [2420] => <p><a href=/svg/values/path-data/>path-data</a></p> [2421] => <p><a href=/svg/values/percentage/>percentage</a></p> [2422] => <p><a href=/svg/values/points/>points</a></p> [2423] => <p><a href=/svg/values/r/>R</a></p> [2424] => <p><a href=/svg/values/reflect/>reflect</a></p> [2425] => <p><a href=/svg/values/remove/>remove</a></p> [2426] => <p><a href=/svg/values/repeat/>repeat</a></p> [2427] => <p><a href=/svg/values/replace/>replace</a></p> [2428] => <p><a href=/svg/values/right/>right</a></p> [2429] => <p><a href=/svg/values/rotate/>rotate</a></p> [2430] => <p><a href=/svg/values/same-origin/>same-origin</a></p> [2431] => <p><a href=/svg/values/saturate/>saturate</a></p> [2432] => <p><a href=/svg/values/scale/>scale</a></p> [2433] => <p><a href=/svg/values/script/>script</a></p> [2434] => <p><a href=/svg/values/set-of-comma-separated-tokens/>set-of-comma-separated-tokens</a></p> [2435] => <p><a href=/svg/values/set-of-space-separated-tokens/>set-of-space-separated-tokens</a></p> [2436] => <p><a href=/svg/values/skewx/>skewx</a></p> [2437] => <p><a href=/svg/values/skewy/>skewy</a></p> [2438] => <p><a href=/svg/values/sourcealpha/>SourceAlpha</a></p> [2439] => <p><a href=/svg/values/sourcegraphic/>SourceGraphic</a></p> [2440] => <p><a href=/svg/values/spacing/>spacing</a></p> [2441] => <p><a href=/svg/values/spacingandglyphs/>spacingAndGlyphs</a></p> [2442] => <p><a href=/svg/values/spline/>spline</a></p> [2443] => <p><a href=/svg/values/stitch/>stitch</a></p> [2444] => <p><a href=/svg/values/stretch/>stretch</a></p> [2445] => <p><a href=/svg/values/strict-origin/>strict-origin</a></p> [2446] => <p><a href=/svg/values/strict-origin-when-cross-origin/>strict-origin-when-cross-origin</a></p> [2447] => <p><a href=/svg/values/string/>string</a></p> [2448] => <p><a href=/svg/values/strokepaint/>StrokePaint</a></p> [2449] => <p><a href=/svg/values/strokewidth/>strokeWidth</a></p> [2450] => <p><a href=/svg/values/sum/>sum</a></p> [2451] => <p><a href=/svg/values/table/>table</a></p> [2452] => <p><a href=/svg/values/tokens/>tokens</a></p> [2453] => <p><a href=/svg/values/top/>top</a></p> [2454] => <p><a href=/svg/values/transform-list/>transform-list</a></p> [2455] => <p><a href=/svg/values/translate/>translate</a></p> [2456] => <p><a href=/svg/values/true/>true</a></p> [2457] => <p><a href=/svg/values/turbulence/>turbulence</a></p> [2458] => <p><a href=/svg/values/unsafe-url/>unsafe-url</a></p> [2459] => <p><a href=/svg/values/url/>url</a></p> [2460] => <p><a href=/svg/values/use-credentials/>use-credentials</a></p> [2461] => <p><a href=/svg/values/userspaceonuse/>userSpaceOnUse</a></p> [2462] => <p><a href=/svg/values/valid-integer/>valid-integer</a></p> [2463] => <p><a href=/svg/values/value/>value</a></p> [2464] => <p><a href=/svg/values/whennotactive/>whenNotActive</a></p> [2465] => <p><a href=/svg/values/width/>width</a></p> [2466] => <p><a href=/svg/values/wrap/>wrap</a></p> [2467] => <p><a href=/svg/values/xml-name/>XML-Name</a></p> [2468] => <p><a href=/svg/values/xor/>xor</a></p> [2469] => </div> [2470] => </div> [2471] => <div class=nav-h1> [2472] => <p><a id=nav-switch-applications>APPLICATIONS</a></p> [2473] => </div> [2474] => <div id=nav-content-applications> [2475] => <h2 id=overview><a href=#overview>Overview</a></h2> [2476] => <div class=margin> [2477] => <p><a href=/applications/>Overview</a></p> [2478] => </div> [2479] => <h2 id=Bible><a href=#Bible>Bible</a></h2> [2480] => <div class=margin> [2481] => <p><a href=/applications/Bible-passages/>Bible Passages</a></p> [2482] => <p><a href=/applications/Bible-pictures/>Bible Pictures</a></p> [2483] => <p><a href=/applications/Jesus-loves-the-little-children/>Jesus Loves the Little Children</a></p> [2484] => <p><a href=/applications/merry-Christmas/>Merry Christmas</a></p> [2485] => <p><a href=/applications/one-man-one-woman-one-lifetime/>One Man. One Woman. One Lifetime.</a></p> [2486] => <p><a href=/applications/The-Armor-of-God/>The Armor of God</a></p> [2487] => </div> [2488] => <h2 id=cards><a href=#cards>Cards</a></h2> [2489] => <div class=margin> [2490] => <p><a href=/applications/euchre/>Euchre</a></p> [2491] => <p><a href=/applications/sevens/>Sevens</a></p> [2492] => <p><a href=/applications/solitaire/>Solitaire</a></p> [2493] => </div> [2494] => <h2 id=lego><a href=#lego>LEGO</a></h2> [2495] => <div class=margin> [2496] => <p><a href=/applications/lego-cannonball-bingo/>LEGO Cannonball Bingo</a></p> [2497] => <p><a href=/applications/lego-pandamonium/>LEGO Pandamonium</a></p> [2498] => <p><a href=/applications/lego-pirate-plunder/>LEGO Pirate Plunder</a></p> [2499] => <p><a href=/applications/lego-the-machine/>LEGO The Machine</a></p> [2500] => </div> [2501] => <h2 id=other><a href=#other>Other</a></h2> [2502] => <div class=margin> [2503] => <p><a href=/applications/miniature-golf/>Miniature Golf</a></p> [2504] => <p><a href=/applications/space-station/>Space Station</a></p> [2505] => </div> [2506] => </div> [2507] => <div class=nav-h1> [2508] => <p><a id=nav-switch-more>MORE</a></p> [2509] => </div> [2510] => <div id=nav-content-more> [2511] => <div class=nav-h2> [2512] => <p><a href=/htaccess/>.htaccess</a></p> [2513] => </div> [2514] => <div class=nav-h2> [2515] => <p><a href=/acme.sh/>acme.sh</a></p> [2516] => </div> [2517] => <div class=nav-h2> [2518] => <p><a href=/editor/>Editor</a></p> [2519] => </div> [2520] => <div class=nav-h2> [2521] => <p><a href=/favicon/>Favicon</a></p> [2522] => </div> [2523] => <div class=nav-h2> [2524] => <p><a id=nav-switch-flash>Flash</a></p> [2525] => </div> [2526] => <div id=nav-content-flash> [2527] => <div class=nav-h3> [2528] => <p><a href=/flash/detect/>Detect</a></p> [2529] => </div> [2530] => <div class=nav-h3> [2531] => <p><a id=nav-switch-flash-actionscript>ActionScript</a></p> [2532] => </div> [2533] => <div id=nav-content-flash-actionscript> [2534] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2535] => <div class=margin> [2536] => <p><a href=/flash/actionscript/>Overview</a></p> [2537] => </div> [2538] => <h3 id=other-assets><a href=#other-assets>Assets</a></h3> [2539] => <div class=margin> [2540] => <p><a href=/flash/actionscript/embed/>Embed</a></p> [2541] => <p><a href=/flash/actionscript/load/>Load</a></p> [2542] => </div> [2543] => </div> [2544] => <div class=nav-h3> [2545] => <p><a id=nav-switch-flash-as3dmod>AS3Dmod</a></p> [2546] => </div> [2547] => <div id=nav-content-flash-as3dmod> [2548] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2549] => <div class=margin> [2550] => <p><a href=/flash/as3dmod/>Overview</a></p> [2551] => </div> [2552] => <h4 id=other-overview-modifiers><a href=#other-overview-modifiers>Modifiers</a></h4> [2553] => <div class=margin> [2554] => <p><a href=/flash/as3dmod/bend/>Bend</a></p> [2555] => <p><a href=/flash/as3dmod/bloat/>Bloat</a></p> [2556] => <p><a href=/flash/as3dmod/cloth/>Cloth</a></p> [2557] => <p><a href=/flash/as3dmod/noise/>Noise</a></p> [2558] => <p><a href=/flash/as3dmod/perlin/>Perlin</a></p> [2559] => <p><a href=/flash/as3dmod/pivot/>Pivot</a></p> [2560] => <p><a href=/flash/as3dmod/skew/>Skew</a></p> [2561] => <p><a href=/flash/as3dmod/taper/>Taper</a></p> [2562] => <p><a href=/flash/as3dmod/twist/>Twist</a></p> [2563] => </div> [2564] => <h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4> [2565] => <div class=margin> [2566] => <p><a href=/flash/as3dmod/flag/>Flag</a></p> [2567] => </div> [2568] => </div> [2569] => <div class=nav-h3> [2570] => <p><a href=/flash/flartoolkit/>FLARToolKit</a></p> [2571] => </div> [2572] => <div class=nav-h3> [2573] => <p><a id=nav-switch-flash-jiglibflash>JigLibFlash</a></p> [2574] => </div> [2575] => <div id=nav-content-flash-jiglibflash> [2576] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2577] => <div class=margin> [2578] => <p><a href=/flash/jiglibflash/>Overview</a></p> [2579] => </div> [2580] => <h4 id=other-overview-objects><a href=#other-overview-objects>Objects</a></h4> [2581] => <div class=margin> [2582] => <p><a href=/flash/jiglibflash/jbox/>JBox</a></p> [2583] => <p><a href=/flash/jiglibflash/jcapsule/>JCapsule</a></p> [2584] => <p><a href=/flash/jiglibflash/jplane/>JPlane</a></p> [2585] => <p><a href=/flash/jiglibflash/jsphere/>JSphere</a></p> [2586] => </div> [2587] => <h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4> [2588] => <div class=margin> [2589] => <p><a href=/flash/jiglibflash/physics/>Physics</a></p> [2590] => </div> [2591] => </div> [2592] => <div class=nav-h3> [2593] => <p><a id=nav-switch-flash-papervision3d>Papervision3D</a></p> [2594] => </div> [2595] => <div id=nav-content-flash-papervision3d> [2596] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2597] => <div class=margin> [2598] => <p><a href=/flash/papervision3d/>Overview</a></p> [2599] => </div> [2600] => <h4 id=other-overview-install><a href=#other-overview-install>Install</a></h4> [2601] => <div class=margin> [2602] => <p><a href=/flash/papervision3d/install/>Install</a></p> [2603] => </div> [2604] => <h4 id=other-overview-example><a href=#other-overview-example>Example</a></h4> [2605] => <div class=margin> [2606] => <p><a href=/flash/papervision3d/1/>1</a></p> [2607] => <p><a href=/flash/papervision3d/2/>2</a></p> [2608] => <p><a href=/flash/papervision3d/3/>3</a></p> [2609] => <p><a href=/flash/papervision3d/4/>4</a></p> [2610] => <p><a href=/flash/papervision3d/5/>5</a></p> [2611] => </div> [2612] => <h4 id=other-overview-cameras><a href=#other-overview-cameras>Cameras</a></h4> [2613] => <div class=margin> [2614] => <p><a href=/flash/papervision3d/camera3d/>Camera3D</a></p> [2615] => <p><a href=/flash/papervision3d/debugcamera3d/>DebugCamera3D</a></p> [2616] => <p><a href=/flash/papervision3d/springcamera3d/>SpringCamera3D</a></p> [2617] => </div> [2618] => <h4 id=other-overview-core><a href=#other-overview-core>Core</a></h4> [2619] => <div class=margin> [2620] => <p><a href=/flash/papervision3d/lines3d/>Lines3D</a></p> [2621] => <p><a href=/flash/papervision3d/fogfilter/>FogFilter</a></p> [2622] => </div> [2623] => <h4 id=other-overview-light><a href=#other-overview-light>Light</a></h4> [2624] => <div class=margin> [2625] => <p><a href=/flash/papervision3d/pointlight3d/>PointLight3D</a></p> [2626] => </div> [2627] => <h4 id=other-overview-materials><a href=#other-overview-materials>Materials</a></h4> [2628] => <div class=margin> [2629] => <p><a href=/flash/papervision3d/bitmapfilematerial/>BitmapFileMaterial</a></p> [2630] => <p><a href=/flash/papervision3d/bitmapmaterial/>BitmapMaterial</a></p> [2631] => <p><a href=/flash/papervision3d/bitmapviewportmaterial/>BitmapViewportMaterial</a></p> [2632] => <p><a href=/flash/papervision3d/colormaterial/>ColorMaterial</a></p> [2633] => <p><a href=/flash/papervision3d/compositematerial/>CompositeMaterial</a></p> [2634] => <p><a href=/flash/papervision3d/moviematerial/>MovieMaterial</a></p> [2635] => <p><a href=/flash/papervision3d/wireframematerial/>WireframeMaterial</a></p> [2636] => </div> [2637] => <h4 id=other-overview-shade-materials><a href=#other-overview-shade-materials>Shade Materials</a></h4> [2638] => <div class=margin> [2639] => <p><a href=/flash/papervision3d/cellmaterial/>CellMaterial</a></p> [2640] => <p><a href=/flash/papervision3d/envmapmaterial/>EnvMapMaterial</a></p> [2641] => <p><a href=/flash/papervision3d/flatshadematerial/>FlatShadeMaterial</a></p> [2642] => <p><a href=/flash/papervision3d/gouraudmaterial/>GouraudMaterial</a></p> [2643] => <p><a href=/flash/papervision3d/phongmaterial/>PhongMaterial</a></p> [2644] => </div> [2645] => <h4 id=other-overview-special-material><a href=#other-overview-special-material>Special Material</a></h4> [2646] => <div class=margin> [2647] => <p><a href=/flash/papervision3d/particlematerial/>ParticleMaterial</a></p> [2648] => </div> [2649] => <h4 id=other-overview-parser-objects><a href=#other-overview-parser-objects>Parser Objects</a></h4> [2650] => <div class=margin> [2651] => <p><a href=/flash/papervision3d/dae/>DAE</a></p> [2652] => <p><a href=/flash/papervision3d/kmz/>KMZ</a></p> [2653] => </div> [2654] => <h4 id=other-overview-primitive-objects><a href=#other-overview-primitive-objects>Primitive Objects</a></h4> [2655] => <div class=margin> [2656] => <p><a href=/flash/papervision3d/arrow/>Arrow</a></p> [2657] => <p><a href=/flash/papervision3d/cone/>Cone</a></p> [2658] => <p><a href=/flash/papervision3d/cube/>Cube</a></p> [2659] => <p><a href=/flash/papervision3d/cylinder/>Cylinder</a></p> [2660] => <p><a href=/flash/papervision3d/paperplane/>PaperPlane</a></p> [2661] => <p><a href=/flash/papervision3d/plane/>Plane</a></p> [2662] => <p><a href=/flash/papervision3d/sphere/>Sphere</a></p> [2663] => </div> [2664] => <h4 id=other-overview-special-objects><a href=#other-overview-special-objects>Special Objects</a></h4> [2665] => <div class=margin> [2666] => <p><a href=/flash/papervision3d/particlefield/>ParticleField</a></p> [2667] => <p><a href=/flash/papervision3d/ucs/>UCS</a></p> [2668] => </div> [2669] => <h4 id=other-overview-render><a href=#other-overview-render>Render</a></h4> [2670] => <div class=margin> [2671] => <p><a href=/flash/papervision3d/basicrenderengine/>BasicRenderEngine</a></p> [2672] => <p><a href=/flash/papervision3d/lazyrenderengine/>LazyRenderEngine</a></p> [2673] => <p><a href=/flash/papervision3d/quadrantrenderengine/>QuadrantRenderEngine</a></p> [2674] => </div> [2675] => <h4 id=other-overview-scene><a href=#other-overview-scene>Scene</a></h4> [2676] => <div class=margin> [2677] => <p><a href=/flash/papervision3d/scene3d/>Scene3D</a></p> [2678] => </div> [2679] => <h4 id=other-overview-typography><a href=#other-overview-typography>Typography</a></h4> [2680] => <div class=margin> [2681] => <p><a href=/flash/papervision3d/text3d/>Text3D</a></p> [2682] => </div> [2683] => <h4 id=other-overview-views><a href=#other-overview-views>Views</a></h4> [2684] => <div class=margin> [2685] => <p><a href=/flash/papervision3d/basicview/>BasicView</a></p> [2686] => <p><a href=/flash/papervision3d/reflectionview/>ReflectionView</a></p> [2687] => <p><a href=/flash/papervision3d/statsview/>StatsView</a></p> [2688] => <p><a href=/flash/papervision3d/viewport3d/>Viewport3D</a></p> [2689] => </div> [2690] => <h4 id=other-overview-view-layers><a href=#other-overview-view-layers>View Layers</a></h4> [2691] => <div class=margin> [2692] => <p><a href=/flash/papervision3d/bitmapeffectlayer/>BitmapEffectLayer</a></p> [2693] => <p><a href=/flash/papervision3d/viewportlayer/>ViewportLayer</a></p> [2694] => </div> [2695] => <h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4> [2696] => <div class=margin> [2697] => <p><a href=/flash/papervision3d/anaglyph/>Anaglyph</a></p> [2698] => <p><a href=/flash/papervision3d/camera-move/>Camera Move</a></p> [2699] => <p><a href=/flash/papervision3d/camera-rotate/>Camera Rotate</a></p> [2700] => <p><a href=/flash/papervision3d/camera-target-move/>Camera Target Move</a></p> [2701] => <p><a href=/flash/papervision3d/object-move/>Object Move</a></p> [2702] => <p><a href=/flash/papervision3d/object-rotate/>Object Rotate</a></p> [2703] => <p><a href=/flash/papervision3d/object-scale/>Object Scale</a></p> [2704] => <p><a href=/flash/papervision3d/panorama/>Panorama</a></p> [2705] => </div> [2706] => </div> [2707] => </div> [2708] => <div class=nav-h2> [2709] => <p><a id=nav-switch-sketchup>SketchUp</a></p> [2710] => </div> [2711] => <div id=nav-content-sketchup> [2712] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2713] => <div class=margin> [2714] => <p><a href=/sketchup/>Overview</a></p> [2715] => </div> [2716] => <h3 id=other-plugins><a href=#other-plugins>Plugins</a></h3> [2717] => <div class=margin> [2718] => <p><a href=/sketchup/papervision3d/>Papervision3D</a></p> [2719] => <p><a href=/sketchup/triangulate/>Triangulate</a></p> [2720] => </div> [2721] => </div> [2722] => <div class=nav-h2> [2723] => <p><a id=nav-switch-unity>Unity</a></p> [2724] => </div> [2725] => <div id=nav-content-unity> [2726] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2727] => <div class=margin> [2728] => <p><a href=/unity/>Overview</a></p> [2729] => </div> [2730] => <h3 id=other-detect><a href=#other-detect>Detect</a></h3> [2731] => <div class=margin> [2732] => <p><a href=/unity/detect/>Detect</a></p> [2733] => </div> [2734] => <h3 id=other-games><a href=#other-games>Games</a></h3> [2735] => <div class=margin> [2736] => <p><a href=/unity/air-hockey/>Air Hockey</a></p> [2737] => <p><a href=/unity/foosball/>Foosball</a></p> [2738] => <p><a href=/unity/pool/>Pool</a></p> [2739] => </div> [2740] => <h3 id=other-unity><a href=#other-unity>Unity</a></h3> [2741] => <div class=margin> [2742] => <p><a href=/unity/car/>Car</a></p> [2743] => <p><a href=/unity/lerpz-escapes/>Lerpz Escapes</a></p> [2744] => <p><a href=/unity/mecanim/>Mecanim</a></p> [2745] => </div> [2746] => </div> [2747] => <div class=nav-h2> [2748] => <p><a id=nav-switch-xcode>Xcode</a></p> [2749] => </div> [2750] => <div id=nav-content-xcode> [2751] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2752] => <div class=margin> [2753] => <p><a href=/xcode/>Overview</a></p> [2754] => </div> [2755] => <h3 id=other-example><a href=#other-example>Example</a></h3> [2756] => <div class=margin> [2757] => <p><a href=/xcode/1/>1</a></p> [2758] => <p><a href=/xcode/2/>2</a></p> [2759] => <p><a href=/xcode/3/>3</a></p> [2760] => <p><a href=/xcode/4/>4</a></p> [2761] => <p><a href=/xcode/5/>5</a></p> [2762] => <p><a href=/xcode/6/>6</a></p> [2763] => </div> [2764] => <h3 id=other-csv2plist><a href=#other-csv2plist>CSV2Plist</a></h3> [2765] => <div class=margin> [2766] => <p><a href=/xcode/csv2plist/>CSV2Plist</a></p> [2767] => </div> [2768] => <h3 id=other-ui><a href=#other-ui>UI</a></h3> [2769] => <div class=margin> [2770] => <p><a href=/xcode/uiactivityindicatorview/>UIActivityIndicatorView</a></p> [2771] => <p><a href=/xcode/uibutton/>UIButton</a></p> [2772] => <p><a href=/xcode/uiimageview/>UIImageView</a></p> [2773] => <p><a href=/xcode/uilabel/>UILabel</a></p> [2774] => <p><a href=/xcode/uipagecontrol/>UIPageControl</a></p> [2775] => <p><a href=/xcode/uiprogressview/>UIProgressView</a></p> [2776] => <p><a href=/xcode/uisegmentedcontrol/>UISegmentedControl</a></p> [2777] => <p><a href=/xcode/uislider/>UISlider</a></p> [2778] => <p><a href=/xcode/uistepper/>UIStepper</a></p> [2779] => <p><a href=/xcode/uiswitch/>UISwitch</a></p> [2780] => <p><a href=/xcode/uitextfield/>UITextField</a></p> [2781] => </div> [2782] => </div> [2783] => </div> [2784] => </nav> [2785] => <footer> [2786] => <div class=boilerplate> [2787] => <a href=/Jesus/>Jesus</a> [2788] => · <a href=/Bible/>Bible</a> [2789] => </div> [2790] => <div class=boilerplate> [2791] => <a href=/html/>HTML</a> [2792] => · <a href=/css/>CSS</a> [2793] => · <a href=/js/>JS</a> [2794] => · <a href=/php/>PHP</a> [2795] => · <a href=/svg/>SVG</a> [2796] => </div> [2797] => <div class=boilerplate> [2798] => <a href=/applications/>Applications</a> [2799] => · <a href=/more/>More</a> [2800] => </div> [2801] => <div class=boilerplate> [2802] => <a href=/about/>About</a> [2803] => · <a href=/terms/>Terms</a> [2804] => </div> [2805] => <p id=copyright>© 2023 Osbo Design</p> [2806] => </footer> [2807] => <div id=foreground-header> [2808] => <a href=/><img alt=Home id=home src=/assets/svg/Home.svg title=Home></a> [2809] => <img alt=Menu id=menu src=/assets/svg/Menu.svg title=Menu> [2810] => <form action=/search/> [2811] => <input id=search-site name=search-site title=Search type=search> [2812] => </form> [2813] => </div> [2814] => <div id=foreground-footer> [2815] => <a href=#><img alt=Top id=top src=/assets/svg/Top.svg title=Top></a> [2816] => </div> [2817] => </body> [2818] => </html> )
2 · 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/ 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 margin"> [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/">HTML</a> [27] => </body> [28] => </html></textarea> [29] => <input id=input11 title=Reset type=button value=↻> [30] => <input id=input21 title=Editor type=button value=→> [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 margin"> [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/">CSS</a> [56] => </body> [57] => </html></textarea> [58] => <input id=input12 title=Reset type=button value=↻> [59] => <input id=input22 title=Editor type=button value=→> [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 margin"> [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/">JS</a> [85] => <script> [86] => function myfunction() [87] => { [88] => const myelement = document.querySelector("a"); [89] => const mystyle = myelement.style; [90] => mystyle.position = "absolute"; [91] => mystyle.left = Math.random() * (window.innerWidth - myelement.offsetWidth) + "px"; [92] => mystyle.top = Math.random() * (window.innerHeight - myelement.offsetHeight) + "px"; [93] => } [94] => document.querySelector("a").addEventListener("mouseout", myfunction); [95] => </script> [96] => </body> [97] => </html></textarea> [98] => <input id=input13 title=Reset type=button value=↻> [99] => <input id=input23 title=Editor type=button value=→> [100] => </form> [101] => <iframe id=iframe3 title=Editor></iframe> [102] => </div> [103] => <h2 id=php><a href=#php>PHP</a></h2> [104] => <div class="editor3 margin"> [105] => <pre><? [106] => [107] => echo '<!doctype html> [108] => <html> [109] => <head> [110] => <title>PHP</title> [111] => <style> [112] => a [113] => { [114] => background-color: rgba(255,0,255,0.1); [115] => color: purple; [116] => } [117] => a:hover [118] => { [119] => background-color: rgba(0,0,0,0.1); [120] => color: black; [121] => } [122] => </style> [123] => </head> [124] => <body> [125] => <a href="/php/">PHP</a> [126] => <script> [127] => function myfunction() [128] => { [129] => const myelement = document.querySelector("a"); [130] => const mystyle = myelement.style; [131] => mystyle.position = "absolute"; [132] => mystyle.left = Math.random() * (window.innerWidth - myelement.offsetWidth) + "px"; [133] => mystyle.top = Math.random() * (window.innerHeight - myelement.offsetHeight) + "px"; [134] => } [135] => document.querySelector("a").addEventListener("mouseout", myfunction); [136] => </script> [137] => </body> [138] => </html>'; [139] => [140] => ?></pre> [141] => <pre><!doctype html> [142] => <html> [143] => <head> [144] => <title>PHP</title> [145] => <style> [146] => a [147] => { [148] => background-color: rgba(255,0,255,0.1); [149] => color: purple; [150] => } [151] => a:hover [152] => { [153] => background-color: rgba(0,0,0,0.1); [154] => color: black; [155] => } [156] => </style> [157] => </head> [158] => <body> [159] => <a href="/php/">PHP</a> [160] => <script> [161] => function myfunction() [162] => { [163] => const myelement = document.querySelector("a"); [164] => const mystyle = myelement.style; [165] => mystyle.position = "absolute"; [166] => mystyle.left = Math.random() * (window.innerWidth - myelement.offsetWidth) + "px"; [167] => mystyle.top = Math.random() * (window.innerHeight - myelement.offsetHeight) + "px"; [168] => } [169] => document.querySelector("a").addEventListener("mouseout", myfunction); [170] => </script> [171] => </body> [172] => </html></pre> [173] => <iframe srcdoc="<!doctype html> [174] => <html> [175] => <head> [176] => <title>PHP</title> [177] => <style> [178] => a [179] => { [180] => background-color: rgba(255,0,255,0.1); [181] => color: purple; [182] => } [183] => a:hover [184] => { [185] => background-color: rgba(0,0,0,0.1); [186] => color: black; [187] => } [188] => </style> [189] => </head> [190] => <body> [191] => <a href="/php/">PHP</a> [192] => <script> [193] => function myfunction() [194] => { [195] => const myelement = document.querySelector("a"); [196] => const mystyle = myelement.style; [197] => mystyle.position = "absolute"; [198] => mystyle.left = Math.random() * (window.innerWidth - myelement.offsetWidth) + "px"; [199] => mystyle.top = Math.random() * (window.innerHeight - myelement.offsetHeight) + "px"; [200] => } [201] => document.querySelector("a").addEventListener("mouseout", myfunction); [202] => </script> [203] => </body> [204] => </html>" title=Editor></iframe> [205] => </div> [206] => <h2 id=svg><a href=#svg>SVG</a></h2> [207] => <div class="editor1 margin"> [208] => <form id=form4> [209] => <textarea id=textarea4 spellcheck=false title=Edit><svg xmlns="http://www.w3.org/2000/svg"> [210] => <rect fill="yellow" height="100%" opacity="0.1" width="100%"/> [211] => <a href="/svg/"> [212] => <circle cx="50%" cy="50%" fill="yellow" r="50vh"/> [213] => <text dominant-baseline="middle" text-anchor="middle" x="50%" y="50%">SVG</text> [214] => </a> [215] => </svg></textarea> [216] => <input id=input14 title=Reset type=button value=↻> [217] => <input id=input24 title=Editor type=button value=→> [218] => </form> [219] => <iframe id=iframe4 title=Editor></iframe> [220] => </div> [221] => </main> [222] => <nav> [223] => <div class=nav-h1> [224] => <p><a href=/Jesus/>JESUS</a></p> [225] => </div> [226] => <div class=nav-h1> [227] => <p><a id=nav-switch-Bible>BIBLE</a></p> [228] => </div> [229] => <div id=nav-content-Bible> [230] => <h2 id=overview><a href=#overview>Overview</a></h2> [231] => <div class=margin> [232] => <p><a href=/Bible/>Overview</a></p> [233] => </div> [234] => <h2 id=search><a href=#search>Search</a></h2> [235] => <div class=margin> [236] => <p><a href=/Bible/search/>Search</a></p> [237] => </div> [238] => <h2 id=download><a href=#download>Download</a></h2> [239] => <div class=margin> [240] => <p><a href=/Bible/download/>Download</a></p> [241] => </div> [242] => <h2 id=العربية><a href=#العربية>العربية</a></h2> [243] => <div class=margin> [244] => <p><a href=/Bible/asvd/>ASVD الكتاب المقدس ترجمة فانديك وسميث</a></p> [245] => </div> [246] => <h2 id=česky><a href=#česky>česky</a></h2> [247] => <div class=margin> [248] => <p><a href=/Bible/csbkr/>CSBKR Bible Kralická 1613</a></p> [249] => </div> [250] => <h2 id=dansk><a href=#dansk>Dansk</a></h2> [251] => <div class=margin> [252] => <p><a href=/Bible/da1871/>DA1871 Danske Bibel 1871</a></p> [253] => </div> [254] => <h2 id=deutsch><a href=#deutsch>Deutsch</a></h2> [255] => <div class=margin> [256] => <p><a href=/Bible/delut/>DELUT Luther Bible 1912</a></p> [257] => <p><a href=/Bible/elb/>ELB Elberfelder 1905</a></p> [258] => <p><a href=/Bible/elb71/>ELB71 Elberfelder 1871</a></p> [259] => </div> [260] => <h2 id=english><a href=#english>English</a></h2> [261] => <div class=margin> [262] => <p><a href=/Bible/asv/>ASV American Standard Version</a></p> [263] => <p><a href=/Bible/kjv/>KJV King James Version</a></p> [264] => <p><a href=/Bible/web/>WEB World English Bible</a></p> [265] => </div> [266] => <h2 id=español><a href=#español>Español</a></h2> [267] => <div class=margin> [268] => <p><a href=/Bible/rves/>RVES Reina-Valera Antigua</a></p> [269] => </div> [270] => <h2 id=suomi><a href=#suomi>Suomi</a></h2> [271] => <div class=margin> [272] => <p><a href=/Bible/fi1776/>FI1776 Finnish 1776</a></p> [273] => <p><a href=/Bible/finpr/>FINPR Finnish 1938</a></p> [274] => </div> [275] => <h2 id=français><a href=#français>Français</a></h2> [276] => <div class=margin> [277] => <p><a href=/Bible/fmar/>FMAR Martin 1744</a></p> [278] => <p><a href=/Bible/frdby/>FRDBY Bible Darby en français</a></p> [279] => <p><a href=/Bible/lsg/>LSG Louis Segond 1910</a></p> [280] => <p><a href=/Bible/ost/>OST Ostervald</a></p> [281] => </div> [282] => <h2 id=magyar><a href=#magyar>Magyar</a></h2> [283] => <div class=margin> [284] => <p><a href=/Bible/kar/>KAR Károli 1590</a></p> [285] => </div> [286] => <h2 id=bahasa-indonesia><a href=#bahasa-indonesia>Bahasa Indonesia</a></h2> [287] => <div class=margin> [288] => <p><a href=/Bible/idbar/>IDBAR Terjemahan Baru</a></p> [289] => </div> [290] => <h2 id=italiano><a href=#italiano>Italiano</a></h2> [291] => <div class=margin> [292] => <p><a href=/Bible/igd/>IGD Giovanni Diodati Bibbia</a></p> [293] => <p><a href=/Bible/itriv/>ITRIV Italian Riveduta 1927</a></p> [294] => </div> [295] => <h2 id=日本語><a href=#日本語>日本語</a></h2> [296] => <div class=margin> [297] => <p><a href=/Bible/ja1955/>JA1955 Colloquial Japanese (1955)</a></p> [298] => </div> [299] => <h2 id=malagasy><a href=#malagasy>Malagasy</a></h2> [300] => <div class=margin> [301] => <p><a href=/Bible/mg1865/>MG1865 Malagasy Bible</a></p> [302] => </div> [303] => <h2 id=te-reo-māori><a href=#te-reo-māori>te reo Māori</a></h2> [304] => <div class=margin> [305] => <p><a href=/Bible/maor/>MAOR Maori Bible</a></p> [306] => </div> [307] => <h2 id=한국어><a href=#한국어>한국어</a></h2> [308] => <div class=margin> [309] => <p><a href=/Bible/korvb/>KORVB 개역한글</a></p> [310] => </div> [311] => <h2 id=nederlands><a href=#nederlands>Nederlands</a></h2> [312] => <div class=margin> [313] => <p><a href=/Bible/sv1750/>SV1750 Statenvertaling</a></p> [314] => </div> [315] => <h2 id=norsk><a href=#norsk>Norsk</a></h2> [316] => <div class=margin> [317] => <p><a href=/Bible/norsk/>NORSK Det Norsk Bibelselskap 1930</a></p> [318] => </div> [319] => <h2 id=polski><a href=#polski>Polski</a></h2> [320] => <div class=margin> [321] => <p><a href=/Bible/pbg/>PBG Biblia Gdańska</a></p> [322] => </div> [323] => <h2 id=português><a href=#português>Português</a></h2> [324] => <div class=margin> [325] => <p><a href=/Bible/aa/>AA Almeida Atualizada</a></p> [326] => </div> [327] => <h2 id=română><a href=#română>Română</a></h2> [328] => <div class=margin> [329] => <p><a href=/Bible/rmnn/>RMNN Romanian Cornilescu 1928</a></p> [330] => <p><a href=/Bible/vdc/>VDC Versiunea Dumitru Cornilescu</a></p> [331] => <p><a href=/Bible/vdcc/>VDCC Versiunea Dumitru Cornilescu Corectată</a></p> [332] => </div> [333] => <h2 id=pyccкий><a href=#pyccкий>Pyccкий</a></h2> [334] => <div class=margin> [335] => <p><a href=/Bible/rursv/>RURSV Синодальный перевод</a></p> [336] => </div> [337] => <h2 id=shqip><a href=#shqip>Shqip</a></h2> [338] => <div class=margin> [339] => <p><a href=/Bible/albb/>ALBB Albanian Bible</a></p> [340] => </div> [341] => <h2 id=svenska><a href=#svenska>Svenska</a></h2> [342] => <div class=margin> [343] => <p><a href=/Bible/sk73/>SK73 Karl XII 1873</a></p> [344] => <p><a href=/Bible/sven/>SVEN Svenska 1917</a></p> [345] => </div> [346] => <h2 id=wikang-tagalog><a href=#wikang-tagalog>Wikang Tagalog</a></h2> [347] => <div class=margin> [348] => <p><a href=/Bible/tlab/>TLAB Ang Biblia</a></p> [349] => </div> [350] => <h2 id=українська><a href=#українська>українська</a></h2> [351] => <div class=margin> [352] => <p><a href=/Bible/ubio/>UBIO Біблія в пер. Івана Огієнка, 1962</a></p> [353] => <p><a href=/Bible/ukrk/>UKRK Біблія в пер. П.Куліша та І.Пулюя, 1905</a></p> [354] => </div> [355] => <h2 id=tiếng-việt><a href=#tiếng-việt>Tiếng Việt</a></h2> [356] => <div class=margin> [357] => <p><a href=/Bible/vi1934/>VI1934 1934 Vietnamese Bible</a></p> [358] => </div> [359] => <h2 id=简体中文><a href=#简体中文>简体中文</a></h2> [360] => <div class=margin> [361] => <p><a href=/Bible/cuvs/>CUVS 简体和合本</a></p> [362] => </div> [363] => <h2 id=繁體中文><a href=#繁體中文>繁體中文</a></h2> [364] => <div class=margin> [365] => <p><a href=/Bible/cuv/>CUV 和合本</a></p> [366] => </div> [367] => </div> [368] => <div class=nav-h1> [369] => <p><a id=nav-switch-html>HTML</a></p> [370] => </div> [371] => <div id=nav-content-html> [372] => <h2 id=overview><a href=#overview>Overview</a></h2> [373] => <div class=margin> [374] => <p><a href=/html/>Overview</a></p> [375] => </div> [376] => <h2 id=attributes><a href=#attributes>Attributes</a></h2> [377] => <div class=margin> [378] => <p><a href=/html/attributes/accesskey/>accesskey</a></p> [379] => <p><a href=/html/attributes/autocapitalize/>autocapitalize</a></p> [380] => <p><a href=/html/attributes/class/>class</a></p> [381] => <p><a href=/html/attributes/contenteditable/>contenteditable</a></p> [382] => <p><a href=/html/attributes/data/>data</a></p> [383] => <p><a href=/html/attributes/dir/>dir</a></p> [384] => <p><a href=/html/attributes/draggable/>draggable</a></p> [385] => <p><a href=/html/attributes/hidden/>hidden</a></p> [386] => <p><a href=/html/attributes/id/>id</a></p> [387] => <p><a href=/html/attributes/inputmode/>inputmode</a></p> [388] => <p><a href=/html/attributes/is/>is</a></p> [389] => <p><a href=/html/attributes/lang/>lang</a></p> [390] => <p><a href=/html/attributes/spellcheck/>spellcheck</a></p> [391] => <p><a href=/html/attributes/style/>style</a></p> [392] => <p><a href=/html/attributes/tabindex/>tabindex</a></p> [393] => <p><a href=/html/attributes/title/>title</a></p> [394] => </div> [395] => <h2 id=elements><a href=#elements>Elements</a></h2> [396] => <div class=margin> [397] => <p><a href=/html/elements/!doctype/>!doctype</a></p> [398] => <p><a href=/html/elements/a/>a</a></p> [399] => <p><a href=/html/elements/abbr/>abbr</a></p> [400] => <p><a href=/html/elements/address/>address</a></p> [401] => <p><a href=/html/elements/area/>area</a></p> [402] => <p><a href=/html/elements/article/>article</a></p> [403] => <p><a href=/html/elements/aside/>aside</a></p> [404] => <p><a href=/html/elements/audio/>audio</a></p> [405] => <p><a href=/html/elements/b/>b</a></p> [406] => <p><a href=/html/elements/base/>base</a></p> [407] => <p><a href=/html/elements/bdi/>bdi</a></p> [408] => <p><a href=/html/elements/bdo/>bdo</a></p> [409] => <p><a href=/html/elements/blockquote/>blockquote</a></p> [410] => <p><a href=/html/elements/body/>body</a></p> [411] => <p><a href=/html/elements/br/>br</a></p> [412] => <p><a href=/html/elements/button/>button</a></p> [413] => <p><a href=/html/elements/canvas/>canvas</a></p> [414] => <p><a href=/html/elements/caption/>caption</a></p> [415] => <p><a href=/html/elements/cite/>cite</a></p> [416] => <p><a href=/html/elements/code/>code</a></p> [417] => <p><a href=/html/elements/col/>col</a></p> [418] => <p><a href=/html/elements/colgroup/>colgroup</a></p> [419] => <p><a href=/html/elements/data/>data</a></p> [420] => <p><a href=/html/elements/datalist/>datalist</a></p> [421] => <p><a href=/html/elements/dd/>dd</a></p> [422] => <p><a href=/html/elements/del/>del</a></p> [423] => <p><a href=/html/elements/details/>details</a></p> [424] => <p><a href=/html/elements/dfn/>dfn</a></p> [425] => <p><a href=/html/elements/dialog/>dialog</a></p> [426] => <p><a href=/html/elements/div/>div</a></p> [427] => <p><a href=/html/elements/dl/>dl</a></p> [428] => <p><a href=/html/elements/dt/>dt</a></p> [429] => <p><a href=/html/elements/em/>em</a></p> [430] => <p><a href=/html/elements/embed/>embed</a></p> [431] => <p><a href=/html/elements/fieldset/>fieldset</a></p> [432] => <p><a href=/html/elements/figcaption/>figcaption</a></p> [433] => <p><a href=/html/elements/figure/>figure</a></p> [434] => <p><a href=/html/elements/footer/>footer</a></p> [435] => <p><a href=/html/elements/form/>form</a></p> [436] => <p><a href=/html/elements/h1/>h1</a></p> [437] => <p><a href=/html/elements/h2/>h2</a></p> [438] => <p><a href=/html/elements/h3/>h3</a></p> [439] => <p><a href=/html/elements/h4/>h4</a></p> [440] => <p><a href=/html/elements/h5/>h5</a></p> [441] => <p><a href=/html/elements/h6/>h6</a></p> [442] => <p><a href=/html/elements/head/>head</a></p> [443] => <p><a href=/html/elements/header/>header</a></p> [444] => <p><a href=/html/elements/hgroup/>hgroup</a></p> [445] => <p><a href=/html/elements/hr/>hr</a></p> [446] => <p><a href=/html/elements/html/>html</a></p> [447] => <p><a href=/html/elements/i/>i</a></p> [448] => <p><a href=/html/elements/iframe/>iframe</a></p> [449] => <p><a href=/html/elements/img/>img</a></p> [450] => <p><a href=/html/elements/input/>input</a></p> [451] => <p><a href=/html/elements/ins/>ins</a></p> [452] => <p><a href=/html/elements/kbd/>kbd</a></p> [453] => <p><a href=/html/elements/label/>label</a></p> [454] => <p><a href=/html/elements/legend/>legend</a></p> [455] => <p><a href=/html/elements/li/>li</a></p> [456] => <p><a href=/html/elements/link/>link</a></p> [457] => <p><a href=/html/elements/main/>main</a></p> [458] => <p><a href=/html/elements/map/>map</a></p> [459] => <p><a href=/html/elements/mark/>mark</a></p> [460] => <p><a href=/html/elements/menu/>menu</a></p> [461] => <p><a href=/html/elements/meta/>meta</a></p> [462] => <p><a href=/html/elements/meter/>meter</a></p> [463] => <p><a href=/html/elements/nav/>nav</a></p> [464] => <p><a href=/html/elements/noscript/>noscript</a></p> [465] => <p><a href=/html/elements/object/>object</a></p> [466] => <p><a href=/html/elements/ol/>ol</a></p> [467] => <p><a href=/html/elements/optgroup/>optgroup</a></p> [468] => <p><a href=/html/elements/option/>option</a></p> [469] => <p><a href=/html/elements/output/>output</a></p> [470] => <p><a href=/html/elements/p/>p</a></p> [471] => <p><a href=/html/elements/param/>param</a></p> [472] => <p><a href=/html/elements/picture/>picture</a></p> [473] => <p><a href=/html/elements/pre/>pre</a></p> [474] => <p><a href=/html/elements/progress/>progress</a></p> [475] => <p><a href=/html/elements/q/>q</a></p> [476] => <p><a href=/html/elements/rb/>rb</a></p> [477] => <p><a href=/html/elements/rp/>rp</a></p> [478] => <p><a href=/html/elements/rt/>rt</a></p> [479] => <p><a href=/html/elements/rtc/>rtc</a></p> [480] => <p><a href=/html/elements/ruby/>ruby</a></p> [481] => <p><a href=/html/elements/s/>s</a></p> [482] => <p><a href=/html/elements/samp/>samp</a></p> [483] => <p><a href=/html/elements/script/>script</a></p> [484] => <p><a href=/html/elements/section/>section</a></p> [485] => <p><a href=/html/elements/select/>select</a></p> [486] => <p><a href=/html/elements/slot/>slot</a></p> [487] => <p><a href=/html/elements/small/>small</a></p> [488] => <p><a href=/html/elements/source/>source</a></p> [489] => <p><a href=/html/elements/span/>span</a></p> [490] => <p><a href=/html/elements/strong/>strong</a></p> [491] => <p><a href=/html/elements/style/>style</a></p> [492] => <p><a href=/html/elements/sub/>sub</a></p> [493] => <p><a href=/html/elements/summary/>summary</a></p> [494] => <p><a href=/html/elements/sup/>sup</a></p> [495] => <p><a href=/html/elements/table/>table</a></p> [496] => <p><a href=/html/elements/tbody/>tbody</a></p> [497] => <p><a href=/html/elements/td/>td</a></p> [498] => <p><a href=/html/elements/template/>template</a></p> [499] => <p><a href=/html/elements/textarea/>textarea</a></p> [500] => <p><a href=/html/elements/tfoot/>tfoot</a></p> [501] => <p><a href=/html/elements/th/>th</a></p> [502] => <p><a href=/html/elements/thead/>thead</a></p> [503] => <p><a href=/html/elements/time/>time</a></p> [504] => <p><a href=/html/elements/title/>title</a></p> [505] => <p><a href=/html/elements/tr/>tr</a></p> [506] => <p><a href=/html/elements/track/>track</a></p> [507] => <p><a href=/html/elements/u/>u</a></p> [508] => <p><a href=/html/elements/ul/>ul</a></p> [509] => <p><a href=/html/elements/var/>var</a></p> [510] => <p><a href=/html/elements/video/>video</a></p> [511] => <p><a href=/html/elements/wbr/>wbr</a></p> [512] => </div> [513] => <h2 id=other><a href=#other>Other</a></h2> [514] => <div class=margin> [515] => <p><a href=/html/characters/>Characters</a></p> [516] => <p><a href=/html/comments/>Comments</a></p> [517] => <p><a href=/html/datatypes/>Datatypes</a></p> [518] => </div> [519] => </div> [520] => <div class=nav-h1> [521] => <p><a id=nav-switch-css>CSS</a></p> [522] => </div> [523] => <div id=nav-content-css> [524] => <h2 id=overview><a href=#overview>Overview</a></h2> [525] => <div class=margin> [526] => <p><a href=/css/>Overview</a></p> [527] => </div> [528] => <h2 id=functions><a href=#functions>Functions</a></h2> [529] => <div class=margin> [530] => <p><a href=/css/functions/abs/>abs</a></p> [531] => <p><a href=/css/functions/calc/>calc</a></p> [532] => </div> [533] => <h2 id=properties><a href=#properties>Properties</a></h2> [534] => <div class=margin> [535] => <p><a href=/css/properties/accent-color/>accent-color</a></p> [536] => <p><a href=/css/properties/align-content/>align-content</a></p> [537] => <p><a href=/css/properties/align-items/>align-items</a></p> [538] => <p><a href=/css/properties/align-self/>align-self</a></p> [539] => <p><a href=/css/properties/all/>all</a></p> [540] => <p><a href=/css/properties/animation/>animation</a></p> [541] => <p><a href=/css/properties/animation-delay/>animation-delay</a></p> [542] => <p><a href=/css/properties/animation-direction/>animation-direction</a></p> [543] => <p><a href=/css/properties/animation-duration/>animation-duration</a></p> [544] => <p><a href=/css/properties/animation-fill-mode/>animation-fill-mode</a></p> [545] => <p><a href=/css/properties/animation-iteration-count/>animation-iteration-count</a></p> [546] => <p><a href=/css/properties/animation-name/>animation-name</a></p> [547] => <p><a href=/css/properties/animation-play-state/>animation-play-state</a></p> [548] => <p><a href=/css/properties/animation-timing-function/>animation-timing-function</a></p> [549] => <p><a href=/css/properties/appearance/>appearance</a></p> [550] => <p><a href=/css/properties/aspect-ratio/>aspect-ratio</a></p> [551] => <p><a href=/css/properties/backdrop-filter/>backdrop-filter</a></p> [552] => <p><a href=/css/properties/backface-visibility/>backface-visibility</a></p> [553] => <p><a href=/css/properties/background/>background</a></p> [554] => <p><a href=/css/properties/background-attachment/>background-attachment</a></p> [555] => <p><a href=/css/properties/background-blend-mode/>background-blend-mode</a></p> [556] => <p><a href=/css/properties/background-clip/>background-clip</a></p> [557] => <p><a href=/css/properties/background-color/>background-color</a></p> [558] => <p><a href=/css/properties/background-image/>background-image</a></p> [559] => <p><a href=/css/properties/background-origin/>background-origin</a></p> [560] => <p><a href=/css/properties/background-position/>background-position</a></p> [561] => <p><a href=/css/properties/background-position-x/>background-position-x</a></p> [562] => <p><a href=/css/properties/background-position-y/>background-position-y</a></p> [563] => <p><a href=/css/properties/background-repeat/>background-repeat</a></p> [564] => <p><a href=/css/properties/background-size/>background-size</a></p> [565] => <p><a href=/css/properties/block-ellipsis/>block-ellipsis</a></p> [566] => <p><a href=/css/properties/block-size/>block-size</a></p> [567] => <p><a href=/css/properties/border/>border</a></p> [568] => <p><a href=/css/properties/border-block/>border-block</a></p> [569] => <p><a href=/css/properties/border-block-color/>border-block-color</a></p> [570] => <p><a href=/css/properties/border-block-end/>border-block-end</a></p> [571] => <p><a href=/css/properties/border-block-end-color/>border-block-end-color</a></p> [572] => <p><a href=/css/properties/border-block-end-style/>border-block-end-style</a></p> [573] => <p><a href=/css/properties/border-block-end-width/>border-block-end-width</a></p> [574] => <p><a href=/css/properties/border-block-start/>border-block-start</a></p> [575] => <p><a href=/css/properties/border-block-start-color/>border-block-start-color</a></p> [576] => <p><a href=/css/properties/border-block-start-style/>border-block-start-style</a></p> [577] => <p><a href=/css/properties/border-block-start-width/>border-block-start-width</a></p> [578] => <p><a href=/css/properties/border-block-style/>border-block-style</a></p> [579] => <p><a href=/css/properties/border-block-width/>border-block-width</a></p> [580] => <p><a href=/css/properties/border-bottom/>border-bottom</a></p> [581] => <p><a href=/css/properties/border-bottom-color/>border-bottom-color</a></p> [582] => <p><a href=/css/properties/border-bottom-left-radius/>border-bottom-left-radius</a></p> [583] => <p><a href=/css/properties/border-bottom-right-radius/>border-bottom-right-radius</a></p> [584] => <p><a href=/css/properties/border-bottom-style/>border-bottom-style</a></p> [585] => <p><a href=/css/properties/border-bottom-width/>border-bottom-width</a></p> [586] => <p><a href=/css/properties/border-collapse/>border-collapse</a></p> [587] => <p><a href=/css/properties/border-color/>border-color</a></p> [588] => <p><a href=/css/properties/border-end-end-radius/>border-end-end-radius</a></p> [589] => <p><a href=/css/properties/border-end-start-radius/>border-end-start-radius</a></p> [590] => <p><a href=/css/properties/border-image/>border-image</a></p> [591] => <p><a href=/css/properties/border-image-outset/>border-image-outset</a></p> [592] => <p><a href=/css/properties/border-image-repeat/>border-image-repeat</a></p> [593] => <p><a href=/css/properties/border-image-slice/>border-image-slice</a></p> [594] => <p><a href=/css/properties/border-image-source/>border-image-source</a></p> [595] => <p><a href=/css/properties/border-image-width/>border-image-width</a></p> [596] => <p><a href=/css/properties/border-inline/>border-inline</a></p> [597] => <p><a href=/css/properties/border-inline-color/>border-inline-color</a></p> [598] => <p><a href=/css/properties/border-inline-end/>border-inline-end</a></p> [599] => <p><a href=/css/properties/border-inline-end-color/>border-inline-end-color</a></p> [600] => <p><a href=/css/properties/border-inline-end-style/>border-inline-end-style</a></p> [601] => <p><a href=/css/properties/border-inline-end-width/>border-inline-end-width</a></p> [602] => <p><a href=/css/properties/border-inline-start/>border-inline-start</a></p> [603] => <p><a href=/css/properties/border-inline-start-color/>border-inline-start-color</a></p> [604] => <p><a href=/css/properties/border-inline-start-style/>border-inline-start-style</a></p> [605] => <p><a href=/css/properties/border-inline-start-width/>border-inline-start-width</a></p> [606] => <p><a href=/css/properties/border-inline-style/>border-inline-style</a></p> [607] => <p><a href=/css/properties/border-inline-width/>border-inline-width</a></p> [608] => <p><a href=/css/properties/border-left/>border-left</a></p> [609] => <p><a href=/css/properties/border-left-color/>border-left-color</a></p> [610] => <p><a href=/css/properties/border-left-style/>border-left-style</a></p> [611] => <p><a href=/css/properties/border-left-width/>border-left-width</a></p> [612] => <p><a href=/css/properties/border-radius/>border-radius</a></p> [613] => <p><a href=/css/properties/border-right/>border-right</a></p> [614] => <p><a href=/css/properties/border-right-color/>border-right-color</a></p> [615] => <p><a href=/css/properties/border-right-style/>border-right-style</a></p> [616] => <p><a href=/css/properties/border-right-width/>border-right-width</a></p> [617] => <p><a href=/css/properties/border-spacing/>border-spacing</a></p> [618] => <p><a href=/css/properties/border-start-end-radius/>border-start-end-radius</a></p> [619] => <p><a href=/css/properties/border-start-start-radius/>border-start-start-radius</a></p> [620] => <p><a href=/css/properties/border-style/>border-style</a></p> [621] => <p><a href=/css/properties/border-top/>border-top</a></p> [622] => <p><a href=/css/properties/border-top-color/>border-top-color</a></p> [623] => <p><a href=/css/properties/border-top-left-radius/>border-top-left-radius</a></p> [624] => <p><a href=/css/properties/border-top-right-radius/>border-top-right-radius</a></p> [625] => <p><a href=/css/properties/border-top-style/>border-top-style</a></p> [626] => <p><a href=/css/properties/border-top-width/>border-top-width</a></p> [627] => <p><a href=/css/properties/border-width/>border-width</a></p> [628] => <p><a href=/css/properties/bottom/>bottom</a></p> [629] => <p><a href=/css/properties/box-decoration-break/>box-decoration-break</a></p> [630] => <p><a href=/css/properties/box-shadow/>box-shadow</a></p> [631] => <p><a href=/css/properties/box-sizing/>box-sizing</a></p> [632] => <p><a href=/css/properties/caption-side/>caption-side</a></p> [633] => <p><a href=/css/properties/caret/>caret</a></p> [634] => <p><a href=/css/properties/caret-color/>caret-color</a></p> [635] => <p><a href=/css/properties/caret-shape/>caret-shape</a></p> [636] => <p><a href=/css/properties/clear/>clear</a></p> [637] => <p><a href=/css/properties/clip/>clip</a></p> [638] => <p><a href=/css/properties/clip-path/>clip-path</a></p> [639] => <p><a href=/css/properties/color/>color</a></p> [640] => <p><a href=/css/properties/color-scheme/>color-scheme</a></p> [641] => <p><a href=/css/properties/column-count/>column-count</a></p> [642] => <p><a href=/css/properties/column-fill/>column-fill</a></p> [643] => <p><a href=/css/properties/column-gap/>column-gap</a></p> [644] => <p><a href=/css/properties/column-rule/>column-rule</a></p> [645] => <p><a href=/css/properties/column-rule-color/>column-rule-color</a></p> [646] => <p><a href=/css/properties/column-rule-style/>column-rule-style</a></p> [647] => <p><a href=/css/properties/column-rule-width/>column-rule-width</a></p> [648] => <p><a href=/css/properties/column-span/>column-span</a></p> [649] => <p><a href=/css/properties/column-width/>column-width</a></p> [650] => <p><a href=/css/properties/columns/>columns</a></p> [651] => <p><a href=/css/properties/contain/>contain</a></p> [652] => <p><a href=/css/properties/container/>container</a></p> [653] => <p><a href=/css/properties/container-name/>container-name</a></p> [654] => <p><a href=/css/properties/container-type/>container-type</a></p> [655] => <p><a href=/css/properties/content/>content</a></p> [656] => <p><a href=/css/properties/content-visibility/>content-visibility</a></p> [657] => <p><a href=/css/properties/continue/>continue</a></p> [658] => <p><a href=/css/properties/counter-increment/>counter-increment</a></p> [659] => <p><a href=/css/properties/counter-reset/>counter-reset</a></p> [660] => <p><a href=/css/properties/counter-set/>counter-set</a></p> [661] => <p><a href=/css/properties/cursor/>cursor</a></p> [662] => <p><a href=/css/properties/direction/>direction</a></p> [663] => <p><a href=/css/properties/display/>display</a></p> [664] => <p><a href=/css/properties/empty-cells/>empty-cells</a></p> [665] => <p><a href=/css/properties/filter/>filter</a></p> [666] => <p><a href=/css/properties/flex/>flex</a></p> [667] => <p><a href=/css/properties/flex-basis/>flex-basis</a></p> [668] => <p><a href=/css/properties/flex-direction/>flex-direction</a></p> [669] => <p><a href=/css/properties/flex-flow/>flex-flow</a></p> [670] => <p><a href=/css/properties/flex-grow/>flex-grow</a></p> [671] => <p><a href=/css/properties/flex-shrink/>flex-shrink</a></p> [672] => <p><a href=/css/properties/flex-wrap/>flex-wrap</a></p> [673] => <p><a href=/css/properties/float/>float</a></p> [674] => <p><a href=/css/properties/font/>font</a></p> [675] => <p><a href=/css/properties/font-family/>font-family</a></p> [676] => <p><a href=/css/properties/font-feature-settings/>font-feature-settings</a></p> [677] => <p><a href=/css/properties/font-kerning/>font-kerning</a></p> [678] => <p><a href=/css/properties/font-optical-sizing/>font-optical-sizing</a></p> [679] => <p><a href=/css/properties/font-size/>font-size</a></p> [680] => <p><a href=/css/properties/font-size-adjust/>font-size-adjust</a></p> [681] => <p><a href=/css/properties/font-stretch/>font-stretch</a></p> [682] => <p><a href=/css/properties/font-style/>font-style</a></p> [683] => <p><a href=/css/properties/font-variant/>font-variant</a></p> [684] => <p><a href=/css/properties/font-variant-caps/>font-variant-caps</a></p> [685] => <p><a href=/css/properties/font-variant-ligatures/>font-variant-ligatures</a></p> [686] => <p><a href=/css/properties/font-variant-numeric/>font-variant-numeric</a></p> [687] => <p><a href=/css/properties/font-variant-position/>font-variant-position</a></p> [688] => <p><a href=/css/properties/font-variation-settings/>font-variation-settings</a></p> [689] => <p><a href=/css/properties/font-weight/>font-weight</a></p> [690] => <p><a href=/css/properties/forced-color-adjust/>forced-color-adjust</a></p> [691] => <p><a href=/css/properties/gap/>gap</a></p> [692] => <p><a href=/css/properties/grid/>grid</a></p> [693] => <p><a href=/css/properties/grid-area/>grid-area</a></p> [694] => <p><a href=/css/properties/grid-auto-columns/>grid-auto-columns</a></p> [695] => <p><a href=/css/properties/grid-auto-flow/>grid-auto-flow</a></p> [696] => <p><a href=/css/properties/grid-auto-rows/>grid-auto-rows</a></p> [697] => <p><a href=/css/properties/grid-column/>grid-column</a></p> [698] => <p><a href=/css/properties/grid-column-end/>grid-column-end</a></p> [699] => <p><a href=/css/properties/grid-column-start/>grid-column-start</a></p> [700] => <p><a href=/css/properties/grid-row/>grid-row</a></p> [701] => <p><a href=/css/properties/grid-row-end/>grid-row-end</a></p> [702] => <p><a href=/css/properties/grid-row-start/>grid-row-start</a></p> [703] => <p><a href=/css/properties/grid-template/>grid-template</a></p> [704] => <p><a href=/css/properties/grid-template-areas/>grid-template-areas</a></p> [705] => <p><a href=/css/properties/grid-template-columns/>grid-template-columns</a></p> [706] => <p><a href=/css/properties/grid-template-rows/>grid-template-rows</a></p> [707] => <p><a href=/css/properties/hanging-punctuation/>hanging-punctuation</a></p> [708] => <p><a href=/css/properties/height/>height</a></p> [709] => <p><a href=/css/properties/hyphens/>hyphens</a></p> [710] => <p><a href=/css/properties/image-rendering/>image-rendering</a></p> [711] => <p><a href=/css/properties/inline-size/>inline-size</a></p> [712] => <p><a href=/css/properties/inset/>inset</a></p> [713] => <p><a href=/css/properties/inset-block/>inset-block</a></p> [714] => <p><a href=/css/properties/inset-block-end/>inset-block-end</a></p> [715] => <p><a href=/css/properties/inset-block-start/>inset-block-start</a></p> [716] => <p><a href=/css/properties/inset-inline/>inset-inline</a></p> [717] => <p><a href=/css/properties/inset-inline-end/>inset-inline-end</a></p> [718] => <p><a href=/css/properties/inset-inline-start/>inset-inline-start</a></p> [719] => <p><a href=/css/properties/isolation/>isolation</a></p> [720] => <p><a href=/css/properties/justify-content/>justify-content</a></p> [721] => <p><a href=/css/properties/justify-items/>justify-items</a></p> [722] => <p><a href=/css/properties/justify-self/>justify-self</a></p> [723] => <p><a href=/css/properties/left/>left</a></p> [724] => <p><a href=/css/properties/letter-spacing/>letter-spacing</a></p> [725] => <p><a href=/css/properties/line-break/>line-break</a></p> [726] => <p><a href=/css/properties/line-clamp/>line-clamp</a></p> [727] => <p><a href=/css/properties/line-height/>line-height</a></p> [728] => <p><a href=/css/properties/list-style/>list-style</a></p> [729] => <p><a href=/css/properties/list-style-image/>list-style-image</a></p> [730] => <p><a href=/css/properties/list-style-position/>list-style-position</a></p> [731] => <p><a href=/css/properties/list-style-type/>list-style-type</a></p> [732] => <p><a href=/css/properties/margin/>margin</a></p> [733] => <p><a href=/css/properties/margin-block/>margin-block</a></p> [734] => <p><a href=/css/properties/margin-block-end/>margin-block-end</a></p> [735] => <p><a href=/css/properties/margin-block-start/>margin-block-start</a></p> [736] => <p><a href=/css/properties/margin-bottom/>margin-bottom</a></p> [737] => <p><a href=/css/properties/margin-inline/>margin-inline</a></p> [738] => <p><a href=/css/properties/margin-inline-end/>margin-inline-end</a></p> [739] => <p><a href=/css/properties/margin-inline-start/>margin-inline-start</a></p> [740] => <p><a href=/css/properties/margin-left/>margin-left</a></p> [741] => <p><a href=/css/properties/margin-right/>margin-right</a></p> [742] => <p><a href=/css/properties/margin-top/>margin-top</a></p> [743] => <p><a href=/css/properties/mask/>mask</a></p> [744] => <p><a href=/css/properties/mask-border/>mask-border</a></p> [745] => <p><a href=/css/properties/mask-border-mode/>mask-border-mode</a></p> [746] => <p><a href=/css/properties/mask-border-outset/>mask-border-outset</a></p> [747] => <p><a href=/css/properties/mask-border-repeat/>mask-border-repeat</a></p> [748] => <p><a href=/css/properties/mask-border-slice/>mask-border-slice</a></p> [749] => <p><a href=/css/properties/mask-border-source/>mask-border-source</a></p> [750] => <p><a href=/css/properties/mask-border-width/>mask-border-width</a></p> [751] => <p><a href=/css/properties/mask-clip/>mask-clip</a></p> [752] => <p><a href=/css/properties/mask-composite/>mask-composite</a></p> [753] => <p><a href=/css/properties/mask-image/>mask-image</a></p> [754] => <p><a href=/css/properties/mask-mode/>mask-mode</a></p> [755] => <p><a href=/css/properties/mask-origin/>mask-origin</a></p> [756] => <p><a href=/css/properties/mask-position/>mask-position</a></p> [757] => <p><a href=/css/properties/mask-repeat/>mask-repeat</a></p> [758] => <p><a href=/css/properties/mask-size/>mask-size</a></p> [759] => <p><a href=/css/properties/mask-type/>mask-type</a></p> [760] => <p><a href=/css/properties/max-block-size/>max-block-size</a></p> [761] => <p><a href=/css/properties/max-height/>max-height</a></p> [762] => <p><a href=/css/properties/max-inline-size/>max-inline-size</a></p> [763] => <p><a href=/css/properties/max-lines/>max-lines</a></p> [764] => <p><a href=/css/properties/max-width/>max-width</a></p> [765] => <p><a href=/css/properties/min-block-size/>min-block-size</a></p> [766] => <p><a href=/css/properties/min-height/>min-height</a></p> [767] => <p><a href=/css/properties/min-inline-size/>min-inline-size</a></p> [768] => <p><a href=/css/properties/min-width/>min-width</a></p> [769] => <p><a href=/css/properties/mix-blend-mode/>mix-blend-mode</a></p> [770] => <p><a href=/css/properties/nav-down/>nav-down</a></p> [771] => <p><a href=/css/properties/nav-left/>nav-left</a></p> [772] => <p><a href=/css/properties/nav-right/>nav-right</a></p> [773] => <p><a href=/css/properties/nav-up/>nav-up</a></p> [774] => <p><a href=/css/properties/object-fit/>object-fit</a></p> [775] => <p><a href=/css/properties/object-position/>object-position</a></p> [776] => <p><a href=/css/properties/opacity/>opacity</a></p> [777] => <p><a href=/css/properties/orphans/>orphans</a></p> [778] => <p><a href=/css/properties/outline/>outline</a></p> [779] => <p><a href=/css/properties/outline-color/>outline-color</a></p> [780] => <p><a href=/css/properties/outline-offset/>outline-offset</a></p> [781] => <p><a href=/css/properties/outline-style/>outline-style</a></p> [782] => <p><a href=/css/properties/outline-width/>outline-width</a></p> [783] => <p><a href=/css/properties/overflow/>overflow</a></p> [784] => <p><a href=/css/properties/overflow-block/>overflow-block</a></p> [785] => <p><a href=/css/properties/overflow-clip-margin/>overflow-clip-margin</a></p> [786] => <p><a href=/css/properties/overflow-inline/>overflow-inline</a></p> [787] => <p><a href=/css/properties/overflow-wrap/>overflow-wrap</a></p> [788] => <p><a href=/css/properties/overflow-x/>overflow-x</a></p> [789] => <p><a href=/css/properties/overflow-y/>overflow-y</a></p> [790] => <p><a href=/css/properties/padding/>padding</a></p> [791] => <p><a href=/css/properties/padding-block/>padding-block</a></p> [792] => <p><a href=/css/properties/padding-block-end/>padding-block-end</a></p> [793] => <p><a href=/css/properties/padding-block-start/>padding-block-start</a></p> [794] => <p><a href=/css/properties/padding-bottom/>padding-bottom</a></p> [795] => <p><a href=/css/properties/padding-inline/>padding-inline</a></p> [796] => <p><a href=/css/properties/padding-inline-end/>padding-inline-end</a></p> [797] => <p><a href=/css/properties/padding-inline-start/>padding-inline-start</a></p> [798] => <p><a href=/css/properties/padding-left/>padding-left</a></p> [799] => <p><a href=/css/properties/padding-right/>padding-right</a></p> [800] => <p><a href=/css/properties/padding-top/>padding-top</a></p> [801] => <p><a href=/css/properties/paint-order/>paint-order</a></p> [802] => <p><a href=/css/properties/perspective/>perspective</a></p> [803] => <p><a href=/css/properties/perspective-origin/>perspective-origin</a></p> [804] => <p><a href=/css/properties/place-content/>place-content</a></p> [805] => <p><a href=/css/properties/place-items/>place-items</a></p> [806] => <p><a href=/css/properties/place-self/>place-self</a></p> [807] => <p><a href=/css/properties/pointer-events/>pointer-events</a></p> [808] => <p><a href=/css/properties/position/>position</a></p> [809] => <p><a href=/css/properties/print-color-adjust/>print-color-adjust</a></p> [810] => <p><a href=/css/properties/quotes/>quotes</a></p> [811] => <p><a href=/css/properties/resize/>resize</a></p> [812] => <p><a href=/css/properties/right/>right</a></p> [813] => <p><a href=/css/properties/rotate/>rotate</a></p> [814] => <p><a href=/css/properties/row-gap/>row-gap</a></p> [815] => <p><a href=/css/properties/scale/>scale</a></p> [816] => <p><a href=/css/properties/scroll-behavior/>scroll-behavior</a></p> [817] => <p><a href=/css/properties/scroll-margin/>scroll-margin</a></p> [818] => <p><a href=/css/properties/scroll-margin-block/>scroll-margin-block</a></p> [819] => <p><a href=/css/properties/scroll-margin-block-end/>scroll-margin-block-end</a></p> [820] => <p><a href=/css/properties/scroll-margin-block-start/>scroll-margin-block-start</a></p> [821] => <p><a href=/css/properties/scroll-margin-bottom/>scroll-margin-bottom</a></p> [822] => <p><a href=/css/properties/scroll-margin-inline/>scroll-margin-inline</a></p> [823] => <p><a href=/css/properties/scroll-margin-inline-end/>scroll-margin-inline-end</a></p> [824] => <p><a href=/css/properties/scroll-margin-inline-start/>scroll-margin-inline-start</a></p> [825] => <p><a href=/css/properties/scroll-margin-left/>scroll-margin-left</a></p> [826] => <p><a href=/css/properties/scroll-margin-right/>scroll-margin-right</a></p> [827] => <p><a href=/css/properties/scroll-margin-top/>scroll-margin-top</a></p> [828] => <p><a href=/css/properties/scroll-padding/>scroll-padding</a></p> [829] => <p><a href=/css/properties/scroll-padding-block/>scroll-padding-block</a></p> [830] => <p><a href=/css/properties/scroll-padding-block-end/>scroll-padding-block-end</a></p> [831] => <p><a href=/css/properties/scroll-padding-block-start/>scroll-padding-block-start</a></p> [832] => <p><a href=/css/properties/scroll-padding-bottom/>scroll-padding-bottom</a></p> [833] => <p><a href=/css/properties/scroll-padding-inline/>scroll-padding-inline</a></p> [834] => <p><a href=/css/properties/scroll-padding-inline-end/>scroll-padding-inline-end</a></p> [835] => <p><a href=/css/properties/scroll-padding-inline-start/>scroll-padding-inline-start</a></p> [836] => <p><a href=/css/properties/scroll-padding-left/>scroll-padding-left</a></p> [837] => <p><a href=/css/properties/scroll-padding-right/>scroll-padding-right</a></p> [838] => <p><a href=/css/properties/scroll-padding-top/>scroll-padding-top</a></p> [839] => <p><a href=/css/properties/scroll-snap-align/>scroll-snap-align</a></p> [840] => <p><a href=/css/properties/scroll-snap-stop/>scroll-snap-stop</a></p> [841] => <p><a href=/css/properties/scroll-snap-type/>scroll-snap-type</a></p> [842] => <p><a href=/css/properties/scrollbar-color/>scrollbar-color</a></p> [843] => <p><a href=/css/properties/scrollbar-gutter/>scrollbar-gutter</a></p> [844] => <p><a href=/css/properties/scrollbar-width/>scrollbar-width</a></p> [845] => <p><a href=/css/properties/shape-image-threshold/>shape-image-threshold</a></p> [846] => <p><a href=/css/properties/shape-margin/>shape-margin</a></p> [847] => <p><a href=/css/properties/shape-outside/>shape-outside</a></p> [848] => <p><a href=/css/properties/tab-size/>tab-size</a></p> [849] => <p><a href=/css/properties/table-layout/>table-layout</a></p> [850] => <p><a href=/css/properties/text-align/>text-align</a></p> [851] => <p><a href=/css/properties/text-align-all/>text-align-all</a></p> [852] => <p><a href=/css/properties/text-align-last/>text-align-last</a></p> [853] => <p><a href=/css/properties/text-combine-upright/>text-combine-upright</a></p> [854] => <p><a href=/css/properties/text-decoration/>text-decoration</a></p> [855] => <p><a href=/css/properties/text-decoration-color/>text-decoration-color</a></p> [856] => <p><a href=/css/properties/text-decoration-line/>text-decoration-line</a></p> [857] => <p><a href=/css/properties/text-decoration-skip-ink/>text-decoration-skip-ink</a></p> [858] => <p><a href=/css/properties/text-decoration-style/>text-decoration-style</a></p> [859] => <p><a href=/css/properties/text-decoration-thickness/>text-decoration-thickness</a></p> [860] => <p><a href=/css/properties/text-decoration-trim/>text-decoration-trim</a></p> [861] => <p><a href=/css/properties/text-emphasis/>text-emphasis</a></p> [862] => <p><a href=/css/properties/text-emphasis-color/>text-emphasis-color</a></p> [863] => <p><a href=/css/properties/text-emphasis-position/>text-emphasis-position</a></p> [864] => <p><a href=/css/properties/text-emphasis-style/>text-emphasis-style</a></p> [865] => <p><a href=/css/properties/text-indent/>text-indent</a></p> [866] => <p><a href=/css/properties/text-justify/>text-justify</a></p> [867] => <p><a href=/css/properties/text-orientation/>text-orientation</a></p> [868] => <p><a href=/css/properties/text-overflow/>text-overflow</a></p> [869] => <p><a href=/css/properties/text-shadow/>text-shadow</a></p> [870] => <p><a href=/css/properties/text-transform/>text-transform</a></p> [871] => <p><a href=/css/properties/text-underline-offset/>text-underline-offset</a></p> [872] => <p><a href=/css/properties/text-underline-position/>text-underline-position</a></p> [873] => <p><a href=/css/properties/top/>top</a></p> [874] => <p><a href=/css/properties/transform/>transform</a></p> [875] => <p><a href=/css/properties/transform-box/>transform-box</a></p> [876] => <p><a href=/css/properties/transform-origin/>transform-origin</a></p> [877] => <p><a href=/css/properties/transform-style/>transform-style</a></p> [878] => <p><a href=/css/properties/transition/>transition</a></p> [879] => <p><a href=/css/properties/transition-delay/>transition-delay</a></p> [880] => <p><a href=/css/properties/transition-duration/>transition-duration</a></p> [881] => <p><a href=/css/properties/transition-property/>transition-property</a></p> [882] => <p><a href=/css/properties/transition-timing-function/>transition-timing-function</a></p> [883] => <p><a href=/css/properties/translate/>translate</a></p> [884] => <p><a href=/css/properties/unicode-bidi/>unicode-bidi</a></p> [885] => <p><a href=/css/properties/vertical-align/>vertical-align</a></p> [886] => <p><a href=/css/properties/visibility/>visibility</a></p> [887] => <p><a href=/css/properties/white-space/>white-space</a></p> [888] => <p><a href=/css/properties/widows/>widows</a></p> [889] => <p><a href=/css/properties/width/>width</a></p> [890] => <p><a href=/css/properties/word-break/>word-break</a></p> [891] => <p><a href=/css/properties/word-spacing/>word-spacing</a></p> [892] => <p><a href=/css/properties/word-wrap/>word-wrap</a></p> [893] => <p><a href=/css/properties/writing-mode/>writing-mode</a></p> [894] => <p><a href=/css/properties/z-index/>z-index</a></p> [895] => </div> [896] => <h2 id=pseudo-classes><a href=#pseudo-classes>Pseudo-Classes</a></h2> [897] => <div class=margin> [898] => <p><a href=/css/pseudo-classes/active/>active</a></p> [899] => <p><a href=/css/pseudo-classes/any-link/>any-link</a></p> [900] => <p><a href=/css/pseudo-classes/blank/>blank</a></p> [901] => <p><a href=/css/pseudo-classes/checked/>checked</a></p> [902] => <p><a href=/css/pseudo-classes/default/>default</a></p> [903] => <p><a href=/css/pseudo-classes/defined/>defined</a></p> [904] => <p><a href=/css/pseudo-classes/dir/>dir</a></p> [905] => <p><a href=/css/pseudo-classes/disabled/>disabled</a></p> [906] => <p><a href=/css/pseudo-classes/empty/>empty</a></p> [907] => <p><a href=/css/pseudo-classes/enabled/>enabled</a></p> [908] => <p><a href=/css/pseudo-classes/first-child/>first-child</a></p> [909] => <p><a href=/css/pseudo-classes/first-of-type/>first-of-type</a></p> [910] => <p><a href=/css/pseudo-classes/focus/>focus</a></p> [911] => <p><a href=/css/pseudo-classes/focus-visible/>focus-visible</a></p> [912] => <p><a href=/css/pseudo-classes/focus-within/>focus-within</a></p> [913] => <p><a href=/css/pseudo-classes/fullscreen/>fullscreen</a></p> [914] => <p><a href=/css/pseudo-classes/has/>has</a></p> [915] => <p><a href=/css/pseudo-classes/hover/>hover</a></p> [916] => <p><a href=/css/pseudo-classes/in-range/>in-range</a></p> [917] => <p><a href=/css/pseudo-classes/indeterminate/>indeterminate</a></p> [918] => <p><a href=/css/pseudo-classes/invalid/>invalid</a></p> [919] => <p><a href=/css/pseudo-classes/is/>is</a></p> [920] => <p><a href=/css/pseudo-classes/lang/>lang</a></p> [921] => <p><a href=/css/pseudo-classes/last-child/>last-child</a></p> [922] => <p><a href=/css/pseudo-classes/last-of-type/>last-of-type</a></p> [923] => <p><a href=/css/pseudo-classes/link/>link</a></p> [924] => <p><a href=/css/pseudo-classes/local-link/>local-link</a></p> [925] => <p><a href=/css/pseudo-classes/modal/>modal</a></p> [926] => <p><a href=/css/pseudo-classes/not/>not</a></p> [927] => <p><a href=/css/pseudo-classes/nth-child/>nth-child</a></p> [928] => <p><a href=/css/pseudo-classes/nth-col/>nth-col</a></p> [929] => <p><a href=/css/pseudo-classes/nth-last-child/>nth-last-child</a></p> [930] => <p><a href=/css/pseudo-classes/nth-last-col/>nth-last-col</a></p> [931] => <p><a href=/css/pseudo-classes/nth-last-of-type/>nth-last-of-type</a></p> [932] => <p><a href=/css/pseudo-classes/nth-of-type/>nth-of-type</a></p> [933] => <p><a href=/css/pseudo-classes/only-child/>only-child</a></p> [934] => <p><a href=/css/pseudo-classes/only-of-type/>only-of-type</a></p> [935] => <p><a href=/css/pseudo-classes/optional/>optional</a></p> [936] => <p><a href=/css/pseudo-classes/out-of-range/>out-of-range</a></p> [937] => <p><a href=/css/pseudo-classes/picture-in-picture/>picture-in-picture</a></p> [938] => <p><a href=/css/pseudo-classes/placeholder-shown/>placeholder-shown</a></p> [939] => <p><a href=/css/pseudo-classes/read-only/>read-only</a></p> [940] => <p><a href=/css/pseudo-classes/read-write/>read-write</a></p> [941] => <p><a href=/css/pseudo-classes/required/>required</a></p> [942] => <p><a href=/css/pseudo-classes/root/>root</a></p> [943] => <p><a href=/css/pseudo-classes/scope/>scope</a></p> [944] => <p><a href=/css/pseudo-classes/target/>target</a></p> [945] => <p><a href=/css/pseudo-classes/valid/>valid</a></p> [946] => <p><a href=/css/pseudo-classes/visited/>visited</a></p> [947] => <p><a href=/css/pseudo-classes/where/>where</a></p> [948] => </div> [949] => <h2 id=pseudo-elements><a href=#pseudo-elements>Pseudo-Elements</a></h2> [950] => <div class=margin> [951] => <p><a href=/css/pseudo-elements/after/>after</a></p> [952] => <p><a href=/css/pseudo-elements/backdrop/>backdrop</a></p> [953] => <p><a href=/css/pseudo-elements/before/>before</a></p> [954] => <p><a href=/css/pseudo-elements/first-letter/>first-letter</a></p> [955] => <p><a href=/css/pseudo-elements/first-line/>first-line</a></p> [956] => <p><a href=/css/pseudo-elements/marker/>marker</a></p> [957] => <p><a href=/css/pseudo-elements/placeholder/>placeholder</a></p> [958] => <p><a href=/css/pseudo-elements/selection/>selection</a></p> [959] => </div> [960] => <h2 id=units><a href=#units>Units</a></h2> [961] => <div class=margin> [962] => <p><a href=/css/units/cap/>cap</a></p> [963] => <p><a href=/css/units/ch/>ch</a></p> [964] => <p><a href=/css/units/cm/>cm</a></p> [965] => <p><a href=/css/units/cqb/>cqb</a></p> [966] => <p><a href=/css/units/cqh/>cqh</a></p> [967] => <p><a href=/css/units/cqi/>cqi</a></p> [968] => <p><a href=/css/units/cqmax/>cqmax</a></p> [969] => <p><a href=/css/units/cqmin/>cqmin</a></p> [970] => <p><a href=/css/units/cqw/>cqw</a></p> [971] => <p><a href=/css/units/deg/>deg</a></p> [972] => <p><a href=/css/units/dpcm/>dpcm</a></p> [973] => <p><a href=/css/units/dpi/>dpi</a></p> [974] => <p><a href=/css/units/dppx/>dppx</a></p> [975] => <p><a href=/css/units/dvb/>dvb</a></p> [976] => <p><a href=/css/units/dvh/>dvh</a></p> [977] => <p><a href=/css/units/dvi/>dvi</a></p> [978] => <p><a href=/css/units/dvmax/>dvmax</a></p> [979] => <p><a href=/css/units/dvmin/>dvmin</a></p> [980] => <p><a href=/css/units/dvw/>dvw</a></p> [981] => <p><a href=/css/units/em/>em</a></p> [982] => <p><a href=/css/units/ex/>ex</a></p> [983] => <p><a href=/css/units/grad/>grad</a></p> [984] => <p><a href=/css/units/ic/>ic</a></p> [985] => <p><a href=/css/units/in/>in</a></p> [986] => <p><a href=/css/units/lvb/>lvb</a></p> [987] => <p><a href=/css/units/lvh/>lvh</a></p> [988] => <p><a href=/css/units/lvi/>lvi</a></p> [989] => <p><a href=/css/units/lvmax/>lvmax</a></p> [990] => <p><a href=/css/units/lvmin/>lvmin</a></p> [991] => <p><a href=/css/units/lvw/>lvw</a></p> [992] => <p><a href=/css/units/mm/>mm</a></p> [993] => <p><a href=/css/units/ms/>ms</a></p> [994] => <p><a href=/css/units/pc/>pc</a></p> [995] => <p><a href=/css/units/pt/>pt</a></p> [996] => <p><a href=/css/units/px/>px</a></p> [997] => <p><a href=/css/units/q/>Q</a></p> [998] => <p><a href=/css/units/rad/>rad</a></p> [999] => <p><a href=/css/units/rem/>rem</a></p> [1000] => <p><a href=/css/units/s/>s</a></p> [1001] => <p><a href=/css/units/svb/>svb</a></p> [1002] => <p><a href=/css/units/svh/>svh</a></p> [1003] => <p><a href=/css/units/svi/>svi</a></p> [1004] => <p><a href=/css/units/svmax/>svmax</a></p> [1005] => <p><a href=/css/units/svmin/>svmin</a></p> [1006] => <p><a href=/css/units/svw/>svw</a></p> [1007] => <p><a href=/css/units/turn/>turn</a></p> [1008] => <p><a href=/css/units/vb/>vb</a></p> [1009] => <p><a href=/css/units/vh/>vh</a></p> [1010] => <p><a href=/css/units/vi/>vi</a></p> [1011] => <p><a href=/css/units/vmax/>vmax</a></p> [1012] => <p><a href=/css/units/vmin/>vmin</a></p> [1013] => <p><a href=/css/units/vw/>vw</a></p> [1014] => </div> [1015] => </div> [1016] => <div class=nav-h1> [1017] => <p><a id=nav-switch-js>JS</a></p> [1018] => </div> [1019] => <div id=nav-content-js> [1020] => <h2 id=overview><a href=#overview>Overview</a></h2> [1021] => <div class=margin> [1022] => <p><a href=/js/>Overview</a></p> [1023] => </div> [1024] => <h2 id=abortcontroller><a href=#abortcontroller>AbortController</a></h2> [1025] => <div class=margin> [1026] => <p><a href=/js/abortcontroller/abort/>abort</a></p> [1027] => <p><a href=/js/abortcontroller/abortcontroller/>AbortController</a></p> [1028] => <p><a href=/js/abortcontroller/signal/>signal</a></p> [1029] => </div> [1030] => <h2 id=abstractrange><a href=#abstractrange>AbstractRange</a></h2> [1031] => <div class=margin> [1032] => <p><a href=/js/abstractrange/collapsed/>collapsed</a></p> [1033] => <p><a href=/js/abstractrange/endcontainer/>endContainer</a></p> [1034] => <p><a href=/js/abstractrange/endoffset/>endOffset</a></p> [1035] => <p><a href=/js/abstractrange/startcontainer/>startContainer</a></p> [1036] => <p><a href=/js/abstractrange/startoffset/>startOffset</a></p> [1037] => </div> [1038] => <h2 id=abortsignal><a href=#abortsignal>AbortSignal</a></h2> [1039] => <div class=margin> [1040] => <p><a href=/js/abortsignal/abort/>abort</a></p> [1041] => <p><a href=/js/abortsignal/aborted/>aborted</a></p> [1042] => <p><a href=/js/abortsignal/reason/>reason</a></p> [1043] => <p><a href=/js/abortsignal/throwifaborted/>throwIfAborted</a></p> [1044] => <p><a href=/js/abortsignal/timeout/>timeout</a></p> [1045] => </div> [1046] => <h2 id=childnode><a href=#childnode>ChildNode</a></h2> [1047] => <div class=margin> [1048] => <p><a href=/js/childnode/after/>after</a></p> [1049] => <p><a href=/js/childnode/before/>before</a></p> [1050] => <p><a href=/js/childnode/remove/>remove</a></p> [1051] => <p><a href=/js/childnode/replacewith/>replaceWith</a></p> [1052] => </div> [1053] => <h2 id=comment><a href=#comment>Comment</a></h2> [1054] => <div class=margin> [1055] => <p><a href=/js/comment/comment/>Comment</a></p> [1056] => </div> [1057] => <h2 id=console><a href=#console>console</a></h2> [1058] => <div class=margin> [1059] => <p><a href=/js/console/assert/>assert</a></p> [1060] => <p><a href=/js/console/clear/>clear</a></p> [1061] => <p><a href=/js/console/count/>count</a></p> [1062] => <p><a href=/js/console/countreset/>countReset</a></p> [1063] => <p><a href=/js/console/debug/>debug</a></p> [1064] => <p><a href=/js/console/dir/>dir</a></p> [1065] => <p><a href=/js/console/dirxml/>dirxml</a></p> [1066] => <p><a href=/js/console/error/>error</a></p> [1067] => <p><a href=/js/console/group/>group</a></p> [1068] => <p><a href=/js/console/groupcollapsed/>groupCollapsed</a></p> [1069] => <p><a href=/js/console/groupend/>groupEnd</a></p> [1070] => <p><a href=/js/console/info/>info</a></p> [1071] => <p><a href=/js/console/log/>log</a></p> [1072] => <p><a href=/js/console/time/>time</a></p> [1073] => <p><a href=/js/console/timeend/>timeEnd</a></p> [1074] => <p><a href=/js/console/timelog/>timeLog</a></p> [1075] => <p><a href=/js/console/trace/>trace</a></p> [1076] => <p><a href=/js/console/warn/>warn</a></p> [1077] => </div> [1078] => <h2 id=customevent><a href=#customevent>CustomEvent</a></h2> [1079] => <div class=margin> [1080] => <p><a href=/js/customevent/customevent/>CustomEvent</a></p> [1081] => <p><a href=/js/customevent/detail/>detail</a></p> [1082] => </div> [1083] => <h2 id=declarations><a href=#declarations>Declarations</a></h2> [1084] => <div class=margin> [1085] => <p><a href=/js/declarations/const/>const</a></p> [1086] => <p><a href=/js/declarations/let/>let</a></p> [1087] => <p><a href=/js/declarations/var/>var</a></p> [1088] => </div> [1089] => <h2 id=document><a href=#document>Document</a></h2> [1090] => <div class=margin> [1091] => <p><a href=/js/document/adoptnode/>adoptNode</a></p> [1092] => <p><a href=/js/document/characterset/>characterSet</a></p> [1093] => <p><a href=/js/document/compatmode/>compatMode</a></p> [1094] => <p><a href=/js/document/contenttype/>contentType</a></p> [1095] => <p><a href=/js/document/createcdatasection/>createCDATASection</a></p> [1096] => <p><a href=/js/document/createcomment/>createComment</a></p> [1097] => <p><a href=/js/document/createdocumentfragment/>createDocumentFragment</a></p> [1098] => <p><a href=/js/document/createelement/>createElement</a></p> [1099] => <p><a href=/js/document/createelementns/>createElementNS</a></p> [1100] => <p><a href=/js/document/createprocessinginstruction/>createProcessingInstruction</a></p> [1101] => <p><a href=/js/document/createtextnode/>createTextNode</a></p> [1102] => <p><a href=/js/document/doctype/>doctype</a></p> [1103] => <p><a href=/js/document/document/>Document</a></p> [1104] => <p><a href=/js/document/documentelement/>documentElement</a></p> [1105] => <p><a href=/js/document/documenturi/>documentURI</a></p> [1106] => <p><a href=/js/document/exitpictureinpicture/>exitPictureInPicture</a></p> [1107] => <p><a href=/js/document/getelementsbyclassname/>getElementsByClassName</a></p> [1108] => <p><a href=/js/document/getelementsbytagname/>getElementsByTagName</a></p> [1109] => <p><a href=/js/document/getelementsbytagnamens/>getElementsByTagNameNS</a></p> [1110] => <p><a href=/js/document/implementation/>implementation</a></p> [1111] => <p><a href=/js/document/importnode/>importNode</a></p> [1112] => <p><a href=/js/document/pictureinpictureenabled/>pictureInPictureEnabled</a></p> [1113] => <p><a href=/js/document/url/>URL</a></p> [1114] => <p><a href=/js/document/write/>write</a></p> [1115] => <p><a href=/js/document/writeln/>writeln</a></p> [1116] => </div> [1117] => <h2 id=documentfragment><a href=#documentfragment>DocumentFragment</a></h2> [1118] => <div class=margin> [1119] => <p><a href=/js/documentfragment/documentfragment/>DocumentFragment</a></p> [1120] => </div> [1121] => <h2 id=documentorshadowroot><a href=#documentorshadowroot>DocumentOrShadowRoot</a></h2> [1122] => <div class=margin> [1123] => <p><a href=/js/documentorshadowroot/pictureinpictureelement/>pictureInPictureElement</a></p> [1124] => </div> [1125] => <h2 id=domimplementation><a href=#domimplementation>DOMImplementation</a></h2> [1126] => <div class=margin> [1127] => <p><a href=/js/domimplementation/createdocument/>createDocument</a></p> [1128] => <p><a href=/js/domimplementation/createdocumenttype/>createDocumentType</a></p> [1129] => <p><a href=/js/domimplementation/createhtmldocument/>createHTMLDocument</a></p> [1130] => </div> [1131] => <h2 id=domtokenlist><a href=#domtokenlist>DOMTokenList</a></h2> [1132] => <div class=margin> [1133] => <p><a href=/js/domtokenlist/add/>add</a></p> [1134] => <p><a href=/js/domtokenlist/contains/>contains</a></p> [1135] => <p><a href=/js/domtokenlist/item/>item</a></p> [1136] => <p><a href=/js/domtokenlist/length/>length</a></p> [1137] => <p><a href=/js/domtokenlist/remove/>remove</a></p> [1138] => <p><a href=/js/domtokenlist/replace/>replace</a></p> [1139] => <p><a href=/js/domtokenlist/supports/>supports</a></p> [1140] => <p><a href=/js/domtokenlist/toggle/>toggle</a></p> [1141] => <p><a href=/js/domtokenlist/value/>value</a></p> [1142] => </div> [1143] => <h2 id=element><a href=#element>Element</a></h2> [1144] => <div class=margin> [1145] => <p><a href=/js/element/attachshadow/>attachShadow</a></p> [1146] => <p><a href=/js/element/classlist/>classList</a></p> [1147] => <p><a href=/js/element/classname/>className</a></p> [1148] => <p><a href=/js/element/closest/>closest</a></p> [1149] => <p><a href=/js/element/getattribute/>getAttribute</a></p> [1150] => <p><a href=/js/element/getattributenames/>getAttributeNames</a></p> [1151] => <p><a href=/js/element/getattributens/>getAttributeNS</a></p> [1152] => <p><a href=/js/element/hasattribute/>hasAttribute</a></p> [1153] => <p><a href=/js/element/hasattributens/>hasAttributeNS</a></p> [1154] => <p><a href=/js/element/hasattributes/>hasAttributes</a></p> [1155] => <p><a href=/js/element/id/>id</a></p> [1156] => <p><a href=/js/element/innerhtml/>innerHTML</a></p> [1157] => <p><a href=/js/element/insertadjacenthtml/>insertAdjacentHTML</a></p> [1158] => <p><a href=/js/element/localname/>localName</a></p> [1159] => <p><a href=/js/element/matches/>matches</a></p> [1160] => <p><a href=/js/element/namespaceuri/>namespaceURI</a></p> [1161] => <p><a href=/js/element/outerhtml/>outerHTML</a></p> [1162] => <p><a href=/js/element/prefix/>prefix</a></p> [1163] => <p><a href=/js/element/removeattribute/>removeAttribute</a></p> [1164] => <p><a href=/js/element/removeattributens/>removeAttributeNS</a></p> [1165] => <p><a href=/js/element/setattribute/>setAttribute</a></p> [1166] => <p><a href=/js/element/setattributens/>setAttributeNS</a></p> [1167] => <p><a href=/js/element/shadowroot/>shadowRoot</a></p> [1168] => <p><a href=/js/element/slot/>slot</a></p> [1169] => <p><a href=/js/element/tagname/>tagName</a></p> [1170] => <p><a href=/js/element/toggleattribute/>toggleAttribute</a></p> [1171] => </div> [1172] => <h2 id=event><a href=#event>Event</a></h2> [1173] => <div class=margin> [1174] => <p><a href=/js/event/bubbles/>bubbles</a></p> [1175] => <p><a href=/js/event/cancelable/>cancelable</a></p> [1176] => <p><a href=/js/event/composed/>composed</a></p> [1177] => <p><a href=/js/event/composedpath/>composedPath</a></p> [1178] => <p><a href=/js/event/currenttarget/>currentTarget</a></p> [1179] => <p><a href=/js/event/defaultprevented/>defaultPrevented</a></p> [1180] => <p><a href=/js/event/event/>Event</a></p> [1181] => <p><a href=/js/event/eventphase/>eventPhase</a></p> [1182] => <p><a href=/js/event/istrusted/>isTrusted</a></p> [1183] => <p><a href=/js/event/preventdefault/>preventDefault</a></p> [1184] => <p><a href=/js/event/stopimmediatepropagation/>stopImmediatePropagation</a></p> [1185] => <p><a href=/js/event/stoppropagation/>stopPropagation</a></p> [1186] => <p><a href=/js/event/target/>target</a></p> [1187] => <p><a href=/js/event/timestamp/>timeStamp</a></p> [1188] => <p><a href=/js/event/type/>type</a></p> [1189] => </div> [1190] => <h2 id=eventtarget><a href=#eventtarget>EventTarget</a></h2> [1191] => <div class=margin> [1192] => <p><a href=/js/eventtarget/addeventlistener/>addEventListener</a></p> [1193] => <p><a href=/js/eventtarget/dispatchevent/>dispatchEvent</a></p> [1194] => <p><a href=/js/eventtarget/eventtarget/>EventTarget</a></p> [1195] => <p><a href=/js/eventtarget/removeeventlistener/>removeEventListener</a></p> [1196] => </div> [1197] => <h2 id=htmlcollection><a href=#htmlcollection>HTMLCollection</a></h2> [1198] => <div class=margin> [1199] => <p><a href=/js/htmlcollection/item/>item</a></p> [1200] => <p><a href=/js/htmlcollection/length/>length</a></p> [1201] => <p><a href=/js/htmlcollection/nameditem/>namedItem</a></p> [1202] => </div> [1203] => <h2 id=htmldialogelement><a href=#htmldialogelement>HTMLDialogElement</a></h2> [1204] => <div class=margin> [1205] => <p><a href=/js/htmldialogelement/close/>close</a></p> [1206] => <p><a href=/js/htmldialogelement/open/>open</a></p> [1207] => <p><a href=/js/htmldialogelement/returnvalue/>returnValue</a></p> [1208] => <p><a href=/js/htmldialogelement/show/>show</a></p> [1209] => <p><a href=/js/htmldialogelement/showmodal/>showModal</a></p> [1210] => </div> [1211] => <h2 id=htmlvideoelement><a href=#htmlvideoelement>HTMLVideoElement</a></h2> [1212] => <div class=margin> [1213] => <p><a href=/js/htmlvideoelement/autopictureinpicture/>autoPictureInPicture</a></p> [1214] => <p><a href=/js/htmlvideoelement/disablepictureinpicture/>disablePictureInPicture</a></p> [1215] => <p><a href=/js/htmlvideoelement/requestpictureinpicture/>requestPictureInPicture</a></p> [1216] => </div> [1217] => <h2 id=iterations><a href=#iterations>Iterations</a></h2> [1218] => <div class=margin> [1219] => <p><a href=/js/iterations/do-while/>do-while</a></p> [1220] => <p><a href=/js/iterations/for/>for</a></p> [1221] => <p><a href=/js/iterations/for-await-of/>for-await-of</a></p> [1222] => <p><a href=/js/iterations/for-in/>for-in</a></p> [1223] => <p><a href=/js/iterations/for-of/>for-of</a></p> [1224] => <p><a href=/js/iterations/while/>while</a></p> [1225] => </div> [1226] => <h2 id=mutationobserver><a href=#mutationobserver>MutationObserver</a></h2> [1227] => <div class=margin> [1228] => <p><a href=/js/mutationobserver/disconnect/>disconnect</a></p> [1229] => <p><a href=/js/mutationobserver/mutationobserver/>MutationObserver</a></p> [1230] => <p><a href=/js/mutationobserver/observe/>observe</a></p> [1231] => <p><a href=/js/mutationobserver/takerecords/>takeRecords</a></p> [1232] => </div> [1233] => <h2 id=mutationrecord><a href=#mutationrecord>MutationRecord</a></h2> [1234] => <div class=margin> [1235] => <p><a href=/js/mutationrecord/addednodes/>addedNodes</a></p> [1236] => <p><a href=/js/mutationrecord/attributename/>attributeName</a></p> [1237] => <p><a href=/js/mutationrecord/attributenamespace/>attributeNamespace</a></p> [1238] => <p><a href=/js/mutationrecord/nextsibling/>nextSibling</a></p> [1239] => <p><a href=/js/mutationrecord/oldvalue/>oldValue</a></p> [1240] => <p><a href=/js/mutationrecord/previoussibling/>previousSibling</a></p> [1241] => <p><a href=/js/mutationrecord/removednodes/>removedNodes</a></p> [1242] => <p><a href=/js/mutationrecord/target/>target</a></p> [1243] => <p><a href=/js/mutationrecord/type/>type</a></p> [1244] => </div> [1245] => <h2 id=node><a href=#node>Node</a></h2> [1246] => <div class=margin> [1247] => <p><a href=/js/node/baseuri/>baseURI</a></p> [1248] => <p><a href=/js/node/childnodes/>childNodes</a></p> [1249] => <p><a href=/js/node/clonenode/>cloneNode</a></p> [1250] => <p><a href=/js/node/comparedocumentposition/>compareDocumentPosition</a></p> [1251] => <p><a href=/js/node/contains/>contains</a></p> [1252] => <p><a href=/js/node/firstchild/>firstChild</a></p> [1253] => <p><a href=/js/node/getrootnode/>getRootNode</a></p> [1254] => <p><a href=/js/node/haschildnodes/>hasChildNodes</a></p> [1255] => <p><a href=/js/node/isconnected/>isConnected</a></p> [1256] => <p><a href=/js/node/isequalnode/>isEqualNode</a></p> [1257] => <p><a href=/js/node/lastchild/>lastChild</a></p> [1258] => <p><a href=/js/node/nextsibling/>nextSibling</a></p> [1259] => <p><a href=/js/node/nodename/>nodeName</a></p> [1260] => <p><a href=/js/node/nodetype/>nodeType</a></p> [1261] => <p><a href=/js/node/normalize/>normalize</a></p> [1262] => <p><a href=/js/node/ownerdocument/>ownerDocument</a></p> [1263] => <p><a href=/js/node/parentelement/>parentElement</a></p> [1264] => <p><a href=/js/node/parentnode/>parentNode</a></p> [1265] => <p><a href=/js/node/previoussibling/>previousSibling</a></p> [1266] => </div> [1267] => <h2 id=nodelist><a href=#nodelist>NodeList</a></h2> [1268] => <div class=margin> [1269] => <p><a href=/js/nodelist/item/>item</a></p> [1270] => <p><a href=/js/nodelist/length/>length</a></p> [1271] => </div> [1272] => <h2 id=nondocumenttypechildnode><a href=#nondocumenttypechildnode>NonDocumentTypeChildNode</a></h2> [1273] => <div class=margin> [1274] => <p><a href=/js/nondocumenttypechildnode/nextelementsibling/>nextElementSibling</a></p> [1275] => <p><a href=/js/nondocumenttypechildnode/previouselementsibling/>previousElementSibling</a></p> [1276] => </div> [1277] => <h2 id=nonelementparentnode><a href=#nonelementparentnode>NonElementParentNode</a></h2> [1278] => <div class=margin> [1279] => <p><a href=/js/nonelementparentnode/getelementbyid/>getElementById</a></p> [1280] => </div> [1281] => <h2 id=parentnode><a href=#parentnode>ParentNode</a></h2> [1282] => <div class=margin> [1283] => <p><a href=/js/parentnode/append/>append</a></p> [1284] => <p><a href=/js/parentnode/children/>children</a></p> [1285] => <p><a href=/js/parentnode/firstelementchild/>firstElementChild</a></p> [1286] => <p><a href=/js/parentnode/lastelementchild/>lastElementChild</a></p> [1287] => <p><a href=/js/parentnode/prepend/>prepend</a></p> [1288] => <p><a href=/js/parentnode/queryselector/>querySelector</a></p> [1289] => <p><a href=/js/parentnode/queryselectorall/>querySelectorAll</a></p> [1290] => <p><a href=/js/parentnode/replacechildren/>replaceChildren</a></p> [1291] => </div> [1292] => <h2 id=prompts><a href=#prompts>Prompts</a></h2> [1293] => <div class=margin> [1294] => <p><a href=/js/prompts/alert/>alert</a></p> [1295] => <p><a href=/js/prompts/confirm/>confirm</a></p> [1296] => <p><a href=/js/prompts/prompt/>prompt</a></p> [1297] => </div> [1298] => <h2 id=range><a href=#range>Range</a></h2> [1299] => <div class=margin> [1300] => <p><a href=/js/range/commonancestorcontainer/>commonAncestorContainer</a></p> [1301] => <p><a href=/js/range/comparepoint/>comparePoint</a></p> [1302] => <p><a href=/js/range/createcontextualfragment/>createContextualFragment</a></p> [1303] => <p><a href=/js/range/intersectsnode/>intersectsNode</a></p> [1304] => <p><a href=/js/range/range/>Range</a></p> [1305] => </div> [1306] => <h2 id=slottable><a href=#slottable>Slottable</a></h2> [1307] => <div class=margin> [1308] => <p><a href=/js/slottable/assignedslot/>assignedSlot</a></p> [1309] => </div> [1310] => <h2 id=statements><a href=#statements>Statements</a></h2> [1311] => <div class=margin> [1312] => <p><a href=/js/statements/if/>if</a></p> [1313] => <p><a href=/js/statements/switch/>switch</a></p> [1314] => <p><a href=/js/statements/try/>try</a></p> [1315] => </div> [1316] => <h2 id=staticrange><a href=#staticrange>StaticRange</a></h2> [1317] => <div class=margin> [1318] => <p><a href=/js/staticrange/staticrange/>StaticRange</a></p> [1319] => </div> [1320] => <h2 id=text><a href=#text>Text</a></h2> [1321] => <div class=margin> [1322] => <p><a href=/js/text/splittext/>splitText</a></p> [1323] => <p><a href=/js/text/text/>Text</a></p> [1324] => <p><a href=/js/text/wholetext/>wholeText</a></p> [1325] => </div> [1326] => <h2 id=other><a href=#other>Other</a></h2> [1327] => <div class=margin> [1328] => <p><a href=/js/array/>Array</a></p> [1329] => <p><a href=/js/comments/>Comments</a></p> [1330] => <p><a href=/js/date/>Date</a></p> [1331] => <p><a href=/js/enable/>Enable</a></p> [1332] => <p><a href=/js/functions/>Functions</a></p> [1333] => <p><a href=/js/infinity/>Infinity</a></p> [1334] => <p><a href=/js/print/>print</a></p> [1335] => </div> [1336] => </div> [1337] => <div class=nav-h1> [1338] => <p><a id=nav-switch-php>PHP</a></p> [1339] => </div> [1340] => <div id=nav-content-php> [1341] => <h2 id=overview><a href=#overview>Overview</a></h2> [1342] => <div class=margin> [1343] => <p><a href=/php/>Overview</a></p> [1344] => </div> [1345] => <h2 id=array><a href=#array>Array</a></h2> [1346] => <div class=margin> [1347] => <p><a href=/php/array/array/>array</a></p> [1348] => <p><a href=/php/array/array_change_key_case/>array_change_key_case</a></p> [1349] => <p><a href=/php/array/array_chunk/>array_chunk</a></p> [1350] => <p><a href=/php/array/array_column/>array_column</a></p> [1351] => <p><a href=/php/array/array_combine/>array_combine</a></p> [1352] => <p><a href=/php/array/array_count_values/>array_count_values</a></p> [1353] => <p><a href=/php/array/array_diff/>array_diff</a></p> [1354] => <p><a href=/php/array/array_diff_assoc/>array_diff_assoc</a></p> [1355] => <p><a href=/php/array/array_diff_key/>array_diff_key</a></p> [1356] => <p><a href=/php/array/array_diff_uassoc/>array_diff_uassoc</a></p> [1357] => <p><a href=/php/array/array_diff_ukey/>array_diff_ukey</a></p> [1358] => <p><a href=/php/array/array_fill/>array_fill</a></p> [1359] => <p><a href=/php/array/array_fill_keys/>array_fill_keys</a></p> [1360] => <p><a href=/php/array/array_filter/>array_filter</a></p> [1361] => <p><a href=/php/array/array_flip/>array_flip</a></p> [1362] => <p><a href=/php/array/array_intersect/>array_intersect</a></p> [1363] => <p><a href=/php/array/array_intersect_assoc/>array_intersect_assoc</a></p> [1364] => <p><a href=/php/array/array_intersect_key/>array_intersect_key</a></p> [1365] => <p><a href=/php/array/array_intersect_uassoc/>array_intersect_uassoc</a></p> [1366] => <p><a href=/php/array/array_intersect_ukey/>array_intersect_ukey</a></p> [1367] => <p><a href=/php/array/array_key_exists/>array_key_exists</a></p> [1368] => <p><a href=/php/array/array_key_first/>array_key_first</a></p> [1369] => <p><a href=/php/array/array_key_last/>array_key_last</a></p> [1370] => <p><a href=/php/array/array_keys/>array_keys</a></p> [1371] => <p><a href=/php/array/array_map/>array_map</a></p> [1372] => <p><a href=/php/array/array_merge/>array_merge</a></p> [1373] => <p><a href=/php/array/array_merge_recursive/>array_merge_recursive</a></p> [1374] => <p><a href=/php/array/array_multisort/>array_multisort</a></p> [1375] => <p><a href=/php/array/array_pad/>array_pad</a></p> [1376] => <p><a href=/php/array/array_pop/>array_pop</a></p> [1377] => <p><a href=/php/array/array_product/>array_product</a></p> [1378] => <p><a href=/php/array/array_push/>array_push</a></p> [1379] => <p><a href=/php/array/array_rand/>array_rand</a></p> [1380] => <p><a href=/php/array/array_reduce/>array_reduce</a></p> [1381] => <p><a href=/php/array/array_replace/>array_replace</a></p> [1382] => <p><a href=/php/array/array_replace_recursive/>array_replace_recursive</a></p> [1383] => <p><a href=/php/array/array_reverse/>array_reverse</a></p> [1384] => <p><a href=/php/array/array_search/>array_search</a></p> [1385] => <p><a href=/php/array/array_shift/>array_shift</a></p> [1386] => <p><a href=/php/array/array_slice/>array_slice</a></p> [1387] => <p><a href=/php/array/array_splice/>array_splice</a></p> [1388] => <p><a href=/php/array/array_sum/>array_sum</a></p> [1389] => <p><a href=/php/array/array_udiff/>array_udiff</a></p> [1390] => <p><a href=/php/array/array_udiff_assoc/>array_udiff_assoc</a></p> [1391] => <p><a href=/php/array/array_udiff_uassoc/>array_udiff_uassoc</a></p> [1392] => <p><a href=/php/array/array_uintersect/>array_uintersect</a></p> [1393] => <p><a href=/php/array/array_uintersect_assoc/>array_uintersect_assoc</a></p> [1394] => <p><a href=/php/array/array_uintersect_uassoc/>array_uintersect_uassoc</a></p> [1395] => <p><a href=/php/array/array_unique/>array_unique</a></p> [1396] => <p><a href=/php/array/array_unshift/>array_unshift</a></p> [1397] => <p><a href=/php/array/array_values/>array_values</a></p> [1398] => <p><a href=/php/array/array_walk/>array_walk</a></p> [1399] => <p><a href=/php/array/array_walk_recursive/>array_walk_recursive</a></p> [1400] => <p><a href=/php/array/arsort/>arsort</a></p> [1401] => <p><a href=/php/array/asort/>asort</a></p> [1402] => <p><a href=/php/array/compact/>compact</a></p> [1403] => <p><a href=/php/array/count/>count</a></p> [1404] => <p><a href=/php/array/current/>current</a></p> [1405] => <p><a href=/php/array/end/>end</a></p> [1406] => <p><a href=/php/array/extract/>extract</a></p> [1407] => <p><a href=/php/array/in_array/>in_array</a></p> [1408] => <p><a href=/php/array/key/>key</a></p> [1409] => <p><a href=/php/array/key_exists/>key_exists</a></p> [1410] => <p><a href=/php/array/krsort/>krsort</a></p> [1411] => <p><a href=/php/array/ksort/>ksort</a></p> [1412] => <p><a href=/php/array/list/>list</a></p> [1413] => <p><a href=/php/array/natcasesort/>natcasesort</a></p> [1414] => <p><a href=/php/array/natsort/>natsort</a></p> [1415] => <p><a href=/php/array/next/>next</a></p> [1416] => <p><a href=/php/array/pos/>pos</a></p> [1417] => <p><a href=/php/array/prev/>prev</a></p> [1418] => <p><a href=/php/array/range/>range</a></p> [1419] => <p><a href=/php/array/reset/>reset</a></p> [1420] => <p><a href=/php/array/rsort/>rsort</a></p> [1421] => <p><a href=/php/array/shuffle/>shuffle</a></p> [1422] => <p><a href=/php/array/sizeof/>sizeof</a></p> [1423] => <p><a href=/php/array/sort/>sort</a></p> [1424] => <p><a href=/php/array/uasort/>uasort</a></p> [1425] => <p><a href=/php/array/uksort/>uksort</a></p> [1426] => <p><a href=/php/array/usort/>usort</a></p> [1427] => </div> [1428] => <h2 id=calendar><a href=#calendar>Calendar</a></h2> [1429] => <div class=margin> [1430] => <p><a href=/php/calendar/cal_days_in_month/>cal_days_in_month</a></p> [1431] => <p><a href=/php/calendar/cal_from_jd/>cal_from_jd</a></p> [1432] => <p><a href=/php/calendar/cal_info/>cal_info</a></p> [1433] => <p><a href=/php/calendar/cal_to_jd/>cal_to_jd</a></p> [1434] => <p><a href=/php/calendar/easter_date/>easter_date</a></p> [1435] => <p><a href=/php/calendar/easter_days/>easter_days</a></p> [1436] => <p><a href=/php/calendar/frenchtojd/>frenchtojd</a></p> [1437] => <p><a href=/php/calendar/gregoriantojd/>gregoriantojd</a></p> [1438] => <p><a href=/php/calendar/jddayofweek/>jddayofweek</a></p> [1439] => <p><a href=/php/calendar/jdmonthname/>jdmonthname</a></p> [1440] => <p><a href=/php/calendar/jdtofrench/>jdtofrench</a></p> [1441] => <p><a href=/php/calendar/jdtogregorian/>jdtogregorian</a></p> [1442] => <p><a href=/php/calendar/jdtojewish/>jdtojewish</a></p> [1443] => <p><a href=/php/calendar/jdtojulian/>jdtojulian</a></p> [1444] => <p><a href=/php/calendar/jdtounix/>jdtounix</a></p> [1445] => <p><a href=/php/calendar/jewishtojd/>jewishtojd</a></p> [1446] => <p><a href=/php/calendar/juliantojd/>juliantojd</a></p> [1447] => <p><a href=/php/calendar/unixtojd/>unixtojd</a></p> [1448] => </div> [1449] => <h2 id=class-/-object><a href=#class-/-object>Class / Object</a></h2> [1450] => <div class=margin> [1451] => <p><a href=/php/class-object/class_alias/>class_alias</a></p> [1452] => <p><a href=/php/class-object/class_exists/>class_exists</a></p> [1453] => <p><a href=/php/class-object/get_called_class/>get_called_class</a></p> [1454] => <p><a href=/php/class-object/get_class/>get_class</a></p> [1455] => <p><a href=/php/class-object/get_class_methods/>get_class_methods</a></p> [1456] => <p><a href=/php/class-object/get_class_vars/>get_class_vars</a></p> [1457] => <p><a href=/php/class-object/get_declared_classes/>get_declared_classes</a></p> [1458] => <p><a href=/php/class-object/get_declared_interfaces/>get_declared_interfaces</a></p> [1459] => <p><a href=/php/class-object/get_declared_traits/>get_declared_traits</a></p> [1460] => <p><a href=/php/class-object/get_object_vars/>get_object_vars</a></p> [1461] => <p><a href=/php/class-object/get_parent_class/>get_parent_class</a></p> [1462] => <p><a href=/php/class-object/interface_exists/>interface_exists</a></p> [1463] => <p><a href=/php/class-object/is_a/>is_a</a></p> [1464] => <p><a href=/php/class-object/is_subclass_of/>is_subclass_of</a></p> [1465] => <p><a href=/php/class-object/method_exists/>method_exists</a></p> [1466] => <p><a href=/php/class-object/property_exists/>property_exists</a></p> [1467] => <p><a href=/php/class-object/trait_exists/>trait_exists</a></p> [1468] => </div> [1469] => <h2 id=csprng><a href=#csprng>CSPRNG</a></h2> [1470] => <div class=margin> [1471] => <p><a href=/php/csprng/random_bytes/>random_bytes</a></p> [1472] => <p><a href=/php/csprng/random_int/>random_int</a></p> [1473] => </div> [1474] => <h2 id=ctype><a href=#ctype>Ctype</a></h2> [1475] => <div class=margin> [1476] => <p><a href=/php/ctype/ctype_alnum/>ctype_alnum</a></p> [1477] => <p><a href=/php/ctype/ctype_alpha/>ctype_alpha</a></p> [1478] => <p><a href=/php/ctype/ctype_cntrl/>ctype_cntrl</a></p> [1479] => <p><a href=/php/ctype/ctype_digit/>ctype_digit</a></p> [1480] => <p><a href=/php/ctype/ctype_graph/>ctype_graph</a></p> [1481] => <p><a href=/php/ctype/ctype_lower/>ctype_lower</a></p> [1482] => <p><a href=/php/ctype/ctype_print/>ctype_print</a></p> [1483] => <p><a href=/php/ctype/ctype_punct/>ctype_punct</a></p> [1484] => <p><a href=/php/ctype/ctype_space/>ctype_space</a></p> [1485] => <p><a href=/php/ctype/ctype_upper/>ctype_upper</a></p> [1486] => <p><a href=/php/ctype/ctype_xdigit/>ctype_xdigit</a></p> [1487] => </div> [1488] => <h2 id=curl><a href=#curl>cURL</a></h2> [1489] => <div class=margin> [1490] => <p><a href=/php/curl/curl_close/>curl_close</a></p> [1491] => <p><a href=/php/curl/curl_copy_handle/>curl_copy_handle</a></p> [1492] => <p><a href=/php/curl/curl_errno/>curl_errno</a></p> [1493] => <p><a href=/php/curl/curl_error/>curl_error</a></p> [1494] => <p><a href=/php/curl/curl_escape/>curl_escape</a></p> [1495] => <p><a href=/php/curl/curl_exec/>curl_exec</a></p> [1496] => <p><a href=/php/curl/curl_getinfo/>curl_getinfo</a></p> [1497] => <p><a href=/php/curl/curl_init/>curl_init</a></p> [1498] => <p><a href=/php/curl/curl_multi_add_handle/>curl_multi_add_handle</a></p> [1499] => <p><a href=/php/curl/curl_multi_close/>curl_multi_close</a></p> [1500] => <p><a href=/php/curl/curl_multi_errno/>curl_multi_errno</a></p> [1501] => <p><a href=/php/curl/curl_multi_exec/>curl_multi_exec</a></p> [1502] => <p><a href=/php/curl/curl_multi_getcontent/>curl_multi_getcontent</a></p> [1503] => <p><a href=/php/curl/curl_multi_info_read/>curl_multi_info_read</a></p> [1504] => <p><a href=/php/curl/curl_multi_init/>curl_multi_init</a></p> [1505] => <p><a href=/php/curl/curl_multi_remove_handle/>curl_multi_remove_handle</a></p> [1506] => <p><a href=/php/curl/curl_multi_select/>curl_multi_select</a></p> [1507] => <p><a href=/php/curl/curl_multi_setopt/>curl_multi_setopt</a></p> [1508] => <p><a href=/php/curl/curl_multi_strerror/>curl_multi_strerror</a></p> [1509] => <p><a href=/php/curl/curl_pause/>curl_pause</a></p> [1510] => <p><a href=/php/curl/curl_reset/>curl_reset</a></p> [1511] => <p><a href=/php/curl/curl_setopt/>curl_setopt</a></p> [1512] => <p><a href=/php/curl/curl_setopt_array/>curl_setopt_array</a></p> [1513] => <p><a href=/php/curl/curl_share_close/>curl_share_close</a></p> [1514] => <p><a href=/php/curl/curl_share_errno/>curl_share_errno</a></p> [1515] => <p><a href=/php/curl/curl_share_init/>curl_share_init</a></p> [1516] => <p><a href=/php/curl/curl_share_setopt/>curl_share_setopt</a></p> [1517] => <p><a href=/php/curl/curl_share_strerror/>curl_share_strerror</a></p> [1518] => <p><a href=/php/curl/curl_strerror/>curl_strerror</a></p> [1519] => <p><a href=/php/curl/curl_unescape/>curl_unescape</a></p> [1520] => <p><a href=/php/curl/curl_version/>curl_version</a></p> [1521] => </div> [1522] => <h2 id=date-/-time><a href=#date-/-time>Date / Time</a></h2> [1523] => <div class=margin> [1524] => <p><a href=/php/date-time/checkdate/>checkdate</a></p> [1525] => <p><a href=/php/date-time/date/>date</a></p> [1526] => <p><a href=/php/date-time/date_add/>date_add</a></p> [1527] => <p><a href=/php/date-time/date_create/>date_create</a></p> [1528] => <p><a href=/php/date-time/date_create_from_format/>date_create_from_format</a></p> [1529] => <p><a href=/php/date-time/date_create_immutable/>date_create_immutable</a></p> [1530] => <p><a href=/php/date-time/date_create_immutable_from_format/>date_create_immutable_from_format</a></p> [1531] => <p><a href=/php/date-time/date_date_set/>date_date_set</a></p> [1532] => <p><a href=/php/date-time/date_default_timezone_get/>date_default_timezone_get</a></p> [1533] => <p><a href=/php/date-time/date_default_timezone_set/>date_default_timezone_set</a></p> [1534] => <p><a href=/php/date-time/date_diff/>date_diff</a></p> [1535] => <p><a href=/php/date-time/date_format/>date_format</a></p> [1536] => <p><a href=/php/date-time/date_get_last_errors/>date_get_last_errors</a></p> [1537] => <p><a href=/php/date-time/date_interval_create_from_date_string/>date_interval_create_from_date_string</a></p> [1538] => <p><a href=/php/date-time/date_interval_format/>date_interval_format</a></p> [1539] => <p><a href=/php/date-time/date_isodate_set/>date_isodate_set</a></p> [1540] => <p><a href=/php/date-time/date_modify/>date_modify</a></p> [1541] => <p><a href=/php/date-time/date_offset_get/>date_offset_get</a></p> [1542] => <p><a href=/php/date-time/date_parse/>date_parse</a></p> [1543] => <p><a href=/php/date-time/date_parse_from_format/>date_parse_from_format</a></p> [1544] => <p><a href=/php/date-time/date_sub/>date_sub</a></p> [1545] => <p><a href=/php/date-time/date_sun_info/>date_sun_info</a></p> [1546] => <p><a href=/php/date-time/date_sunrise/>date_sunrise</a></p> [1547] => <p><a href=/php/date-time/date_sunset/>date_sunset</a></p> [1548] => <p><a href=/php/date-time/date_time_set/>date_time_set</a></p> [1549] => <p><a href=/php/date-time/date_timestamp_get/>date_timestamp_get</a></p> [1550] => <p><a href=/php/date-time/date_timestamp_set/>date_timestamp_set</a></p> [1551] => <p><a href=/php/date-time/date_timezone_get/>date_timezone_get</a></p> [1552] => <p><a href=/php/date-time/date_timezone_set/>date_timezone_set</a></p> [1553] => <p><a href=/php/date-time/getdate/>getdate</a></p> [1554] => <p><a href=/php/date-time/gettimeofday/>gettimeofday</a></p> [1555] => <p><a href=/php/date-time/gmdate/>gmdate</a></p> [1556] => <p><a href=/php/date-time/gmmktime/>gmmktime</a></p> [1557] => <p><a href=/php/date-time/gmstrftime/>gmstrftime</a></p> [1558] => <p><a href=/php/date-time/idate/>idate</a></p> [1559] => <p><a href=/php/date-time/localtime/>localtime</a></p> [1560] => <p><a href=/php/date-time/microtime/>microtime</a></p> [1561] => <p><a href=/php/date-time/mktime/>mktime</a></p> [1562] => <p><a href=/php/date-time/strftime/>strftime</a></p> [1563] => <p><a href=/php/date-time/strptime/>strptime</a></p> [1564] => <p><a href=/php/date-time/strtotime/>strtotime</a></p> [1565] => <p><a href=/php/date-time/time/>time</a></p> [1566] => <p><a href=/php/date-time/timezone_abbreviations_list/>timezone_abbreviations_list</a></p> [1567] => <p><a href=/php/date-time/timezone_identifiers_list/>timezone_identifiers_list</a></p> [1568] => <p><a href=/php/date-time/timezone_location_get/>timezone_location_get</a></p> [1569] => <p><a href=/php/date-time/timezone_name_from_abbr/>timezone_name_from_abbr</a></p> [1570] => <p><a href=/php/date-time/timezone_name_get/>timezone_name_get</a></p> [1571] => <p><a href=/php/date-time/timezone_offset_get/>timezone_offset_get</a></p> [1572] => <p><a href=/php/date-time/timezone_open/>timezone_open</a></p> [1573] => <p><a href=/php/date-time/timezone_transitions_get/>timezone_transitions_get</a></p> [1574] => <p><a href=/php/date-time/timezone_version_get/>timezone_version_get</a></p> [1575] => </div> [1576] => <h2 id=directory><a href=#directory>Directory</a></h2> [1577] => <div class=margin> [1578] => <p><a href=/php/directory/chdir/>chdir</a></p> [1579] => <p><a href=/php/directory/chroot/>chroot</a></p> [1580] => <p><a href=/php/directory/closedir/>closedir</a></p> [1581] => <p><a href=/php/directory/dir/>dir</a></p> [1582] => <p><a href=/php/directory/getcwd/>getcwd</a></p> [1583] => <p><a href=/php/directory/opendir/>opendir</a></p> [1584] => <p><a href=/php/directory/readdir/>readdir</a></p> [1585] => <p><a href=/php/directory/rewinddir/>rewinddir</a></p> [1586] => <p><a href=/php/directory/scandir/>scandir</a></p> [1587] => </div> [1588] => <h2 id=error-handling><a href=#error-handling>Error Handling</a></h2> [1589] => <div class=margin> [1590] => <p><a href=/php/error-handling/debug_backtrace/>debug_backtrace</a></p> [1591] => <p><a href=/php/error-handling/debug_print_backtrace/>debug_print_backtrace</a></p> [1592] => <p><a href=/php/error-handling/error_clear_last/>error_clear_last</a></p> [1593] => <p><a href=/php/error-handling/error_get_last/>error_get_last</a></p> [1594] => <p><a href=/php/error-handling/error_log/>error_log</a></p> [1595] => <p><a href=/php/error-handling/error_reporting/>error_reporting</a></p> [1596] => <p><a href=/php/error-handling/restore_error_handler/>restore_error_handler</a></p> [1597] => <p><a href=/php/error-handling/restore_exception_handler/>restore_exception_handler</a></p> [1598] => <p><a href=/php/error-handling/set_error_handler/>set_error_handler</a></p> [1599] => <p><a href=/php/error-handling/set_exception_handler/>set_exception_handler</a></p> [1600] => <p><a href=/php/error-handling/trigger_error/>trigger_error</a></p> [1601] => <p><a href=/php/error-handling/user_error/>user_error</a></p> [1602] => </div> [1603] => <h2 id=filesystem><a href=#filesystem>Filesystem</a></h2> [1604] => <div class=margin> [1605] => <p><a href=/php/filesystem/basename/>basename</a></p> [1606] => <p><a href=/php/filesystem/chgrp/>chgrp</a></p> [1607] => <p><a href=/php/filesystem/chmod/>chmod</a></p> [1608] => <p><a href=/php/filesystem/chown/>chown</a></p> [1609] => <p><a href=/php/filesystem/clearstatcache/>clearstatcache</a></p> [1610] => <p><a href=/php/filesystem/copy/>copy</a></p> [1611] => <p><a href=/php/filesystem/dirname/>dirname</a></p> [1612] => <p><a href=/php/filesystem/disk_free_space/>disk_free_space</a></p> [1613] => <p><a href=/php/filesystem/disk_total_space/>disk_total_space</a></p> [1614] => <p><a href=/php/filesystem/diskfreespace/>diskfreespace</a></p> [1615] => <p><a href=/php/filesystem/fclose/>fclose</a></p> [1616] => <p><a href=/php/filesystem/feof/>feof</a></p> [1617] => <p><a href=/php/filesystem/fflush/>fflush</a></p> [1618] => <p><a href=/php/filesystem/fgetc/>fgetc</a></p> [1619] => <p><a href=/php/filesystem/fgetcsv/>fgetcsv</a></p> [1620] => <p><a href=/php/filesystem/fgets/>fgets</a></p> [1621] => <p><a href=/php/filesystem/file/>file</a></p> [1622] => <p><a href=/php/filesystem/file_exists/>file_exists</a></p> [1623] => <p><a href=/php/filesystem/file_get_contents/>file_get_contents</a></p> [1624] => <p><a href=/php/filesystem/file_put_contents/>file_put_contents</a></p> [1625] => <p><a href=/php/filesystem/fileatime/>fileatime</a></p> [1626] => <p><a href=/php/filesystem/filectime/>filectime</a></p> [1627] => <p><a href=/php/filesystem/filegroup/>filegroup</a></p> [1628] => <p><a href=/php/filesystem/fileinode/>fileinode</a></p> [1629] => <p><a href=/php/filesystem/filemtime/>filemtime</a></p> [1630] => <p><a href=/php/filesystem/fileowner/>fileowner</a></p> [1631] => <p><a href=/php/filesystem/fileperms/>fileperms</a></p> [1632] => <p><a href=/php/filesystem/filesize/>filesize</a></p> [1633] => <p><a href=/php/filesystem/filetype/>filetype</a></p> [1634] => <p><a href=/php/filesystem/flock/>flock</a></p> [1635] => <p><a href=/php/filesystem/fnmatch/>fnmatch</a></p> [1636] => <p><a href=/php/filesystem/fopen/>fopen</a></p> [1637] => <p><a href=/php/filesystem/fpassthru/>fpassthru</a></p> [1638] => <p><a href=/php/filesystem/fputcsv/>fputcsv</a></p> [1639] => <p><a href=/php/filesystem/fputs/>fputs</a></p> [1640] => <p><a href=/php/filesystem/fread/>fread</a></p> [1641] => <p><a href=/php/filesystem/fscanf/>fscanf</a></p> [1642] => <p><a href=/php/filesystem/fseek/>fseek</a></p> [1643] => <p><a href=/php/filesystem/fstat/>fstat</a></p> [1644] => <p><a href=/php/filesystem/ftell/>ftell</a></p> [1645] => <p><a href=/php/filesystem/ftruncate/>ftruncate</a></p> [1646] => <p><a href=/php/filesystem/fwrite/>fwrite</a></p> [1647] => <p><a href=/php/filesystem/glob/>glob</a></p> [1648] => <p><a href=/php/filesystem/is_dir/>is_dir</a></p> [1649] => <p><a href=/php/filesystem/is_executable/>is_executable</a></p> [1650] => <p><a href=/php/filesystem/is_file/>is_file</a></p> [1651] => <p><a href=/php/filesystem/is_link/>is_link</a></p> [1652] => <p><a href=/php/filesystem/is_readable/>is_readable</a></p> [1653] => <p><a href=/php/filesystem/is_uploaded_file/>is_uploaded_file</a></p> [1654] => <p><a href=/php/filesystem/is_writable/>is_writable</a></p> [1655] => <p><a href=/php/filesystem/is_writeable/>is_writeable</a></p> [1656] => <p><a href=/php/filesystem/lchgrp/>lchgrp</a></p> [1657] => <p><a href=/php/filesystem/lchown/>lchown</a></p> [1658] => <p><a href=/php/filesystem/link/>link</a></p> [1659] => <p><a href=/php/filesystem/linkinfo/>linkinfo</a></p> [1660] => <p><a href=/php/filesystem/lstat/>lstat</a></p> [1661] => <p><a href=/php/filesystem/mkdir/>mkdir</a></p> [1662] => <p><a href=/php/filesystem/move_uploaded_file/>move_uploaded_file</a></p> [1663] => <p><a href=/php/filesystem/pathinfo/>pathinfo</a></p> [1664] => <p><a href=/php/filesystem/pclose/>pclose</a></p> [1665] => <p><a href=/php/filesystem/popen/>popen</a></p> [1666] => <p><a href=/php/filesystem/readfile/>readfile</a></p> [1667] => <p><a href=/php/filesystem/readlink/>readlink</a></p> [1668] => <p><a href=/php/filesystem/realpath/>realpath</a></p> [1669] => <p><a href=/php/filesystem/realpath_cache_get/>realpath_cache_get</a></p> [1670] => <p><a href=/php/filesystem/realpath_cache_size/>realpath_cache_size</a></p> [1671] => <p><a href=/php/filesystem/rename/>rename</a></p> [1672] => <p><a href=/php/filesystem/rewind/>rewind</a></p> [1673] => <p><a href=/php/filesystem/rmdir/>rmdir</a></p> [1674] => <p><a href=/php/filesystem/set_file_buffer/>set_file_buffer</a></p> [1675] => <p><a href=/php/filesystem/stat/>stat</a></p> [1676] => <p><a href=/php/filesystem/symlink/>symlink</a></p> [1677] => <p><a href=/php/filesystem/tempnam/>tempnam</a></p> [1678] => <p><a href=/php/filesystem/tmpfile/>tmpfile</a></p> [1679] => <p><a href=/php/filesystem/touch/>touch</a></p> [1680] => <p><a href=/php/filesystem/umask/>umask</a></p> [1681] => <p><a href=/php/filesystem/unlink/>unlink</a></p> [1682] => </div> [1683] => <h2 id=filter><a href=#filter>Filter</a></h2> [1684] => <div class=margin> [1685] => <p><a href=/php/filter/filter_has_var/>filter_has_var</a></p> [1686] => <p><a href=/php/filter/filter_id/>filter_id</a></p> [1687] => <p><a href=/php/filter/filter_input/>filter_input</a></p> [1688] => <p><a href=/php/filter/filter_input_array/>filter_input_array</a></p> [1689] => <p><a href=/php/filter/filter_list/>filter_list</a></p> [1690] => <p><a href=/php/filter/filter_var/>filter_var</a></p> [1691] => <p><a href=/php/filter/filter_var_array/>filter_var_array</a></p> [1692] => </div> [1693] => <h2 id=function-handling><a href=#function-handling>Function Handling</a></h2> [1694] => <div class=margin> [1695] => <p><a href=/php/function-handling/call_user_func/>call_user_func</a></p> [1696] => <p><a href=/php/function-handling/call_user_func_array/>call_user_func_array</a></p> [1697] => <p><a href=/php/function-handling/forward_static_call/>forward_static_call</a></p> [1698] => <p><a href=/php/function-handling/forward_static_call_array/>forward_static_call_array</a></p> [1699] => <p><a href=/php/function-handling/func_get_arg/>func_get_arg</a></p> [1700] => <p><a href=/php/function-handling/func_get_args/>func_get_args</a></p> [1701] => <p><a href=/php/function-handling/func_num_args/>func_num_args</a></p> [1702] => <p><a href=/php/function-handling/function_exists/>function_exists</a></p> [1703] => <p><a href=/php/function-handling/get_defined_functions/>get_defined_functions</a></p> [1704] => <p><a href=/php/function-handling/register_shutdown_function/>register_shutdown_function</a></p> [1705] => <p><a href=/php/function-handling/register_tick_function/>register_tick_function</a></p> [1706] => <p><a href=/php/function-handling/unregister_tick_function/>unregister_tick_function</a></p> [1707] => </div> [1708] => <h2 id=mail><a href=#mail>Mail</a></h2> [1709] => <div class=margin> [1710] => <p><a href=/php/mail/mail/>mail</a></p> [1711] => </div> [1712] => <h2 id=math><a href=#math>Math</a></h2> [1713] => <div class=margin> [1714] => <p><a href=/php/math/abs/>abs</a></p> [1715] => <p><a href=/php/math/acos/>acos</a></p> [1716] => <p><a href=/php/math/acosh/>acosh</a></p> [1717] => <p><a href=/php/math/asin/>asin</a></p> [1718] => <p><a href=/php/math/asinh/>asinh</a></p> [1719] => <p><a href=/php/math/atan/>atan</a></p> [1720] => <p><a href=/php/math/atan2/>atan2</a></p> [1721] => <p><a href=/php/math/atanh/>atanh</a></p> [1722] => <p><a href=/php/math/base_convert/>base_convert</a></p> [1723] => <p><a href=/php/math/bindec/>bindec</a></p> [1724] => <p><a href=/php/math/ceil/>ceil</a></p> [1725] => <p><a href=/php/math/cos/>cos</a></p> [1726] => <p><a href=/php/math/cosh/>cosh</a></p> [1727] => <p><a href=/php/math/decbin/>decbin</a></p> [1728] => <p><a href=/php/math/dechex/>dechex</a></p> [1729] => <p><a href=/php/math/decoct/>decoct</a></p> [1730] => <p><a href=/php/math/deg2rad/>deg2rad</a></p> [1731] => <p><a href=/php/math/exp/>exp</a></p> [1732] => <p><a href=/php/math/expm1/>expm1</a></p> [1733] => <p><a href=/php/math/fdiv/>fdiv</a></p> [1734] => <p><a href=/php/math/floor/>floor</a></p> [1735] => <p><a href=/php/math/fmod/>fmod</a></p> [1736] => <p><a href=/php/math/hexdec/>hexdec</a></p> [1737] => <p><a href=/php/math/hypot/>hypot</a></p> [1738] => <p><a href=/php/math/intdiv/>intdiv</a></p> [1739] => <p><a href=/php/math/is_finite/>is_finite</a></p> [1740] => <p><a href=/php/math/is_infinite/>is_infinite</a></p> [1741] => <p><a href=/php/math/is_nan/>is_nan</a></p> [1742] => <p><a href=/php/math/log/>log</a></p> [1743] => <p><a href=/php/math/log10/>log10</a></p> [1744] => <p><a href=/php/math/log1p/>log1p</a></p> [1745] => <p><a href=/php/math/max/>max</a></p> [1746] => <p><a href=/php/math/min/>min</a></p> [1747] => <p><a href=/php/math/octdec/>octdec</a></p> [1748] => <p><a href=/php/math/pi/>pi</a></p> [1749] => <p><a href=/php/math/pow/>pow</a></p> [1750] => <p><a href=/php/math/rad2deg/>rad2deg</a></p> [1751] => <p><a href=/php/math/round/>round</a></p> [1752] => <p><a href=/php/math/sin/>sin</a></p> [1753] => <p><a href=/php/math/sinh/>sinh</a></p> [1754] => <p><a href=/php/math/sqrt/>sqrt</a></p> [1755] => <p><a href=/php/math/tan/>tan</a></p> [1756] => <p><a href=/php/math/tanh/>tanh</a></p> [1757] => </div> [1758] => <h2 id=miscellaneous><a href=#miscellaneous>Miscellaneous</a></h2> [1759] => <div class=margin> [1760] => <p><a href=/php/miscellaneous/__halt_compiler/>__halt_compiler</a></p> [1761] => <p><a href=/php/miscellaneous/connection_aborted/>connection_aborted</a></p> [1762] => <p><a href=/php/miscellaneous/connection_status/>connection_status</a></p> [1763] => <p><a href=/php/miscellaneous/constant/>constant</a></p> [1764] => <p><a href=/php/miscellaneous/define/>define</a></p> [1765] => <p><a href=/php/miscellaneous/defined/>defined</a></p> [1766] => <p><a href=/php/miscellaneous/die/>die</a></p> [1767] => <p><a href=/php/miscellaneous/eval/>eval</a></p> [1768] => <p><a href=/php/miscellaneous/exit/>exit</a></p> [1769] => <p><a href=/php/miscellaneous/highlight_file/>highlight_file</a></p> [1770] => <p><a href=/php/miscellaneous/highlight_string/>highlight_string</a></p> [1771] => <p><a href=/php/miscellaneous/hrtime/>hrtime</a></p> [1772] => <p><a href=/php/miscellaneous/ignore_user_abort/>ignore_user_abort</a></p> [1773] => <p><a href=/php/miscellaneous/pack/>pack</a></p> [1774] => <p><a href=/php/miscellaneous/php_strip_whitespace/>php_strip_whitespace</a></p> [1775] => <p><a href=/php/miscellaneous/show_source/>show_source</a></p> [1776] => <p><a href=/php/miscellaneous/sleep/>sleep</a></p> [1777] => <p><a href=/php/miscellaneous/sys_getloadavg/>sys_getloadavg</a></p> [1778] => <p><a href=/php/miscellaneous/time_nanosleep/>time_nanosleep</a></p> [1779] => <p><a href=/php/miscellaneous/time_sleep_until/>time_sleep_until</a></p> [1780] => <p><a href=/php/miscellaneous/uniqid/>uniqid</a></p> [1781] => <p><a href=/php/miscellaneous/unpack/>unpack</a></p> [1782] => <p><a href=/php/miscellaneous/usleep/>usleep</a></p> [1783] => </div> [1784] => <h2 id=network><a href=#network>Network</a></h2> [1785] => <div class=margin> [1786] => <p><a href=/php/network/checkdnsrr/>checkdnsrr</a></p> [1787] => <p><a href=/php/network/closelog/>closelog</a></p> [1788] => <p><a href=/php/network/dns_check_record/>dns_check_record</a></p> [1789] => <p><a href=/php/network/dns_get_mx/>dns_get_mx</a></p> [1790] => <p><a href=/php/network/dns_get_record/>dns_get_record</a></p> [1791] => <p><a href=/php/network/fsockopen/>fsockopen</a></p> [1792] => <p><a href=/php/network/gethostbyaddr/>gethostbyaddr</a></p> [1793] => <p><a href=/php/network/gethostbyname/>gethostbyname</a></p> [1794] => <p><a href=/php/network/gethostbynamel/>gethostbynamel</a></p> [1795] => <p><a href=/php/network/gethostname/>gethostname</a></p> [1796] => <p><a href=/php/network/getmxrr/>getmxrr</a></p> [1797] => <p><a href=/php/network/getprotobyname/>getprotobyname</a></p> [1798] => <p><a href=/php/network/getprotobynumber/>getprotobynumber</a></p> [1799] => <p><a href=/php/network/getservbyname/>getservbyname</a></p> [1800] => <p><a href=/php/network/getservbyport/>getservbyport</a></p> [1801] => <p><a href=/php/network/header/>header</a></p> [1802] => <p><a href=/php/network/header_register_callback/>header_register_callback</a></p> [1803] => <p><a href=/php/network/header_remove/>header_remove</a></p> [1804] => <p><a href=/php/network/headers_list/>headers_list</a></p> [1805] => <p><a href=/php/network/headers_sent/>headers_sent</a></p> [1806] => <p><a href=/php/network/http_response_code/>http_response_code</a></p> [1807] => <p><a href=/php/network/inet_ntop/>inet_ntop</a></p> [1808] => <p><a href=/php/network/inet_pton/>inet_pton</a></p> [1809] => <p><a href=/php/network/ip2long/>ip2long</a></p> [1810] => <p><a href=/php/network/long2ip/>long2ip</a></p> [1811] => <p><a href=/php/network/openlog/>openlog</a></p> [1812] => <p><a href=/php/network/pfsockopen/>pfsockopen</a></p> [1813] => <p><a href=/php/network/setcookie/>setcookie</a></p> [1814] => <p><a href=/php/network/setrawcookie/>setrawcookie</a></p> [1815] => <p><a href=/php/network/socket_get_status/>socket_get_status</a></p> [1816] => <p><a href=/php/network/socket_set_blocking/>socket_set_blocking</a></p> [1817] => <p><a href=/php/network/socket_set_timeout/>socket_set_timeout</a></p> [1818] => <p><a href=/php/network/syslog/>syslog</a></p> [1819] => </div> [1820] => <h2 id=options-/-information><a href=#options-/-information>Options / Information</a></h2> [1821] => <div class=margin> [1822] => <p><a href=/php/options-information/assert/>assert</a></p> [1823] => <p><a href=/php/options-information/assert_options/>assert_options</a></p> [1824] => <p><a href=/php/options-information/cli_get_process_title/>cli_get_process_title</a></p> [1825] => <p><a href=/php/options-information/cli_set_process_title/>cli_set_process_title</a></p> [1826] => <p><a href=/php/options-information/dl/>dl</a></p> [1827] => <p><a href=/php/options-information/extension_loaded/>extension_loaded</a></p> [1828] => <p><a href=/php/options-information/gc_collect_cycles/>gc_collect_cycles</a></p> [1829] => <p><a href=/php/options-information/gc_disable/>gc_disable</a></p> [1830] => <p><a href=/php/options-information/gc_enable/>gc_enable</a></p> [1831] => <p><a href=/php/options-information/gc_enabled/>gc_enabled</a></p> [1832] => <p><a href=/php/options-information/gc_mem_caches/>gc_mem_caches</a></p> [1833] => <p><a href=/php/options-information/gc_status/>gc_status</a></p> [1834] => <p><a href=/php/options-information/get_cfg_var/>get_cfg_var</a></p> [1835] => <p><a href=/php/options-information/get_current_user/>get_current_user</a></p> [1836] => <p><a href=/php/options-information/get_defined_constants/>get_defined_constants</a></p> [1837] => <p><a href=/php/options-information/get_extension_funcs/>get_extension_funcs</a></p> [1838] => <p><a href=/php/options-information/get_include_path/>get_include_path</a></p> [1839] => <p><a href=/php/options-information/get_included_files/>get_included_files</a></p> [1840] => <p><a href=/php/options-information/get_loaded_extensions/>get_loaded_extensions</a></p> [1841] => <p><a href=/php/options-information/get_required_files/>get_required_files</a></p> [1842] => <p><a href=/php/options-information/get_resources/>get_resources</a></p> [1843] => <p><a href=/php/options-information/getenv/>getenv</a></p> [1844] => <p><a href=/php/options-information/getlastmod/>getlastmod</a></p> [1845] => <p><a href=/php/options-information/getmygid/>getmygid</a></p> [1846] => <p><a href=/php/options-information/getmyinode/>getmyinode</a></p> [1847] => <p><a href=/php/options-information/getmypid/>getmypid</a></p> [1848] => <p><a href=/php/options-information/getmyuid/>getmyuid</a></p> [1849] => <p><a href=/php/options-information/getopt/>getopt</a></p> [1850] => <p><a href=/php/options-information/getrusage/>getrusage</a></p> [1851] => <p><a href=/php/options-information/ini_alter/>ini_alter</a></p> [1852] => <p><a href=/php/options-information/ini_get/>ini_get</a></p> [1853] => <p><a href=/php/options-information/ini_get_all/>ini_get_all</a></p> [1854] => <p><a href=/php/options-information/ini_restore/>ini_restore</a></p> [1855] => <p><a href=/php/options-information/ini_set/>ini_set</a></p> [1856] => <p><a href=/php/options-information/memory_get_peak_usage/>memory_get_peak_usage</a></p> [1857] => <p><a href=/php/options-information/memory_get_usage/>memory_get_usage</a></p> [1858] => <p><a href=/php/options-information/memory_reset_peak_usage/>memory_reset_peak_usage</a></p> [1859] => <p><a href=/php/options-information/php_ini_loaded_file/>php_ini_loaded_file</a></p> [1860] => <p><a href=/php/options-information/php_ini_scanned_files/>php_ini_scanned_files</a></p> [1861] => <p><a href=/php/options-information/php_sapi_name/>php_sapi_name</a></p> [1862] => <p><a href=/php/options-information/php_uname/>php_uname</a></p> [1863] => <p><a href=/php/options-information/phpcredits/>phpcredits</a></p> [1864] => <p><a href=/php/options-information/phpinfo/>phpinfo</a></p> [1865] => <p><a href=/php/options-information/phpversion/>phpversion</a></p> [1866] => <p><a href=/php/options-information/putenv/>putenv</a></p> [1867] => <p><a href=/php/options-information/set_include_path/>set_include_path</a></p> [1868] => <p><a href=/php/options-information/set_time_limit/>set_time_limit</a></p> [1869] => <p><a href=/php/options-information/sys_get_temp_dir/>sys_get_temp_dir</a></p> [1870] => <p><a href=/php/options-information/version_compare/>version_compare</a></p> [1871] => <p><a href=/php/options-information/zend_thread_id/>zend_thread_id</a></p> [1872] => <p><a href=/php/options-information/zend_version/>zend_version</a></p> [1873] => </div> [1874] => <h2 id=pcre><a href=#pcre>PCRE</a></h2> [1875] => <div class=margin> [1876] => <p><a href=/php/pcre/preg_filter/>preg_filter</a></p> [1877] => <p><a href=/php/pcre/preg_grep/>preg_grep</a></p> [1878] => <p><a href=/php/pcre/preg_last_error/>preg_last_error</a></p> [1879] => <p><a href=/php/pcre/preg_match/>preg_match</a></p> [1880] => <p><a href=/php/pcre/preg_match_all/>preg_match_all</a></p> [1881] => <p><a href=/php/pcre/preg_quote/>preg_quote</a></p> [1882] => <p><a href=/php/pcre/preg_replace/>preg_replace</a></p> [1883] => <p><a href=/php/pcre/preg_replace_callback/>preg_replace_callback</a></p> [1884] => <p><a href=/php/pcre/preg_replace_callback_array/>preg_replace_callback_array</a></p> [1885] => <p><a href=/php/pcre/preg_split/>preg_split</a></p> [1886] => </div> [1887] => <h2 id=random><a href=#random>Random</a></h2> [1888] => <div class=margin> [1889] => <p><a href=/php/random/getrandmax/>getrandmax</a></p> [1890] => <p><a href=/php/random/lcg_value/>lcg_value</a></p> [1891] => <p><a href=/php/random/mt_getrandmax/>mt_getrandmax</a></p> [1892] => <p><a href=/php/random/mt_rand/>mt_rand</a></p> [1893] => <p><a href=/php/random/mt_srand/>mt_srand</a></p> [1894] => <p><a href=/php/random/rand/>rand</a></p> [1895] => <p><a href=/php/random/srand/>srand</a></p> [1896] => </div> [1897] => <h2 id=readline><a href=#readline>Readline</a></h2> [1898] => <div class=margin> [1899] => <p><a href=/php/readline/readline/>readline</a></p> [1900] => <p><a href=/php/readline/readline_add_history/>readline_add_history</a></p> [1901] => <p><a href=/php/readline/readline_callback_handler_install/>readline_callback_handler_install</a></p> [1902] => <p><a href=/php/readline/readline_callback_handler_remove/>readline_callback_handler_remove</a></p> [1903] => <p><a href=/php/readline/readline_callback_read_char/>readline_callback_read_char</a></p> [1904] => <p><a href=/php/readline/readline_clear_history/>readline_clear_history</a></p> [1905] => <p><a href=/php/readline/readline_completion_function/>readline_completion_function</a></p> [1906] => <p><a href=/php/readline/readline_info/>readline_info</a></p> [1907] => <p><a href=/php/readline/readline_list_history/>readline_list_history</a></p> [1908] => <p><a href=/php/readline/readline_on_new_line/>readline_on_new_line</a></p> [1909] => <p><a href=/php/readline/readline_read_history/>readline_read_history</a></p> [1910] => <p><a href=/php/readline/readline_redisplay/>readline_redisplay</a></p> [1911] => <p><a href=/php/readline/readline_write_history/>readline_write_history</a></p> [1912] => </div> [1913] => <h2 id=stream><a href=#stream>Stream</a></h2> [1914] => <div class=margin> [1915] => <p><a href=/php/stream/stream_bucket_append/>stream_bucket_append</a></p> [1916] => <p><a href=/php/stream/stream_bucket_make_writeable/>stream_bucket_make_writeable</a></p> [1917] => <p><a href=/php/stream/stream_bucket_new/>stream_bucket_new</a></p> [1918] => <p><a href=/php/stream/stream_bucket_prepend/>stream_bucket_prepend</a></p> [1919] => <p><a href=/php/stream/stream_context_create/>stream_context_create</a></p> [1920] => <p><a href=/php/stream/stream_context_get_default/>stream_context_get_default</a></p> [1921] => <p><a href=/php/stream/stream_context_get_options/>stream_context_get_options</a></p> [1922] => <p><a href=/php/stream/stream_context_get_params/>stream_context_get_params</a></p> [1923] => <p><a href=/php/stream/stream_context_set_default/>stream_context_set_default</a></p> [1924] => <p><a href=/php/stream/stream_context_set_option/>stream_context_set_option</a></p> [1925] => <p><a href=/php/stream/stream_context_set_params/>stream_context_set_params</a></p> [1926] => <p><a href=/php/stream/stream_copy_to_stream/>stream_copy_to_stream</a></p> [1927] => <p><a href=/php/stream/stream_filter_append/>stream_filter_append</a></p> [1928] => <p><a href=/php/stream/stream_filter_prepend/>stream_filter_prepend</a></p> [1929] => <p><a href=/php/stream/stream_filter_register/>stream_filter_register</a></p> [1930] => <p><a href=/php/stream/stream_filter_remove/>stream_filter_remove</a></p> [1931] => <p><a href=/php/stream/stream_get_contents/>stream_get_contents</a></p> [1932] => <p><a href=/php/stream/stream_get_filters/>stream_get_filters</a></p> [1933] => <p><a href=/php/stream/stream_get_line/>stream_get_line</a></p> [1934] => <p><a href=/php/stream/stream_get_meta_data/>stream_get_meta_data</a></p> [1935] => <p><a href=/php/stream/stream_get_transports/>stream_get_transports</a></p> [1936] => <p><a href=/php/stream/stream_get_wrappers/>stream_get_wrappers</a></p> [1937] => <p><a href=/php/stream/stream_is_local/>stream_is_local</a></p> [1938] => <p><a href=/php/stream/stream_isatty/>stream_isatty</a></p> [1939] => <p><a href=/php/stream/stream_notification_callback/>stream_notification_callback</a></p> [1940] => <p><a href=/php/stream/stream_register_wrapper/>stream_register_wrapper</a></p> [1941] => <p><a href=/php/stream/stream_resolve_include_path/>stream_resolve_include_path</a></p> [1942] => <p><a href=/php/stream/stream_select/>stream_select</a></p> [1943] => <p><a href=/php/stream/stream_set_blocking/>stream_set_blocking</a></p> [1944] => <p><a href=/php/stream/stream_set_chunk_size/>stream_set_chunk_size</a></p> [1945] => <p><a href=/php/stream/stream_set_read_buffer/>stream_set_read_buffer</a></p> [1946] => <p><a href=/php/stream/stream_set_timeout/>stream_set_timeout</a></p> [1947] => <p><a href=/php/stream/stream_set_write_buffer/>stream_set_write_buffer</a></p> [1948] => <p><a href=/php/stream/stream_socket_accept/>stream_socket_accept</a></p> [1949] => <p><a href=/php/stream/stream_socket_client/>stream_socket_client</a></p> [1950] => <p><a href=/php/stream/stream_socket_enable_crypto/>stream_socket_enable_crypto</a></p> [1951] => <p><a href=/php/stream/stream_socket_get_name/>stream_socket_get_name</a></p> [1952] => <p><a href=/php/stream/stream_socket_pair/>stream_socket_pair</a></p> [1953] => <p><a href=/php/stream/stream_socket_recvfrom/>stream_socket_recvfrom</a></p> [1954] => <p><a href=/php/stream/stream_socket_sendto/>stream_socket_sendto</a></p> [1955] => <p><a href=/php/stream/stream_socket_server/>stream_socket_server</a></p> [1956] => <p><a href=/php/stream/stream_socket_shutdown/>stream_socket_shutdown</a></p> [1957] => <p><a href=/php/stream/stream_supports_lock/>stream_supports_lock</a></p> [1958] => <p><a href=/php/stream/stream_wrapper_register/>stream_wrapper_register</a></p> [1959] => <p><a href=/php/stream/stream_wrapper_restore/>stream_wrapper_restore</a></p> [1960] => <p><a href=/php/stream/stream_wrapper_unregister/>stream_wrapper_unregister</a></p> [1961] => </div> [1962] => <h2 id=string><a href=#string>String</a></h2> [1963] => <div class=margin> [1964] => <p><a href=/php/string/addcslashes/>addcslashes</a></p> [1965] => <p><a href=/php/string/addslashes/>addslashes</a></p> [1966] => <p><a href=/php/string/bin2hex/>bin2hex</a></p> [1967] => <p><a href=/php/string/chop/>chop</a></p> [1968] => <p><a href=/php/string/chr/>chr</a></p> [1969] => <p><a href=/php/string/chunk_split/>chunk_split</a></p> [1970] => <p><a href=/php/string/convert_uudecode/>convert_uudecode</a></p> [1971] => <p><a href=/php/string/convert_uuencode/>convert_uuencode</a></p> [1972] => <p><a href=/php/string/count_chars/>count_chars</a></p> [1973] => <p><a href=/php/string/crc32/>crc32</a></p> [1974] => <p><a href=/php/string/crypt/>crypt</a></p> [1975] => <p><a href=/php/string/echo/>echo</a></p> [1976] => <p><a href=/php/string/explode/>explode</a></p> [1977] => <p><a href=/php/string/fprintf/>fprintf</a></p> [1978] => <p><a href=/php/string/get_html_translation_table/>get_html_translation_table</a></p> [1979] => <p><a href=/php/string/hebrev/>hebrev</a></p> [1980] => <p><a href=/php/string/hebrevc/>hebrevc</a></p> [1981] => <p><a href=/php/string/hex2bin/>hex2bin</a></p> [1982] => <p><a href=/php/string/html_entity_decode/>html_entity_decode</a></p> [1983] => <p><a href=/php/string/htmlentities/>htmlentities</a></p> [1984] => <p><a href=/php/string/htmlspecialchars/>htmlspecialchars</a></p> [1985] => <p><a href=/php/string/htmlspecialchars_decode/>htmlspecialchars_decode</a></p> [1986] => <p><a href=/php/string/implode/>implode</a></p> [1987] => <p><a href=/php/string/join/>join</a></p> [1988] => <p><a href=/php/string/lcfirst/>lcfirst</a></p> [1989] => <p><a href=/php/string/levenshtein/>levenshtein</a></p> [1990] => <p><a href=/php/string/localeconv/>localeconv</a></p> [1991] => <p><a href=/php/string/ltrim/>ltrim</a></p> [1992] => <p><a href=/php/string/md5/>md5</a></p> [1993] => <p><a href=/php/string/md5_file/>md5_file</a></p> [1994] => <p><a href=/php/string/metaphone/>metaphone</a></p> [1995] => <p><a href=/php/string/nl_langinfo/>nl_langinfo</a></p> [1996] => <p><a href=/php/string/nl2br/>nl2br</a></p> [1997] => <p><a href=/php/string/number_format/>number_format</a></p> [1998] => <p><a href=/php/string/ord/>ord</a></p> [1999] => <p><a href=/php/string/parse_str/>parse_str</a></p> [2000] => <p><a href=/php/string/print/>print</a></p> [2001] => <p><a href=/php/string/printf/>printf</a></p> [2002] => <p><a href=/php/string/quoted_printable_decode/>quoted_printable_decode</a></p> [2003] => <p><a href=/php/string/quoted_printable_encode/>quoted_printable_encode</a></p> [2004] => <p><a href=/php/string/quotemeta/>quotemeta</a></p> [2005] => <p><a href=/php/string/rtrim/>rtrim</a></p> [2006] => <p><a href=/php/string/setlocale/>setlocale</a></p> [2007] => <p><a href=/php/string/sha1/>sha1</a></p> [2008] => <p><a href=/php/string/sha1_file/>sha1_file</a></p> [2009] => <p><a href=/php/string/similar_text/>similar_text</a></p> [2010] => <p><a href=/php/string/soundex/>soundex</a></p> [2011] => <p><a href=/php/string/sprintf/>sprintf</a></p> [2012] => <p><a href=/php/string/sscanf/>sscanf</a></p> [2013] => <p><a href=/php/string/str_contains/>str_contains</a></p> [2014] => <p><a href=/php/string/str_ends_with/>str_ends_with</a></p> [2015] => <p><a href=/php/string/str_getcsv/>str_getcsv</a></p> [2016] => <p><a href=/php/string/str_ireplace/>str_ireplace</a></p> [2017] => <p><a href=/php/string/str_pad/>str_pad</a></p> [2018] => <p><a href=/php/string/str_repeat/>str_repeat</a></p> [2019] => <p><a href=/php/string/str_replace/>str_replace</a></p> [2020] => <p><a href=/php/string/str_rot13/>str_rot13</a></p> [2021] => <p><a href=/php/string/str_shuffle/>str_shuffle</a></p> [2022] => <p><a href=/php/string/str_split/>str_split</a></p> [2023] => <p><a href=/php/string/str_starts_with/>str_starts_with</a></p> [2024] => <p><a href=/php/string/str_word_count/>str_word_count</a></p> [2025] => <p><a href=/php/string/strcasecmp/>strcasecmp</a></p> [2026] => <p><a href=/php/string/strchr/>strchr</a></p> [2027] => <p><a href=/php/string/strcmp/>strcmp</a></p> [2028] => <p><a href=/php/string/strcoll/>strcoll</a></p> [2029] => <p><a href=/php/string/strcspn/>strcspn</a></p> [2030] => <p><a href=/php/string/strip_tags/>strip_tags</a></p> [2031] => <p><a href=/php/string/stripcslashes/>stripcslashes</a></p> [2032] => <p><a href=/php/string/stripos/>stripos</a></p> [2033] => <p><a href=/php/string/stripslashes/>stripslashes</a></p> [2034] => <p><a href=/php/string/stristr/>stristr</a></p> [2035] => <p><a href=/php/string/strlen/>strlen</a></p> [2036] => <p><a href=/php/string/strnatcasecmp/>strnatcasecmp</a></p> [2037] => <p><a href=/php/string/strnatcmp/>strnatcmp</a></p> [2038] => <p><a href=/php/string/strncasecmp/>strncasecmp</a></p> [2039] => <p><a href=/php/string/strncmp/>strncmp</a></p> [2040] => <p><a href=/php/string/strpbrk/>strpbrk</a></p> [2041] => <p><a href=/php/string/strpos/>strpos</a></p> [2042] => <p><a href=/php/string/strrchr/>strrchr</a></p> [2043] => <p><a href=/php/string/strrev/>strrev</a></p> [2044] => <p><a href=/php/string/strripos/>strripos</a></p> [2045] => <p><a href=/php/string/strrpos/>strrpos</a></p> [2046] => <p><a href=/php/string/strspn/>strspn</a></p> [2047] => <p><a href=/php/string/strstr/>strstr</a></p> [2048] => <p><a href=/php/string/strtok/>strtok</a></p> [2049] => <p><a href=/php/string/strtolower/>strtolower</a></p> [2050] => <p><a href=/php/string/strtoupper/>strtoupper</a></p> [2051] => <p><a href=/php/string/strtr/>strtr</a></p> [2052] => <p><a href=/php/string/substr/>substr</a></p> [2053] => <p><a href=/php/string/substr_compare/>substr_compare</a></p> [2054] => <p><a href=/php/string/substr_count/>substr_count</a></p> [2055] => <p><a href=/php/string/substr_replace/>substr_replace</a></p> [2056] => <p><a href=/php/string/trim/>trim</a></p> [2057] => <p><a href=/php/string/ucfirst/>ucfirst</a></p> [2058] => <p><a href=/php/string/ucwords/>ucwords</a></p> [2059] => <p><a href=/php/string/vfprintf/>vfprintf</a></p> [2060] => <p><a href=/php/string/vprintf/>vprintf</a></p> [2061] => <p><a href=/php/string/vsprintf/>vsprintf</a></p> [2062] => <p><a href=/php/string/wordwrap/>wordwrap</a></p> [2063] => </div> [2064] => <h2 id=tokenizer><a href=#tokenizer>Tokenizer</a></h2> [2065] => <div class=margin> [2066] => <p><a href=/php/tokenizer/token_get_all/>token_get_all</a></p> [2067] => <p><a href=/php/tokenizer/token_name/>token_name</a></p> [2068] => </div> [2069] => <h2 id=url><a href=#url>URL</a></h2> [2070] => <div class=margin> [2071] => <p><a href=/php/url/base64_decode/>base64_decode</a></p> [2072] => <p><a href=/php/url/base64_encode/>base64_encode</a></p> [2073] => <p><a href=/php/url/get_headers/>get_headers</a></p> [2074] => <p><a href=/php/url/get_meta_tags/>get_meta_tags</a></p> [2075] => <p><a href=/php/url/http_build_query/>http_build_query</a></p> [2076] => <p><a href=/php/url/parse_url/>parse_url</a></p> [2077] => <p><a href=/php/url/rawurldecode/>rawurldecode</a></p> [2078] => <p><a href=/php/url/rawurlencode/>rawurlencode</a></p> [2079] => <p><a href=/php/url/urldecode/>urldecode</a></p> [2080] => <p><a href=/php/url/urlencode/>urlencode</a></p> [2081] => </div> [2082] => <h2 id=variable-handling><a href=#variable-handling>Variable Handling</a></h2> [2083] => <div class=margin> [2084] => <p><a href=/php/variable-handling/boolval/>boolval</a></p> [2085] => <p><a href=/php/variable-handling/debug_zval_dump/>debug_zval_dump</a></p> [2086] => <p><a href=/php/variable-handling/doubleval/>doubleval</a></p> [2087] => <p><a href=/php/variable-handling/empty/>empty</a></p> [2088] => <p><a href=/php/variable-handling/floatval/>floatval</a></p> [2089] => <p><a href=/php/variable-handling/get_debug_type/>get_debug_type</a></p> [2090] => <p><a href=/php/variable-handling/get_defined_vars/>get_defined_vars</a></p> [2091] => <p><a href=/php/variable-handling/get_resource_id/>get_resource_id</a></p> [2092] => <p><a href=/php/variable-handling/get_resource_type/>get_resource_type</a></p> [2093] => <p><a href=/php/variable-handling/gettype/>gettype</a></p> [2094] => <p><a href=/php/variable-handling/intval/>intval</a></p> [2095] => <p><a href=/php/variable-handling/is_array/>is_array</a></p> [2096] => <p><a href=/php/variable-handling/is_bool/>is_bool</a></p> [2097] => <p><a href=/php/variable-handling/is_callable/>is_callable</a></p> [2098] => <p><a href=/php/variable-handling/is_countable/>is_countable</a></p> [2099] => <p><a href=/php/variable-handling/is_double/>is_double</a></p> [2100] => <p><a href=/php/variable-handling/is_float/>is_float</a></p> [2101] => <p><a href=/php/variable-handling/is_int/>is_int</a></p> [2102] => <p><a href=/php/variable-handling/is_integer/>is_integer</a></p> [2103] => <p><a href=/php/variable-handling/is_iterable/>is_iterable</a></p> [2104] => <p><a href=/php/variable-handling/is_long/>is_long</a></p> [2105] => <p><a href=/php/variable-handling/is_null/>is_null</a></p> [2106] => <p><a href=/php/variable-handling/is_numeric/>is_numeric</a></p> [2107] => <p><a href=/php/variable-handling/is_object/>is_object</a></p> [2108] => <p><a href=/php/variable-handling/is_real/>is_real</a></p> [2109] => <p><a href=/php/variable-handling/is_resource/>is_resource</a></p> [2110] => <p><a href=/php/variable-handling/is_scalar/>is_scalar</a></p> [2111] => <p><a href=/php/variable-handling/is_string/>is_string</a></p> [2112] => <p><a href=/php/variable-handling/isset/>isset</a></p> [2113] => <p><a href=/php/variable-handling/print_r/>print_r</a></p> [2114] => <p><a href=/php/variable-handling/serialize/>serialize</a></p> [2115] => <p><a href=/php/variable-handling/settype/>settype</a></p> [2116] => <p><a href=/php/variable-handling/strval/>strval</a></p> [2117] => <p><a href=/php/variable-handling/unserialize/>unserialize</a></p> [2118] => <p><a href=/php/variable-handling/unset/>unset</a></p> [2119] => <p><a href=/php/variable-handling/var_dump/>var_dump</a></p> [2120] => <p><a href=/php/variable-handling/var_export/>var_export</a></p> [2121] => </div> [2122] => </div> [2123] => <div class=nav-h1> [2124] => <p><a id=nav-switch-svg>SVG</a></p> [2125] => </div> [2126] => <div id=nav-content-svg> [2127] => <h2 id=overview><a href=#overview>Overview</a></h2> [2128] => <div class=margin> [2129] => <p><a href=/svg/>Overview</a></p> [2130] => </div> [2131] => <h2 id=attributes><a href=#attributes>Attributes</a></h2> [2132] => <div class=margin> [2133] => <p><a href=/svg/attributes/accumulate/>accumulate</a></p> [2134] => <p><a href=/svg/attributes/additive/>additive</a></p> [2135] => <p><a href=/svg/attributes/amplitude/>amplitude</a></p> [2136] => <p><a href=/svg/attributes/attributename/>attributeName</a></p> [2137] => <p><a href=/svg/attributes/azimuth/>azimuth</a></p> [2138] => <p><a href=/svg/attributes/basefrequency/>baseFrequency</a></p> [2139] => <p><a href=/svg/attributes/begin/>begin</a></p> [2140] => <p><a href=/svg/attributes/bias/>bias</a></p> [2141] => <p><a href=/svg/attributes/by/>by</a></p> [2142] => <p><a href=/svg/attributes/calcmode/>calcMode</a></p> [2143] => <p><a href=/svg/attributes/clippathunits/>clipPathUnits</a></p> [2144] => <p><a href=/svg/attributes/crossorigin/>crossorigin</a></p> [2145] => <p><a href=/svg/attributes/cx/>cx</a></p> [2146] => <p><a href=/svg/attributes/cy/>cy</a></p> [2147] => <p><a href=/svg/attributes/d/>d</a></p> [2148] => <p><a href=/svg/attributes/diffuseconstant/>diffuseConstant</a></p> [2149] => <p><a href=/svg/attributes/divisor/>divisor</a></p> [2150] => <p><a href=/svg/attributes/download/>download</a></p> [2151] => <p><a href=/svg/attributes/dur/>dur</a></p> [2152] => <p><a href=/svg/attributes/dx/>dx</a></p> [2153] => <p><a href=/svg/attributes/dy/>dy</a></p> [2154] => <p><a href=/svg/attributes/edgemode/>edgeMode</a></p> [2155] => <p><a href=/svg/attributes/elevation/>elevation</a></p> [2156] => <p><a href=/svg/attributes/end/>end</a></p> [2157] => <p><a href=/svg/attributes/exponent/>exponent</a></p> [2158] => <p><a href=/svg/attributes/fill/>fill</a></p> [2159] => <p><a href=/svg/attributes/filterunits/>filterUnits</a></p> [2160] => <p><a href=/svg/attributes/flood-color/>flood-color</a></p> [2161] => <p><a href=/svg/attributes/flood-opacity/>flood-opacity</a></p> [2162] => <p><a href=/svg/attributes/fr/>fr</a></p> [2163] => <p><a href=/svg/attributes/from/>from</a></p> [2164] => <p><a href=/svg/attributes/fx/>fx</a></p> [2165] => <p><a href=/svg/attributes/fy/>fy</a></p> [2166] => <p><a href=/svg/attributes/gradienttransform/>gradientTransform</a></p> [2167] => <p><a href=/svg/attributes/gradientunits/>gradientUnits</a></p> [2168] => <p><a href=/svg/attributes/height/>height</a></p> [2169] => <p><a href=/svg/attributes/href/>href</a></p> [2170] => <p><a href=/svg/attributes/hreflang/>hreflang</a></p> [2171] => <p><a href=/svg/attributes/id/>id</a></p> [2172] => <p><a href=/svg/attributes/in/>in</a></p> [2173] => <p><a href=/svg/attributes/in2/>in2</a></p> [2174] => <p><a href=/svg/attributes/intercept/>intercept</a></p> [2175] => <p><a href=/svg/attributes/k1/>k1</a></p> [2176] => <p><a href=/svg/attributes/k2/>k2</a></p> [2177] => <p><a href=/svg/attributes/k3/>k3</a></p> [2178] => <p><a href=/svg/attributes/k4/>k4</a></p> [2179] => <p><a href=/svg/attributes/kernelmatrix/>kernelMatrix</a></p> [2180] => <p><a href=/svg/attributes/keypoints/>keyPoints</a></p> [2181] => <p><a href=/svg/attributes/keysplines/>keySplines</a></p> [2182] => <p><a href=/svg/attributes/keytimes/>keyTimes</a></p> [2183] => <p><a href=/svg/attributes/lengthadjust/>lengthAdjust</a></p> [2184] => <p><a href=/svg/attributes/limitingconeangle/>limitingConeAngle</a></p> [2185] => <p><a href=/svg/attributes/markerheight/>markerHeight</a></p> [2186] => <p><a href=/svg/attributes/markerunits/>markerUnits</a></p> [2187] => <p><a href=/svg/attributes/markerwidth/>markerWidth</a></p> [2188] => <p><a href=/svg/attributes/maskcontentunits/>maskContentUnits</a></p> [2189] => <p><a href=/svg/attributes/maskunits/>maskUnits</a></p> [2190] => <p><a href=/svg/attributes/max/>max</a></p> [2191] => <p><a href=/svg/attributes/media/>media</a></p> [2192] => <p><a href=/svg/attributes/method/>method</a></p> [2193] => <p><a href=/svg/attributes/min/>min</a></p> [2194] => <p><a href=/svg/attributes/mode/>mode</a></p> [2195] => <p><a href=/svg/attributes/no-composite/>no-composite</a></p> [2196] => <p><a href=/svg/attributes/numoctaves/>numOctaves</a></p> [2197] => <p><a href=/svg/attributes/offset/>offset</a></p> [2198] => <p><a href=/svg/attributes/onbegin/>onbegin</a></p> [2199] => <p><a href=/svg/attributes/onend/>onend</a></p> [2200] => <p><a href=/svg/attributes/onrepeat/>onrepeat</a></p> [2201] => <p><a href=/svg/attributes/operator/>operator</a></p> [2202] => <p><a href=/svg/attributes/order/>order</a></p> [2203] => <p><a href=/svg/attributes/orient/>orient</a></p> [2204] => <p><a href=/svg/attributes/origin/>origin</a></p> [2205] => <p><a href=/svg/attributes/path/>path</a></p> [2206] => <p><a href=/svg/attributes/pathlength/>pathLength</a></p> [2207] => <p><a href=/svg/attributes/patterncontentunits/>patternContentUnits</a></p> [2208] => <p><a href=/svg/attributes/patterntransform/>patternTransform</a></p> [2209] => <p><a href=/svg/attributes/patternunits/>patternUnits</a></p> [2210] => <p><a href=/svg/attributes/ping/>ping</a></p> [2211] => <p><a href=/svg/attributes/points/>points</a></p> [2212] => <p><a href=/svg/attributes/pointsatx/>pointsAtX</a></p> [2213] => <p><a href=/svg/attributes/pointsaty/>pointsAtY</a></p> [2214] => <p><a href=/svg/attributes/pointsatz/>pointsAtZ</a></p> [2215] => <p><a href=/svg/attributes/preservealpha/>preserveAlpha</a></p> [2216] => <p><a href=/svg/attributes/preserveaspectratio/>preserveAspectRatio</a></p> [2217] => <p><a href=/svg/attributes/primitiveunits/>primitiveUnits</a></p> [2218] => <p><a href=/svg/attributes/r/>r</a></p> [2219] => <p><a href=/svg/attributes/radius/>radius</a></p> [2220] => <p><a href=/svg/attributes/referrerpolicy/>referrerPolicy</a></p> [2221] => <p><a href=/svg/attributes/refx/>refx</a></p> [2222] => <p><a href=/svg/attributes/refy/>refy</a></p> [2223] => <p><a href=/svg/attributes/rel/>rel</a></p> [2224] => <p><a href=/svg/attributes/repeatcount/>repeatCount</a></p> [2225] => <p><a href=/svg/attributes/repeatdur/>repeatDur</a></p> [2226] => <p><a href=/svg/attributes/requiredextensions/>requiredExtensions</a></p> [2227] => <p><a href=/svg/attributes/restart/>restart</a></p> [2228] => <p><a href=/svg/attributes/rotate/>rotate</a></p> [2229] => <p><a href=/svg/attributes/rx/>rx</a></p> [2230] => <p><a href=/svg/attributes/ry/>ry</a></p> [2231] => <p><a href=/svg/attributes/scale/>scale</a></p> [2232] => <p><a href=/svg/attributes/seed/>seed</a></p> [2233] => <p><a href=/svg/attributes/side/>side</a></p> [2234] => <p><a href=/svg/attributes/slope/>slope</a></p> [2235] => <p><a href=/svg/attributes/spacing/>spacing</a></p> [2236] => <p><a href=/svg/attributes/specularconstant/>specularConstant</a></p> [2237] => <p><a href=/svg/attributes/specularexponent/>specularExponent</a></p> [2238] => <p><a href=/svg/attributes/spreadmethod/>spreadMethod</a></p> [2239] => <p><a href=/svg/attributes/startoffset/>startoffset</a></p> [2240] => <p><a href=/svg/attributes/stddeviation/>stdDeviation</a></p> [2241] => <p><a href=/svg/attributes/stitchtiles/>stitchTiles</a></p> [2242] => <p><a href=/svg/attributes/stop-color/>stop-color</a></p> [2243] => <p><a href=/svg/attributes/stop-opacity/>stop-opacity</a></p> [2244] => <p><a href=/svg/attributes/surfacescale/>surfaceScale</a></p> [2245] => <p><a href=/svg/attributes/systemlanguage/>systemLanguage</a></p> [2246] => <p><a href=/svg/attributes/tabindex/>tabindex</a></p> [2247] => <p><a href=/svg/attributes/tablevalues/>tableValues</a></p> [2248] => <p><a href=/svg/attributes/target/>target</a></p> [2249] => <p><a href=/svg/attributes/targetx/>targetX</a></p> [2250] => <p><a href=/svg/attributes/targety/>targetY</a></p> [2251] => <p><a href=/svg/attributes/textlength/>textLength</a></p> [2252] => <p><a href=/svg/attributes/title/>title</a></p> [2253] => <p><a href=/svg/attributes/to/>to</a></p> [2254] => <p><a href=/svg/attributes/transform/>transform</a></p> [2255] => <p><a href=/svg/attributes/type/>type</a></p> [2256] => <p><a href=/svg/attributes/values/>values</a></p> [2257] => <p><a href=/svg/attributes/viewbox/>viewBox</a></p> [2258] => <p><a href=/svg/attributes/width/>width</a></p> [2259] => <p><a href=/svg/attributes/x/>x</a></p> [2260] => <p><a href=/svg/attributes/x1/>x1</a></p> [2261] => <p><a href=/svg/attributes/x2/>x2</a></p> [2262] => <p><a href=/svg/attributes/xchannelselector/>xChannelSelector</a></p> [2263] => <p><a href=/svg/attributes/y/>y</a></p> [2264] => <p><a href=/svg/attributes/y1/>y1</a></p> [2265] => <p><a href=/svg/attributes/y2/>y2</a></p> [2266] => <p><a href=/svg/attributes/ychannelselector/>yChannelSelector</a></p> [2267] => <p><a href=/svg/attributes/z/>z</a></p> [2268] => <p><a href=/svg/attributes/zoomandpan/>zoomAndPan</a></p> [2269] => </div> [2270] => <h2 id=elements><a href=#elements>Elements</a></h2> [2271] => <div class=margin> [2272] => <p><a href=/svg/elements/a/>a</a></p> [2273] => <p><a href=/svg/elements/animate/>animate</a></p> [2274] => <p><a href=/svg/elements/animatemotion/>animateMotion</a></p> [2275] => <p><a href=/svg/elements/animatetransform/>animateTransform</a></p> [2276] => <p><a href=/svg/elements/circle/>circle</a></p> [2277] => <p><a href=/svg/elements/clippath/>clipPath</a></p> [2278] => <p><a href=/svg/elements/defs/>defs</a></p> [2279] => <p><a href=/svg/elements/desc/>desc</a></p> [2280] => <p><a href=/svg/elements/discard/>discard</a></p> [2281] => <p><a href=/svg/elements/ellipse/>ellipse</a></p> [2282] => <p><a href=/svg/elements/feblend/>feBlend</a></p> [2283] => <p><a href=/svg/elements/fecolormatrix/>feColorMatrix</a></p> [2284] => <p><a href=/svg/elements/fecomponenttransfer/>feComponentTransfer</a></p> [2285] => <p><a href=/svg/elements/fecomposite/>feComposite</a></p> [2286] => <p><a href=/svg/elements/feconvolvematrix/>feConvolveMatrix</a></p> [2287] => <p><a href=/svg/elements/fediffuselighting/>feDiffuseLighting</a></p> [2288] => <p><a href=/svg/elements/fedisplacementmap/>feDisplacementMap</a></p> [2289] => <p><a href=/svg/elements/fedistantlight/>feDistantLight</a></p> [2290] => <p><a href=/svg/elements/fedropshadow/>feDropShadow</a></p> [2291] => <p><a href=/svg/elements/feflood/>feFlood</a></p> [2292] => <p><a href=/svg/elements/fefunca/>feFuncA</a></p> [2293] => <p><a href=/svg/elements/fefuncb/>feFuncB</a></p> [2294] => <p><a href=/svg/elements/fefuncg/>feFuncG</a></p> [2295] => <p><a href=/svg/elements/fefuncr/>feFuncR</a></p> [2296] => <p><a href=/svg/elements/fegaussianblur/>feGaussianBlur</a></p> [2297] => <p><a href=/svg/elements/feimage/>feImage</a></p> [2298] => <p><a href=/svg/elements/femerge/>feMerge</a></p> [2299] => <p><a href=/svg/elements/femergenode/>feMergeNode</a></p> [2300] => <p><a href=/svg/elements/femorphology/>feMorphology</a></p> [2301] => <p><a href=/svg/elements/feoffset/>feOffset</a></p> [2302] => <p><a href=/svg/elements/fepointlight/>fePointLight</a></p> [2303] => <p><a href=/svg/elements/fespecularlighting/>feSpecularLighting</a></p> [2304] => <p><a href=/svg/elements/fespotlight/>feSpotLight</a></p> [2305] => <p><a href=/svg/elements/fetile/>feTile</a></p> [2306] => <p><a href=/svg/elements/feturbulence/>feTurbulence</a></p> [2307] => <p><a href=/svg/elements/filter/>filter</a></p> [2308] => <p><a href=/svg/elements/foreignobject/>foreignObject</a></p> [2309] => <p><a href=/svg/elements/g/>g</a></p> [2310] => <p><a href=/svg/elements/image/>image</a></p> [2311] => <p><a href=/svg/elements/line/>line</a></p> [2312] => <p><a href=/svg/elements/lineargradient/>linearGradient</a></p> [2313] => <p><a href=/svg/elements/marker/>marker</a></p> [2314] => <p><a href=/svg/elements/mask/>mask</a></p> [2315] => <p><a href=/svg/elements/metadata/>metadata</a></p> [2316] => <p><a href=/svg/elements/mpath/>mpath</a></p> [2317] => <p><a href=/svg/elements/path/>path</a></p> [2318] => <p><a href=/svg/elements/pattern/>pattern</a></p> [2319] => <p><a href=/svg/elements/polygon/>polygon</a></p> [2320] => <p><a href=/svg/elements/polyline/>polyline</a></p> [2321] => <p><a href=/svg/elements/radialgradient/>radialGradient</a></p> [2322] => <p><a href=/svg/elements/rect/>rect</a></p> [2323] => <p><a href=/svg/elements/script/>script</a></p> [2324] => <p><a href=/svg/elements/set/>set</a></p> [2325] => <p><a href=/svg/elements/stop/>stop</a></p> [2326] => <p><a href=/svg/elements/style/>style</a></p> [2327] => <p><a href=/svg/elements/svg/>svg</a></p> [2328] => <p><a href=/svg/elements/switch/>switch</a></p> [2329] => <p><a href=/svg/elements/symbol/>symbol</a></p> [2330] => <p><a href=/svg/elements/text/>text</a></p> [2331] => <p><a href=/svg/elements/textpath/>textPath</a></p> [2332] => <p><a href=/svg/elements/title/>title</a></p> [2333] => <p><a href=/svg/elements/tspan/>tspan</a></p> [2334] => <p><a href=/svg/elements/unknown/>unknown</a></p> [2335] => <p><a href=/svg/elements/use/>use</a></p> [2336] => <p><a href=/svg/elements/view/>view</a></p> [2337] => </div> [2338] => <h2 id=values><a href=#values>Values</a></h2> [2339] => <div class=margin> [2340] => <p><a href=/svg/values/_blank/>_blank</a></p> [2341] => <p><a href=/svg/values/_parent/>_parent</a></p> [2342] => <p><a href=/svg/values/_self/>_self</a></p> [2343] => <p><a href=/svg/values/_top/>_top</a></p> [2344] => <p><a href=/svg/values/a/>A</a></p> [2345] => <p><a href=/svg/values/align/>align</a></p> [2346] => <p><a href=/svg/values/alpha-value/>alpha-value</a></p> [2347] => <p><a href=/svg/values/always/>always</a></p> [2348] => <p><a href=/svg/values/angle/>angle</a></p> [2349] => <p><a href=/svg/values/anonymous/>anonymous</a></p> [2350] => <p><a href=/svg/values/arithmetic/>arithmetic</a></p> [2351] => <p><a href=/svg/values/atop/>atop</a></p> [2352] => <p><a href=/svg/values/auto/>auto</a></p> [2353] => <p><a href=/svg/values/auto-start-reverse/>auto-start-reverse</a></p> [2354] => <p><a href=/svg/values/auto-reverse/>auto-reverse</a></p> [2355] => <p><a href=/svg/values/b/>B</a></p> [2356] => <p><a href=/svg/values/backgroundalpha/>BackgroundAlpha</a></p> [2357] => <p><a href=/svg/values/backgroundimage/>BackgroundImage</a></p> [2358] => <p><a href=/svg/values/begin-value-list/>begin-value-list</a></p> [2359] => <p><a href=/svg/values/blend-mode/>blend-mode</a></p> [2360] => <p><a href=/svg/values/bottom/>bottom</a></p> [2361] => <p><a href=/svg/values/center/>center</a></p> [2362] => <p><a href=/svg/values/clock-value/>clock-value</a></p> [2363] => <p><a href=/svg/values/color/>color</a></p> [2364] => <p><a href=/svg/values/control-point/>control-point</a></p> [2365] => <p><a href=/svg/values/currentcolor/>currentColor</a></p> [2366] => <p><a href=/svg/values/default/>default</a></p> [2367] => <p><a href=/svg/values/dilate/>dilate</a></p> [2368] => <p><a href=/svg/values/disable/>disable</a></p> [2369] => <p><a href=/svg/values/discrete/>discrete</a></p> [2370] => <p><a href=/svg/values/duplicate/>duplicate</a></p> [2371] => <p><a href=/svg/values/empty-string/>empty-string</a></p> [2372] => <p><a href=/svg/values/end-value-list/>end-value-list</a></p> [2373] => <p><a href=/svg/values/erode/>erode</a></p> [2374] => <p><a href=/svg/values/exact/>exact</a></p> [2375] => <p><a href=/svg/values/false/>false</a></p> [2376] => <p><a href=/svg/values/fillpaint/>FillPaint</a></p> [2377] => <p><a href=/svg/values/filter-primitive-reference/>filter-primitive-reference</a></p> [2378] => <p><a href=/svg/values/fractalnoise/>fractalNoise</a></p> [2379] => <p><a href=/svg/values/freeze/>freeze</a></p> [2380] => <p><a href=/svg/values/g/>G</a></p> [2381] => <p><a href=/svg/values/gamma/>gamma</a></p> [2382] => <p><a href=/svg/values/height/>height</a></p> [2383] => <p><a href=/svg/values/huerotate/>hueRotate</a></p> [2384] => <p><a href=/svg/values/icccolor/>icccolor</a></p> [2385] => <p><a href=/svg/values/id/>id</a></p> [2386] => <p><a href=/svg/values/identity/>identity</a></p> [2387] => <p><a href=/svg/values/in/>in</a></p> [2388] => <p><a href=/svg/values/indefinite/>indefinite</a></p> [2389] => <p><a href=/svg/values/integer/>integer</a></p> [2390] => <p><a href=/svg/values/left/>left</a></p> [2391] => <p><a href=/svg/values/length/>length</a></p> [2392] => <p><a href=/svg/values/length-percentage/>length-percentage</a></p> [2393] => <p><a href=/svg/values/lighter/>lighter</a></p> [2394] => <p><a href=/svg/values/linear/>linear</a></p> [2395] => <p><a href=/svg/values/list/>list</a></p> [2396] => <p><a href=/svg/values/list-of-numbers/>list-of-numbers</a></p> [2397] => <p><a href=/svg/values/luminancetoalpha/>luminanceToAlpha</a></p> [2398] => <p><a href=/svg/values/magnify/>magnify</a></p> [2399] => <p><a href=/svg/values/matrix/>matrix</a></p> [2400] => <p><a href=/svg/values/media/>media</a></p> [2401] => <p><a href=/svg/values/meetorslice/>meetOrSlice</a></p> [2402] => <p><a href=/svg/values/min-x/>min-x</a></p> [2403] => <p><a href=/svg/values/min-y/>min-y</a></p> [2404] => <p><a href=/svg/values/name/>name</a></p> [2405] => <p><a href=/svg/values/never/>never</a></p> [2406] => <p><a href=/svg/values/no-composite/>no-composite</a></p> [2407] => <p><a href=/svg/values/no-referrer/>no-referrer</a></p> [2408] => <p><a href=/svg/values/no-referrer-when-downgrade/>no-referrer-when-downgrade</a></p> [2409] => <p><a href=/svg/values/none/>none</a></p> [2410] => <p><a href=/svg/values/nostitch/>noStitch</a></p> [2411] => <p><a href=/svg/values/number/>number</a></p> [2412] => <p><a href=/svg/values/number-optional-number/>number-optional-number</a></p> [2413] => <p><a href=/svg/values/objectboundingbox/>objectBoundingBox</a></p> [2414] => <p><a href=/svg/values/origin/>origin</a></p> [2415] => <p><a href=/svg/values/origin-when-cross-origin/>origin-when-cross-origin</a></p> [2416] => <p><a href=/svg/values/out/>out</a></p> [2417] => <p><a href=/svg/values/over/>over</a></p> [2418] => <p><a href=/svg/values/paced/>paced</a></p> [2419] => <p><a href=/svg/values/pad/>pad</a></p> [2420] => <p><a href=/svg/values/path-data/>path-data</a></p> [2421] => <p><a href=/svg/values/percentage/>percentage</a></p> [2422] => <p><a href=/svg/values/points/>points</a></p> [2423] => <p><a href=/svg/values/r/>R</a></p> [2424] => <p><a href=/svg/values/reflect/>reflect</a></p> [2425] => <p><a href=/svg/values/remove/>remove</a></p> [2426] => <p><a href=/svg/values/repeat/>repeat</a></p> [2427] => <p><a href=/svg/values/replace/>replace</a></p> [2428] => <p><a href=/svg/values/right/>right</a></p> [2429] => <p><a href=/svg/values/rotate/>rotate</a></p> [2430] => <p><a href=/svg/values/same-origin/>same-origin</a></p> [2431] => <p><a href=/svg/values/saturate/>saturate</a></p> [2432] => <p><a href=/svg/values/scale/>scale</a></p> [2433] => <p><a href=/svg/values/script/>script</a></p> [2434] => <p><a href=/svg/values/set-of-comma-separated-tokens/>set-of-comma-separated-tokens</a></p> [2435] => <p><a href=/svg/values/set-of-space-separated-tokens/>set-of-space-separated-tokens</a></p> [2436] => <p><a href=/svg/values/skewx/>skewx</a></p> [2437] => <p><a href=/svg/values/skewy/>skewy</a></p> [2438] => <p><a href=/svg/values/sourcealpha/>SourceAlpha</a></p> [2439] => <p><a href=/svg/values/sourcegraphic/>SourceGraphic</a></p> [2440] => <p><a href=/svg/values/spacing/>spacing</a></p> [2441] => <p><a href=/svg/values/spacingandglyphs/>spacingAndGlyphs</a></p> [2442] => <p><a href=/svg/values/spline/>spline</a></p> [2443] => <p><a href=/svg/values/stitch/>stitch</a></p> [2444] => <p><a href=/svg/values/stretch/>stretch</a></p> [2445] => <p><a href=/svg/values/strict-origin/>strict-origin</a></p> [2446] => <p><a href=/svg/values/strict-origin-when-cross-origin/>strict-origin-when-cross-origin</a></p> [2447] => <p><a href=/svg/values/string/>string</a></p> [2448] => <p><a href=/svg/values/strokepaint/>StrokePaint</a></p> [2449] => <p><a href=/svg/values/strokewidth/>strokeWidth</a></p> [2450] => <p><a href=/svg/values/sum/>sum</a></p> [2451] => <p><a href=/svg/values/table/>table</a></p> [2452] => <p><a href=/svg/values/tokens/>tokens</a></p> [2453] => <p><a href=/svg/values/top/>top</a></p> [2454] => <p><a href=/svg/values/transform-list/>transform-list</a></p> [2455] => <p><a href=/svg/values/translate/>translate</a></p> [2456] => <p><a href=/svg/values/true/>true</a></p> [2457] => <p><a href=/svg/values/turbulence/>turbulence</a></p> [2458] => <p><a href=/svg/values/unsafe-url/>unsafe-url</a></p> [2459] => <p><a href=/svg/values/url/>url</a></p> [2460] => <p><a href=/svg/values/use-credentials/>use-credentials</a></p> [2461] => <p><a href=/svg/values/userspaceonuse/>userSpaceOnUse</a></p> [2462] => <p><a href=/svg/values/valid-integer/>valid-integer</a></p> [2463] => <p><a href=/svg/values/value/>value</a></p> [2464] => <p><a href=/svg/values/whennotactive/>whenNotActive</a></p> [2465] => <p><a href=/svg/values/width/>width</a></p> [2466] => <p><a href=/svg/values/wrap/>wrap</a></p> [2467] => <p><a href=/svg/values/xml-name/>XML-Name</a></p> [2468] => <p><a href=/svg/values/xor/>xor</a></p> [2469] => </div> [2470] => </div> [2471] => <div class=nav-h1> [2472] => <p><a id=nav-switch-applications>APPLICATIONS</a></p> [2473] => </div> [2474] => <div id=nav-content-applications> [2475] => <h2 id=overview><a href=#overview>Overview</a></h2> [2476] => <div class=margin> [2477] => <p><a href=/applications/>Overview</a></p> [2478] => </div> [2479] => <h2 id=Bible><a href=#Bible>Bible</a></h2> [2480] => <div class=margin> [2481] => <p><a href=/applications/Bible-passages/>Bible Passages</a></p> [2482] => <p><a href=/applications/Bible-pictures/>Bible Pictures</a></p> [2483] => <p><a href=/applications/Jesus-loves-the-little-children/>Jesus Loves the Little Children</a></p> [2484] => <p><a href=/applications/merry-Christmas/>Merry Christmas</a></p> [2485] => <p><a href=/applications/one-man-one-woman-one-lifetime/>One Man. One Woman. One Lifetime.</a></p> [2486] => <p><a href=/applications/The-Armor-of-God/>The Armor of God</a></p> [2487] => </div> [2488] => <h2 id=cards><a href=#cards>Cards</a></h2> [2489] => <div class=margin> [2490] => <p><a href=/applications/euchre/>Euchre</a></p> [2491] => <p><a href=/applications/sevens/>Sevens</a></p> [2492] => <p><a href=/applications/solitaire/>Solitaire</a></p> [2493] => </div> [2494] => <h2 id=lego><a href=#lego>LEGO</a></h2> [2495] => <div class=margin> [2496] => <p><a href=/applications/lego-cannonball-bingo/>LEGO Cannonball Bingo</a></p> [2497] => <p><a href=/applications/lego-pandamonium/>LEGO Pandamonium</a></p> [2498] => <p><a href=/applications/lego-pirate-plunder/>LEGO Pirate Plunder</a></p> [2499] => <p><a href=/applications/lego-the-machine/>LEGO The Machine</a></p> [2500] => </div> [2501] => <h2 id=other><a href=#other>Other</a></h2> [2502] => <div class=margin> [2503] => <p><a href=/applications/miniature-golf/>Miniature Golf</a></p> [2504] => <p><a href=/applications/space-station/>Space Station</a></p> [2505] => </div> [2506] => </div> [2507] => <div class=nav-h1> [2508] => <p><a id=nav-switch-more>MORE</a></p> [2509] => </div> [2510] => <div id=nav-content-more> [2511] => <div class=nav-h2> [2512] => <p><a href=/htaccess/>.htaccess</a></p> [2513] => </div> [2514] => <div class=nav-h2> [2515] => <p><a href=/acme.sh/>acme.sh</a></p> [2516] => </div> [2517] => <div class=nav-h2> [2518] => <p><a href=/editor/>Editor</a></p> [2519] => </div> [2520] => <div class=nav-h2> [2521] => <p><a href=/favicon/>Favicon</a></p> [2522] => </div> [2523] => <div class=nav-h2> [2524] => <p><a id=nav-switch-flash>Flash</a></p> [2525] => </div> [2526] => <div id=nav-content-flash> [2527] => <div class=nav-h3> [2528] => <p><a href=/flash/detect/>Detect</a></p> [2529] => </div> [2530] => <div class=nav-h3> [2531] => <p><a id=nav-switch-flash-actionscript>ActionScript</a></p> [2532] => </div> [2533] => <div id=nav-content-flash-actionscript> [2534] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2535] => <div class=margin> [2536] => <p><a href=/flash/actionscript/>Overview</a></p> [2537] => </div> [2538] => <h3 id=other-assets><a href=#other-assets>Assets</a></h3> [2539] => <div class=margin> [2540] => <p><a href=/flash/actionscript/embed/>Embed</a></p> [2541] => <p><a href=/flash/actionscript/load/>Load</a></p> [2542] => </div> [2543] => </div> [2544] => <div class=nav-h3> [2545] => <p><a id=nav-switch-flash-as3dmod>AS3Dmod</a></p> [2546] => </div> [2547] => <div id=nav-content-flash-as3dmod> [2548] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2549] => <div class=margin> [2550] => <p><a href=/flash/as3dmod/>Overview</a></p> [2551] => </div> [2552] => <h4 id=other-overview-modifiers><a href=#other-overview-modifiers>Modifiers</a></h4> [2553] => <div class=margin> [2554] => <p><a href=/flash/as3dmod/bend/>Bend</a></p> [2555] => <p><a href=/flash/as3dmod/bloat/>Bloat</a></p> [2556] => <p><a href=/flash/as3dmod/cloth/>Cloth</a></p> [2557] => <p><a href=/flash/as3dmod/noise/>Noise</a></p> [2558] => <p><a href=/flash/as3dmod/perlin/>Perlin</a></p> [2559] => <p><a href=/flash/as3dmod/pivot/>Pivot</a></p> [2560] => <p><a href=/flash/as3dmod/skew/>Skew</a></p> [2561] => <p><a href=/flash/as3dmod/taper/>Taper</a></p> [2562] => <p><a href=/flash/as3dmod/twist/>Twist</a></p> [2563] => </div> [2564] => <h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4> [2565] => <div class=margin> [2566] => <p><a href=/flash/as3dmod/flag/>Flag</a></p> [2567] => </div> [2568] => </div> [2569] => <div class=nav-h3> [2570] => <p><a href=/flash/flartoolkit/>FLARToolKit</a></p> [2571] => </div> [2572] => <div class=nav-h3> [2573] => <p><a id=nav-switch-flash-jiglibflash>JigLibFlash</a></p> [2574] => </div> [2575] => <div id=nav-content-flash-jiglibflash> [2576] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2577] => <div class=margin> [2578] => <p><a href=/flash/jiglibflash/>Overview</a></p> [2579] => </div> [2580] => <h4 id=other-overview-objects><a href=#other-overview-objects>Objects</a></h4> [2581] => <div class=margin> [2582] => <p><a href=/flash/jiglibflash/jbox/>JBox</a></p> [2583] => <p><a href=/flash/jiglibflash/jcapsule/>JCapsule</a></p> [2584] => <p><a href=/flash/jiglibflash/jplane/>JPlane</a></p> [2585] => <p><a href=/flash/jiglibflash/jsphere/>JSphere</a></p> [2586] => </div> [2587] => <h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4> [2588] => <div class=margin> [2589] => <p><a href=/flash/jiglibflash/physics/>Physics</a></p> [2590] => </div> [2591] => </div> [2592] => <div class=nav-h3> [2593] => <p><a id=nav-switch-flash-papervision3d>Papervision3D</a></p> [2594] => </div> [2595] => <div id=nav-content-flash-papervision3d> [2596] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2597] => <div class=margin> [2598] => <p><a href=/flash/papervision3d/>Overview</a></p> [2599] => </div> [2600] => <h4 id=other-overview-install><a href=#other-overview-install>Install</a></h4> [2601] => <div class=margin> [2602] => <p><a href=/flash/papervision3d/install/>Install</a></p> [2603] => </div> [2604] => <h4 id=other-overview-example><a href=#other-overview-example>Example</a></h4> [2605] => <div class=margin> [2606] => <p><a href=/flash/papervision3d/1/>1</a></p> [2607] => <p><a href=/flash/papervision3d/2/>2</a></p> [2608] => <p><a href=/flash/papervision3d/3/>3</a></p> [2609] => <p><a href=/flash/papervision3d/4/>4</a></p> [2610] => <p><a href=/flash/papervision3d/5/>5</a></p> [2611] => </div> [2612] => <h4 id=other-overview-cameras><a href=#other-overview-cameras>Cameras</a></h4> [2613] => <div class=margin> [2614] => <p><a href=/flash/papervision3d/camera3d/>Camera3D</a></p> [2615] => <p><a href=/flash/papervision3d/debugcamera3d/>DebugCamera3D</a></p> [2616] => <p><a href=/flash/papervision3d/springcamera3d/>SpringCamera3D</a></p> [2617] => </div> [2618] => <h4 id=other-overview-core><a href=#other-overview-core>Core</a></h4> [2619] => <div class=margin> [2620] => <p><a href=/flash/papervision3d/lines3d/>Lines3D</a></p> [2621] => <p><a href=/flash/papervision3d/fogfilter/>FogFilter</a></p> [2622] => </div> [2623] => <h4 id=other-overview-light><a href=#other-overview-light>Light</a></h4> [2624] => <div class=margin> [2625] => <p><a href=/flash/papervision3d/pointlight3d/>PointLight3D</a></p> [2626] => </div> [2627] => <h4 id=other-overview-materials><a href=#other-overview-materials>Materials</a></h4> [2628] => <div class=margin> [2629] => <p><a href=/flash/papervision3d/bitmapfilematerial/>BitmapFileMaterial</a></p> [2630] => <p><a href=/flash/papervision3d/bitmapmaterial/>BitmapMaterial</a></p> [2631] => <p><a href=/flash/papervision3d/bitmapviewportmaterial/>BitmapViewportMaterial</a></p> [2632] => <p><a href=/flash/papervision3d/colormaterial/>ColorMaterial</a></p> [2633] => <p><a href=/flash/papervision3d/compositematerial/>CompositeMaterial</a></p> [2634] => <p><a href=/flash/papervision3d/moviematerial/>MovieMaterial</a></p> [2635] => <p><a href=/flash/papervision3d/wireframematerial/>WireframeMaterial</a></p> [2636] => </div> [2637] => <h4 id=other-overview-shade-materials><a href=#other-overview-shade-materials>Shade Materials</a></h4> [2638] => <div class=margin> [2639] => <p><a href=/flash/papervision3d/cellmaterial/>CellMaterial</a></p> [2640] => <p><a href=/flash/papervision3d/envmapmaterial/>EnvMapMaterial</a></p> [2641] => <p><a href=/flash/papervision3d/flatshadematerial/>FlatShadeMaterial</a></p> [2642] => <p><a href=/flash/papervision3d/gouraudmaterial/>GouraudMaterial</a></p> [2643] => <p><a href=/flash/papervision3d/phongmaterial/>PhongMaterial</a></p> [2644] => </div> [2645] => <h4 id=other-overview-special-material><a href=#other-overview-special-material>Special Material</a></h4> [2646] => <div class=margin> [2647] => <p><a href=/flash/papervision3d/particlematerial/>ParticleMaterial</a></p> [2648] => </div> [2649] => <h4 id=other-overview-parser-objects><a href=#other-overview-parser-objects>Parser Objects</a></h4> [2650] => <div class=margin> [2651] => <p><a href=/flash/papervision3d/dae/>DAE</a></p> [2652] => <p><a href=/flash/papervision3d/kmz/>KMZ</a></p> [2653] => </div> [2654] => <h4 id=other-overview-primitive-objects><a href=#other-overview-primitive-objects>Primitive Objects</a></h4> [2655] => <div class=margin> [2656] => <p><a href=/flash/papervision3d/arrow/>Arrow</a></p> [2657] => <p><a href=/flash/papervision3d/cone/>Cone</a></p> [2658] => <p><a href=/flash/papervision3d/cube/>Cube</a></p> [2659] => <p><a href=/flash/papervision3d/cylinder/>Cylinder</a></p> [2660] => <p><a href=/flash/papervision3d/paperplane/>PaperPlane</a></p> [2661] => <p><a href=/flash/papervision3d/plane/>Plane</a></p> [2662] => <p><a href=/flash/papervision3d/sphere/>Sphere</a></p> [2663] => </div> [2664] => <h4 id=other-overview-special-objects><a href=#other-overview-special-objects>Special Objects</a></h4> [2665] => <div class=margin> [2666] => <p><a href=/flash/papervision3d/particlefield/>ParticleField</a></p> [2667] => <p><a href=/flash/papervision3d/ucs/>UCS</a></p> [2668] => </div> [2669] => <h4 id=other-overview-render><a href=#other-overview-render>Render</a></h4> [2670] => <div class=margin> [2671] => <p><a href=/flash/papervision3d/basicrenderengine/>BasicRenderEngine</a></p> [2672] => <p><a href=/flash/papervision3d/lazyrenderengine/>LazyRenderEngine</a></p> [2673] => <p><a href=/flash/papervision3d/quadrantrenderengine/>QuadrantRenderEngine</a></p> [2674] => </div> [2675] => <h4 id=other-overview-scene><a href=#other-overview-scene>Scene</a></h4> [2676] => <div class=margin> [2677] => <p><a href=/flash/papervision3d/scene3d/>Scene3D</a></p> [2678] => </div> [2679] => <h4 id=other-overview-typography><a href=#other-overview-typography>Typography</a></h4> [2680] => <div class=margin> [2681] => <p><a href=/flash/papervision3d/text3d/>Text3D</a></p> [2682] => </div> [2683] => <h4 id=other-overview-views><a href=#other-overview-views>Views</a></h4> [2684] => <div class=margin> [2685] => <p><a href=/flash/papervision3d/basicview/>BasicView</a></p> [2686] => <p><a href=/flash/papervision3d/reflectionview/>ReflectionView</a></p> [2687] => <p><a href=/flash/papervision3d/statsview/>StatsView</a></p> [2688] => <p><a href=/flash/papervision3d/viewport3d/>Viewport3D</a></p> [2689] => </div> [2690] => <h4 id=other-overview-view-layers><a href=#other-overview-view-layers>View Layers</a></h4> [2691] => <div class=margin> [2692] => <p><a href=/flash/papervision3d/bitmapeffectlayer/>BitmapEffectLayer</a></p> [2693] => <p><a href=/flash/papervision3d/viewportlayer/>ViewportLayer</a></p> [2694] => </div> [2695] => <h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4> [2696] => <div class=margin> [2697] => <p><a href=/flash/papervision3d/anaglyph/>Anaglyph</a></p> [2698] => <p><a href=/flash/papervision3d/camera-move/>Camera Move</a></p> [2699] => <p><a href=/flash/papervision3d/camera-rotate/>Camera Rotate</a></p> [2700] => <p><a href=/flash/papervision3d/camera-target-move/>Camera Target Move</a></p> [2701] => <p><a href=/flash/papervision3d/object-move/>Object Move</a></p> [2702] => <p><a href=/flash/papervision3d/object-rotate/>Object Rotate</a></p> [2703] => <p><a href=/flash/papervision3d/object-scale/>Object Scale</a></p> [2704] => <p><a href=/flash/papervision3d/panorama/>Panorama</a></p> [2705] => </div> [2706] => </div> [2707] => </div> [2708] => <div class=nav-h2> [2709] => <p><a id=nav-switch-sketchup>SketchUp</a></p> [2710] => </div> [2711] => <div id=nav-content-sketchup> [2712] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2713] => <div class=margin> [2714] => <p><a href=/sketchup/>Overview</a></p> [2715] => </div> [2716] => <h3 id=other-plugins><a href=#other-plugins>Plugins</a></h3> [2717] => <div class=margin> [2718] => <p><a href=/sketchup/papervision3d/>Papervision3D</a></p> [2719] => <p><a href=/sketchup/triangulate/>Triangulate</a></p> [2720] => </div> [2721] => </div> [2722] => <div class=nav-h2> [2723] => <p><a id=nav-switch-unity>Unity</a></p> [2724] => </div> [2725] => <div id=nav-content-unity> [2726] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2727] => <div class=margin> [2728] => <p><a href=/unity/>Overview</a></p> [2729] => </div> [2730] => <h3 id=other-detect><a href=#other-detect>Detect</a></h3> [2731] => <div class=margin> [2732] => <p><a href=/unity/detect/>Detect</a></p> [2733] => </div> [2734] => <h3 id=other-games><a href=#other-games>Games</a></h3> [2735] => <div class=margin> [2736] => <p><a href=/unity/air-hockey/>Air Hockey</a></p> [2737] => <p><a href=/unity/foosball/>Foosball</a></p> [2738] => <p><a href=/unity/pool/>Pool</a></p> [2739] => </div> [2740] => <h3 id=other-unity><a href=#other-unity>Unity</a></h3> [2741] => <div class=margin> [2742] => <p><a href=/unity/car/>Car</a></p> [2743] => <p><a href=/unity/lerpz-escapes/>Lerpz Escapes</a></p> [2744] => <p><a href=/unity/mecanim/>Mecanim</a></p> [2745] => </div> [2746] => </div> [2747] => <div class=nav-h2> [2748] => <p><a id=nav-switch-xcode>Xcode</a></p> [2749] => </div> [2750] => <div id=nav-content-xcode> [2751] => <h3 id=other-overview><a href=#other-overview>Overview</a></h3> [2752] => <div class=margin> [2753] => <p><a href=/xcode/>Overview</a></p> [2754] => </div> [2755] => <h3 id=other-example><a href=#other-example>Example</a></h3> [2756] => <div class=margin> [2757] => <p><a href=/xcode/1/>1</a></p> [2758] => <p><a href=/xcode/2/>2</a></p> [2759] => <p><a href=/xcode/3/>3</a></p> [2760] => <p><a href=/xcode/4/>4</a></p> [2761] => <p><a href=/xcode/5/>5</a></p> [2762] => <p><a href=/xcode/6/>6</a></p> [2763] => </div> [2764] => <h3 id=other-csv2plist><a href=#other-csv2plist>CSV2Plist</a></h3> [2765] => <div class=margin> [2766] => <p><a href=/xcode/csv2plist/>CSV2Plist</a></p> [2767] => </div> [2768] => <h3 id=other-ui><a href=#other-ui>UI</a></h3> [2769] => <div class=margin> [2770] => <p><a href=/xcode/uiactivityindicatorview/>UIActivityIndicatorView</a></p> [2771] => <p><a href=/xcode/uibutton/>UIButton</a></p> [2772] => <p><a href=/xcode/uiimageview/>UIImageView</a></p> [2773] => <p><a href=/xcode/uilabel/>UILabel</a></p> [2774] => <p><a href=/xcode/uipagecontrol/>UIPageControl</a></p> [2775] => <p><a href=/xcode/uiprogressview/>UIProgressView</a></p> [2776] => <p><a href=/xcode/uisegmentedcontrol/>UISegmentedControl</a></p> [2777] => <p><a href=/xcode/uislider/>UISlider</a></p> [2778] => <p><a href=/xcode/uistepper/>UIStepper</a></p> [2779] => <p><a href=/xcode/uiswitch/>UISwitch</a></p> [2780] => <p><a href=/xcode/uitextfield/>UITextField</a></p> [2781] => </div> [2782] => </div> [2783] => </div> [2784] => </nav> [2785] => <footer> [2786] => <div class=boilerplate> [2787] => <a href=/Jesus/>Jesus</a> [2788] => · <a href=/Bible/>Bible</a> [2789] => </div> [2790] => <div class=boilerplate> [2791] => <a href=/html/>HTML</a> [2792] => · <a href=/css/>CSS</a> [2793] => · <a href=/js/>JS</a> [2794] => · <a href=/php/>PHP</a> [2795] => · <a href=/svg/>SVG</a> [2796] => </div> [2797] => <div class=boilerplate> [2798] => <a href=/applications/>Applications</a> [2799] => · <a href=/more/>More</a> [2800] => </div> [2801] => <div class=boilerplate> [2802] => <a href=/about/>About</a> [2803] => · <a href=/terms/>Terms</a> [2804] => </div> [2805] => <p id=copyright>© 2023 Osbo Design</p> [2806] => </footer> [2807] => <div id=foreground-header> [2808] => <a href=/><img alt=Home id=home src=/assets/svg/Home.svg title=Home></a> [2809] => <img alt=Menu id=menu src=/assets/svg/Menu.svg title=Menu> [2810] => <form action=/search/> [2811] => <input id=search-site name=search-site title=Search type=search> [2812] => </form> [2813] => </div> [2814] => <div id=foreground-footer> [2815] => <a href=#><img alt=Top id=top src=/assets/svg/Top.svg title=Top></a> [2816] => </div> [2817] => </body> [2818] => </html> )