Open Internet or Unix domain socket connection
Syntax
stream_socket_client ( string $remote_socket [, int &$errno [, string &$errstr [, float $timeout = ini_get("default_socket_timeout") [, int $flags = STREAM_CLIENT_CONNECT [, resource $context ]]]]] ) : resource
Parameters
remote_socket
Address to the socket to connect to.
errno
Will be set to the system level error number if connection fails.
errstr
Will be set to the system level error message if the connection fails.
timeout
Number of seconds until the connect() system call should timeout.
Note: This parameter only applies when not making asynchronous connection attempts.
Note: To set a timeout for reading/writing data over the socket, use the stream_set_timeout(), as the timeout only applies while making connecting the socket.
flags
Bitmask field which may be set to any combination of connection flags. Currently the select of connection flags is limited to STREAM_CLIENT_CONNECT (default), STREAM_CLIENT_ASYNC_CONNECT and STREAM_CLIENT_PERSISTENT.
context
A valid context resource created with stream_context_create().
Return
On success a stream resource is returned which may be used together with the other file functions (such as fgets(), fgetss(), fwrite(), fclose(), and feof()), FALSE on failure.
Examples
1 · remote_socket
<? $transport = "tls"; $host = "osbo.com"; $port = "443"; $remote_socket = $transport . "://" . $host . ":" . $port; $return = stream_socket_client($remote_socket); if (!$return) { exit; } $string = "GET / HTTP/1.1\r\n"; $string .= "Host: $host\r\n"; $string .= "Connection: close\r\n\r\n"; fwrite($return, $string); $length = 1024; while (!feof($return)) { echo fgets($return, $length); } fclose($return); ?>
HTTP/1.1 200 OK Connection: close cache-control: no-cache,no-store,no-transform x-robots-tag: noarchive,noimageindex content-type: text/html; charset=UTF-8 transfer-encoding: chunked date: Thu, 21 Sep 2023 21:11:19 GMT server: LiteSpeed strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff 10000 <!doctype html><html lang=en><head><meta charset=utf-8><meta content=osbo.com name=description><meta content=width=device-width name=viewport><title>osbo.com</title><link href=/assets/svg/ rel=icon><link href=/assets/css/ rel=stylesheet><script src=/assets/js/></script></head><body><div id=background><video id=background-video loop muted src=/assets/mp4/21.mp4></video></div><div id=ground><div id=ground-container><header><h1>osbo.com</h1></header><main><h2 id=html><a href=#html>HTML</a></h2><div class="editor1 margin"><form id=form1><textarea id=textarea1 spellcheck=false title=Edit><!doctype html> <html> <head> <title>HTML</title> </head> <body> <a href="/html/">HTML</a> </body> </html></textarea><input id=input11 title=Reset type=button value=↻><input id=input21 title=Editor type=button value=→></form><iframe id=iframe1 title=Editor></iframe></div><h2 id=css><a href=#css>CSS</a></h2><div class="editor1 margin"><form id=form2><textarea id=textarea2 spellcheck=false title=Edit><!doctype html> <html> <head> <title>CSS</title> <style> a, html { background-color: rgb(255 0 0 / 0.1); color: red; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/css/">CSS</a> </body> </html></textarea><input id=input12 title=Reset type=button value=↻><input id=input22 title=Editor type=button value=→></form><iframe id=iframe2 title=Editor></iframe></div><h2 id=js><a href=#js>JS</a></h2><div class="editor1 margin"><form id=form3><textarea id=textarea3 spellcheck=false title=Edit><!doctype html> <html> <head> <title>JS</title> <style> a, html { background-color: rgb(0 255 0 / 0.1); color: green; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/js/">JS</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html></textarea><input id=input13 title=Reset type=button value=↻><input id=input23 title=Editor type=button value=→></form><iframe id=iframe3 title=Editor></iframe></div><h2 id=php><a href=#php>PHP</a></h2><div class="editor3 margin"><pre><? echo '<!doctype html> <html> <head> <title>PHP</title> <style> a, html { background-color: rgb(255 0 255 / 0.1); color: purple; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html>'; ?></pre><pre><!doctype html> <html> <head> <title>PHP</title> <style> a, html { background-color: rgb(255 0 255 / 0.1); color: purple; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html></pre><iframe srcdoc="<!doctype html> <html> <head> <title>PHP</title> <style> a, html { background-color: rgb(255 0 255 / 0.1); color: purple; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html>" title=Editor></iframe></div><h2 id=svg><a href=#svg>SVG</a></h2><div class="editor1 margin"><form id=form4><textarea id=textarea4 spellcheck=false title=Edit><svg xmlns="http://www.w3.org/2000/svg"> <style> circle, rect, text { fill: yellow; transition-duration: 1s; } a:hover :is(circle, text) { fill: black; } </style> <rect height="100%" opacity="0.1" width="100%"/> <a href="/svg/"> <circle cx="50%" cy="50%" opacity="0.1" r="50vh"/> <text dominant-baseline="middle" text-anchor="middle" x="50%" y="50%">SVG</text> </a> </svg></textarea><input id=input14 title=Reset type=button value=↻><input id=input24 title=Editor type=button value=→></form><iframe id=iframe4 title=Editor></iframe></div></main><footer><div class=boilerplate><a href=/Jesus/>Jesus</a> · <a href=/Bible/>Bible</a></div><div class=boilerplate><a href=/html/>HTML</a> · <a href=/css/>CSS</a> · <a href=/js/>JS</a> · <a href=/php/>PHP</a> · <a href=/svg/>SVG</a></div><div class=boilerplate><a href=/applications/>Applications</a> · <a href=/more/>More</a></div><div class=boilerplate><a href=/about/>About</a> · <a href=/terms/>Terms</a></div><p id=copyright>© 2023 Osbo Design</p></footer></div><div id=ground-nav><div class=nav-h1><a href=/Jesus/>JESUS</a></div><div class=nav-h1><a id=nav-switch-Bible>BIBLE</a></div><div id=nav-content-Bible><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/Bible/>Overview</a></p></div><h2 id=search><a href=#search>Search</a></h2><div class=margin><p><a href=/Bible/search/>Search</a></p></div><h2 id=download><a href=#download>Download</a></h2><div class=margin><p><a href=/Bible/download/>Download</a></p></div><h2 id=العربية><a href=#العربية>العربية</a></h2><div class=margin><p><a href=/Bible/asvd/>ASVD الكتاب المقدس ترجمة فانديك وسميث</a></p></div><h2 id=česky><a href=#česky>česky</a></h2><div class=margin><p><a href=/Bible/csbkr/>CSBKR Bible Kralická 1613</a></p></div><h2 id=dansk><a href=#dansk>Dansk</a></h2><div class=margin><p><a href=/Bible/da1871/>DA1871 Danske Bibel 1871</a></p></div><h2 id=deutsch><a href=#deutsch>Deutsch</a></h2><div class=margin><p><a href=/Bible/delut/>DELUT Luther Bible 1912</a></p><p><a href=/Bible/elb/>ELB Elberfelder 1905</a></p><p><a href=/Bible/elb71/>ELB71 Elberfelder 1871</a></p></div><h2 id=english><a href=#english>English</a></h2><div class=margin><p><a href=/Bible/asv/>ASV American Standard Version</a></p><p><a href=/Bible/kjv/>KJV King James Version</a></p><p><a href=/Bible/web/>WEB World English Bible</a></p></div><h2 id=español><a href=#español>Español</a></h2><div class=margin><p><a href=/Bible/rves/>RVES Reina-Valera Antigua</a></p></div><h2 id=suomi><a href=#suomi>Suomi</a></h2><div class=margin><p><a href=/Bible/fi1776/>FI1776 Finnish 1776</a></p><p><a href=/Bible/finpr/>FINPR Finnish 1938</a></p></div><h2 id=français><a href=#français>Français</a></h2><div class=margin><p><a href=/Bible/fmar/>FMAR Martin 1744</a></p><p><a href=/Bible/frdby/>FRDBY Bible Darby en français</a></p><p><a href=/Bible/lsg/>LSG Louis Segond 1910</a></p><p><a href=/Bible/ost/>OST Ostervald</a></p></div><h2 id=magyar><a href=#magyar>Magyar</a></h2><div class=margin><p><a href=/Bible/kar/>KAR Károli 1590</a></p></div><h2 id=bahasa-indonesia><a href=#bahasa-indonesia>Bahasa Indonesia</a></h2><div class=margin><p><a href=/Bible/idbar/>IDBAR Terjemahan Baru</a></p></div><h2 id=italiano><a href=#italiano>Italiano</a></h2><div class=margin><p><a href=/Bible/igd/>IGD Giovanni Diodati Bibbia</a></p><p><a href=/Bible/itriv/>ITRIV Italian Riveduta 1927</a></p></div><h2 id=日本語><a href=#日本語>日本語</a></h2><div class=margin><p><a href=/Bible/ja1955/>JA1955 Colloquial Japanese (1955)</a></p></div><h2 id=malagasy><a href=#malagasy>Malagasy</a></h2><div class=margin><p><a href=/Bible/mg1865/>MG1865 Malagasy Bible</a></p></div><h2 id=te-reo-māori><a href=#te-reo-māori>te reo Māori</a></h2><div class=margin><p><a href=/Bible/maor/>MAOR Maori Bible</a></p></div><h2 id=한국어><a href=#한국어>한국어</a></h2><div class=margin><p><a href=/Bible/korvb/>KORVB 개역한글</a></p></div><h2 id=nederlands><a href=#nederlands>Nederlands</a></h2><div class=margin><p><a href=/Bible/sv1750/>SV1750 Statenvertaling</a></p></div><h2 id=norsk><a href=#norsk>Norsk</a></h2><div class=margin><p><a href=/Bible/norsk/>NORSK Det Norsk Bibelselskap 1930</a></p></div><h2 id=polski><a href=#polski>Polski</a></h2><div class=margin><p><a href=/Bible/pbg/>PBG Biblia Gdańska</a></p></div><h2 id=português><a href=#português>Português</a></h2><div class=margin><p><a href=/Bible/aa/>AA Almeida Atualizada</a></p></div><h2 id=română><a href=#română>Română</a></h2><div class=margin><p><a href=/Bible/rmnn/>RMNN Romanian Cornilescu 1928</a></p><p><a href=/Bible/vdc/>VDC Versiunea Dumitru Cornilescu</a></p><p><a href=/Bible/vdcc/>VDCC Versiunea Dumitru Cornilescu Corectată</a></p></div><h2 id=pyccкий><a href=#pyccкий>Pyccкий</a></h2><div class=margin><p><a href=/Bible/rursv/>RURSV Синодальный перевод</a></p></div><h2 id=shqip><a href=#shqip>Shqip</a></h2><div class=margin><p><a href=/Bible/albb/>ALBB Albanian Bible</a></p></div><h2 id=svenska><a href=#svenska>Svenska</a></h2><div class=margin><p><a href=/Bible/sk73/>SK73 Karl XII 1873</a></p><p><a href=/Bible/sven/>SVEN Svenska 1917</a></p></div><h2 id=wikang-tagalog><a href=#wikang-tagalog>Wikang Tagalog</a></h2><div class=margin><p><a href=/Bible/tlab/>TLAB Ang Biblia</a></p></div><h2 id=українська><a href=#українська>українська</a></h2><div class=margin><p><a href=/Bible/ubio/>UBIO Біблія в пер. Івана Огієнка, 1962</a></p><p><a href=/Bible/ukrk/>UKRK Біблія в пер. П.Куліша та І.Пулюя, 1905</a></p></div><h2 id=tiếng-việt><a href=#tiếng-việt>Tiếng Việt</a></h2><div class=margin><p><a href=/Bible/vi1934/>VI1934 1934 Vietnamese Bible</a></p></div><h2 id=简体中文><a href=#简体中文>简体中文</a></h2><div class=margin><p><a href=/Bible/cuvs/>CUVS 简体和合本</a></p></div><h2 id=繁體中文><a href=#繁體中文>繁體中文</a></h2><div class=margin><p><a href=/Bible/cuv/>CUV 和合本</a></p></div></div><div class=nav-h1><a id=nav-switch-html>HTML</a></div><div id=nav-content-html><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/html/>Overview</a></p></div><h2 id=attributes><a href=#attributes>Attributes</a></h2><div class=margin><p><a href=/html/attributes/abbr/>abbr</a></p><p><a href=/html/attributes/accept/>accept</a></p><p><a href=/html/attributes/accept-charset/>accept-charset</a></p><p><a href=/html/attributes/accesskey/>accesskey</a></p><p><a href=/html/attributes/action/>action</a></p><p><a href=/html/attributes/alt/>alt</a></p><p><a href=/html/attributes/as/>as</a></p><p><a href=/html/attributes/async/>async</a></p><p><a href=/html/attributes/autocapitalize/>autocapitalize</a></p><p><a href=/html/attributes/autocomplete/>autocomplete</a></p><p><a href=/html/attributes/autofocus/>autofocus</a></p><p><a href=/html/attributes/autoplay/>autoplay</a></p><p><a href=/html/attributes/blocking/>blocking</a></p><p><a href=/html/attributes/charset/>charset</a></p><p><a href=/html/attributes/checked/>checked</a></p><p><a href=/html/attributes/cite/>cite</a></p><p><a href=/html/attributes/class/>class</a></p><p><a href=/html/attributes/color/>color</a></p><p><a href=/html/attributes/cols/>cols</a></p><p><a href=/html/attributes/colspan/>colspan</a></p><p><a href=/html/attributes/contenteditable/>contenteditable</a></p><p><a href=/html/attributes/controls/>controls</a></p><p><a href=/html/attributes/coords/>coords</a></p><p><a href=/html/attributes/crossorigin/>crossorigin</a></p><p><a href=/html/attributes/data/>data</a></p><p><a href=/html/attributes/datetime/>datetime</a></p><p><a href=/html/attributes/decoding/>decoding</a></p><p><a href=/html/attributes/default/>default</a></p><p><a href=/html/attributes/defer/>defer</a></p><p><a href=/html/attributes/dir/>dir</a></p><p><a href=/html/attributes/dirname/>dirname</a></p><p><a href=/html/attributes/disabled/>disabled</a></p><p><a href=/html/attributes/download/>download</a></p><p><a href=/html/attributes/draggable/>draggable</a></p><p><a href=/html/attributes/enctype/>enctype</a></p><p><a href=/html/attributes/enterkeyhint/>enterkeyhint</a></p><p><a href=/html/attributes/exportparts/>exportparts</a></p><p><a href=/html/attributes/fetchpriority/>fetchpriority</a></p><p><a href=/html/attributes/for/>for</a></p><p><a href=/html/attributes/form/>form</a></p><p><a href=/html/attributes/formaction/>formaction</a></p><p><a href=/html/attributes/formenctype/>formenctype</a></p><p><a href=/html/attributes/formmethod/>formmethod</a></p><p><a href=/html/attributes/formnovalidate/>formnovalidate</a></p><p><a href=/html/attributes/formtarget/>formtarget</a></p><p><a href=/html/attributes/headers/>headers</a></p><p><a href=/html/attributes/height/>height</a></p><p><a href=/html/attributes/hidden/>hidden</a></p><p><a href=/html/attributes/high/>high</a></p><p><a href=/html/attributes/href/>href</a></p><p><a href=/html/attributes/hreflang/>hreflang</a></p><p><a href=/html/attributes/http-equiv/>http-equiv</a></p><p><a href=/html/attributes/id/>id</a></p><p><a href=/html/attributes/imagesizes/>imagesizes</a></p><p><a href=/html/attributes/imagesrcset/>imagesrcset</a></p><p><a href=/html/attributes/inert/>inert</a></p><p><a href=/html/attributes/inputmode/>inputmode</a></p><p><a href=/html/attributes/integrity/>integrity</a></p><p><a href=/html/attributes/is/>is</a></p><p><a href=/html/attributes/ismap/>ismap</a></p><p><a href=/html/attributes/itemid/>itemid</a></p><p><a href=/html/attributes/itemprop/>itemprop</a></p><p><a href=/html/attributes/itemref/>itemref</a></p><p><a href=/html/attributes/itemscope/>itemscope</a></p><p><a href=/html/attributes/itemtype/>itemtype</a></p><p><a href=/html/attributes/kind/>kind</a></p><p><a href=/html/attributes/label/>label</a></p><p><a href=/html/attributes/lang/>lang</a></p><p><a href=/html/attributes/list/>list</a></p><p><a href=/html/attributes/loading/>loading</a></p><p><a href=/html/attributes/loop/>loop</a></p><p><a href=/html/attributes/low/>low</a></p><p><a href=/html/attributes/max/>max</a></p><p><a href=/html/attributes/maxlength/>maxlength</a></p><p><a href=/html/attributes/media/>media</a></p><p><a href=/html/attributes/method/>method</a></p><p><a href=/html/attributes/min/>min</a></p><p><a href=/html/attributes/minlength/>minlength</a></p><p><a href=/html/attributes/multiple/>multiple</a></p><p><a href=/html/attributes/muted/>muted</a></p><p><a href=/html/attributes/name/>name</a></p><p><a href=/html/attributes/nomodule/>nomodule</a></p><p><a href=/html/attributes/nonce/>nonce</a></p><p><a href=/html/attributes/novalidate/>novalidate</a></p><p><a href=/html/attributes/onabort/>onabort</a></p><p><a href=/html/attributes/onafterprint/>onafterprint</a></p><p><a href=/html/attributes/onauxclick/>onauxclick</a></p><p><a href=/html/attributes/onbeforeinput/>onbeforeinput</a></p><p><a href=/html/attributes/onbeforeprint/>onbeforeprint</a></p><p><a href=/html/attributes/onbeforetoggle/>onbeforetoggle</a></p><p><a href=/html/attributes/onbeforeunload/>onbeforeunload</a></p><p><a href=/html/attributes/onblur/>onblur</a></p><p><a href=/html/attributes/oncancel/>oncancel</a></p><p><a href=/html/attributes/oncanplay/>oncanplay</a></p><p><a href=/html/attributes/oncanplaythrough/>oncanplaythrough</a></p><p><a href=/html/attributes/onchange/>onchange</a></p><p><a href=/html/attributes/onclick/>onclick</a></p><p><a href=/html/attributes/oncontextlost/>oncontextlost</a></p><p><a href=/html/attributes/oncontextmenu/>oncontextmenu</a></p><p><a href=/html/attributes/oncontextrestored/>oncontextrestored</a></p><p><a href=/html/attributes/oncopy/>oncopy</a></p><p><a href=/html/attributes/oncut/>oncut</a></p><p><a href=/html/attributes/ondblclick/>ondblclick</a></p><p><a href=/html/attributes/ondrag/>ondrag</a></p><p><a href=/html/attributes/ondragend/>ondragend</a></p><p><a href=/html/attributes/ondragenter/>ondragenter</a></p><p><a href=/html/attributes/ondragleave/>ondragleave</a></p><p><a href=/html/attributes/ondragover/>ondragover</a></p><p><a href=/html/attributes/ondragstart/>ondragstart</a></p><p><a href=/html/attributes/ondrop/>ondrop</a></p><p><a href=/html/attributes/ondurationchange/>ondurationchange</a></p><p><a href=/html/attributes/onended/>onended</a></p><p><a href=/html/attributes/onfocus/>onfocus</a></p><p><a href=/html/attributes/onformdata/>onformdata</a></p><p><a href=/html/attributes/onhashchange/>onhashchange</a></p><p><a href=/html/attributes/oninput/>oninput</a></p><p><a href=/html/attributes/oninvalid/>oninvalid</a></p><p><a href=/html/attributes/onkeydown/>onkeydown</a></p><p><a href=/html/attributes/onkeypress/>onkeypress</a></p><p><a href=/html/attributes/onkeyup/>onkeyup</a></p><p><a href=/html/attributes/onlanguagechange/>onlanguagechange</a></p><p><a href=/html/attributes/onload/>onload</a></p><p><a href=/html/attributes/onloadeddata/>onloadeddata</a></p><p><a href=/html/attributes/onloadedmetadata/>onloadedmetadata</a></p><p><a href=/html/attributes/onloadstart/>onloadstart</a></p><p><a href=/html/attributes/onmousedown/>onmousedown</a></p><p><a href=/html/attributes/onmouseenter/>onmouseenter</a></p><p><a href=/html/attributes/onmouseleave/>onmouseleave</a></p><p><a href=/html/attributes/onmousemove/>onmousemove</a></p><p><a href=/html/attributes/onmouseout/>onmouseout</a></p><p><a href=/html/attributes/onmouseover/>onmouseover</a></p><p><a href=/html/attributes/onmouseup/>onmouseup</a></p><p><a href=/html/attributes/onmousewheel/>onmousewheel</a></p><p><a href=/html/attributes/onoffline/>onoffline</a></p><p><a href=/html/attributes/ononline/>ononline</a></p><p><a href=/html/attributes/onpagehide/>onpagehide</a></p><p><a href=/html/attributes/onpageshow/>onpageshow</a></p><p><a href=/html/attributes/onpaste/>onpaste</a></p><p><a href=/html/attributes/onpause/>onpause</a></p><p><a href=/html/attributes/onplay/>onplay</a></p><p><a href=/html/attributes/onplaying/>onplaying</a></p><p><a href=/html/attributes/onprogress/>onprogress</a></p><p><a href=/html/attributes/onratechange/>onratechange</a></p><p><a href=/html/attributes/onreset/>onreset</a></p><p><a href=/html/attributes/onresize/>onresize</a></p><p><a href=/html/attributes/onscroll/>onscroll</a></p><p><a href=/html/attributes/onscrollend/>onscrollend</a></p><p><a href=/html/attributes/onsearch/>onsearch</a></p><p><a href=/html/attributes/onseeked/>onseeked</a></p><p><a href=/html/attributes/onseeking/>onseeking</a></p><p><a href=/html/attributes/onselect/>onselect</a></p><p><a href=/html/attributes/onstorage/>onstorage</a></p><p><a href=/html/attributes/onsubmit/>onsubmit</a></p><p><a href=/html/attributes/onsuspend/>onsuspend</a></p><p><a href=/html/attributes/ontimeupdate/>ontimeupdate</a></p><p><a href=/html/attributes/ontoggle/>ontoggle</a></p><p><a href=/html/attributes/onunload/>onunload</a></p><p><a href=/html/attributes/onvolumechange/>onvolumechange</a></p><p><a href=/html/attributes/onwaiting/>onwaiting</a></p><p><a href=/html/attributes/onwheel/>onwheel</a></p><p><a href=/html/attributes/open/>open</a></p><p><a href=/html/attributes/optimum/>optimum</a></p><p><a href=/html/attributes/part/>part</a></p><p><a href=/html/attributes/pattern/>pattern</a></p><p><a href=/html/attributes/ping/>ping</a></p><p><a href=/html/attributes/placeholder/>placeholder</a></p><p><a href=/html/attributes/playsinline/>playsinline</a></p><p><a href=/html/attributes/popover/>popover</a></p><p><a href=/html/attributes/popovertarget/>popovertarget</a></p><p><a href=/html/attributes/popovertargetaction/>popovertargetaction</a></p><p><a href=/html/attributes/poster/>poster</a></p><p><a href=/html/attributes/preload/>preload</a></p><p><a href=/html/attributes/readonly/>readonly</a></p><p><a href=/html/attributes/referrerpolicy/>referrerpolicy</a></p><p><a href=/html/attributes/rel/>rel</a></p><p><a href=/html/attributes/required/>required</a></p><p><a href=/html/attributes/reversed/>reversed</a></p><p><a href=/html/attributes/rows/>rows</a></p><p><a href=/html/attributes/rowspan/>rowspan</a></p><p><a href=/html/attributes/sandbox/>sandbox</a></p><p><a href=/html/attributes/scope/>scope</a></p><p><a href=/html/attributes/selected/>selected</a></p><p><a href=/html/attributes/shape/>shape</a></p><p><a href=/html/attributes/size/>size</a></p><p><a href=/html/attributes/sizes/>sizes</a></p><p><a href=/html/attributes/slot/>slot</a></p><p><a href=/html/attributes/span/>span</a></p><p><a href=/html/attributes/spellcheck/>spellcheck</a></p><p><a href=/html/attributes/src/>src</a></p><p><a href=/html/attributes/srcdoc/>srcdoc</a></p><p><a href=/html/attributes/srclang/>srclang</a></p><p><a href=/html/attributes/srcset/>srcset</a></p><p><a href=/html/attributes/start/>start</a></p><p><a href=/html/attributes/step/>step</a></p><p><a href=/html/attributes/style/>style</a></p><p><a href=/html/attributes/tabindex/>tabindex</a></p><p><a href=/html/attributes/target/>target</a></p><p><a href=/html/attributes/title/>title</a></p><p><a href=/html/attributes/translate/>translate</a></p><p><a href=/html/attributes/type/>type</a></p><p><a href=/html/attributes/usemap/>usemap</a></p><p><a href=/html/attributes/value/>value</a></p><p><a href=/html/attributes/width/>width</a></p><p><a href=/html/attributes/wrap/>wrap</a></p></div><h2 id=elements><a href=#elements>Elements</a></h2><div class=margin><p><a href=/html/elements/!doctype/>!doctype</a></p><p><a href=/html/elements/a/>a</a></p><p><a href=/html/elements/abbr/>abbr</a></p><p><a href=/html/elements/address/>address</a></p><p><a href=/html/elements/area/>area</a></p><p><a href=/html/elements/article/>article</a></p><p><a href=/html/elements/aside/>aside</a></p><p><a href=/html/elements/audio/>audio</a></p><p><a href=/html/elements/b/>b</a></p><p><a href=/html/elements/base/>base</a></p><p><a href=/html/elements/bdi/>bdi</a></p><p><a href=/html/elements/bdo/>bdo</a></p><p><a href=/html/elements/blockquote/>blockquote</a></p><p><a href=/html/elements/body/>body</a></p><p><a href=/html/elements/br/>br</a></p><p><a href=/html/elements/button/>button</a></p><p><a href=/html/elements/canvas/>canvas</a></p><p><a href=/html/elements/caption/>caption</a></p><p><a href=/html/elements/cite/>cite</a></p><p><a href=/html/elements/code/>code</a></p><p><a href=/html/elements/col/>col</a></p><p><a href=/html/elements/colgroup/>colgroup</a></p><p><a href=/html/elements/data/>data</a></p><p><a href=/html/elements/datalist/>datalist</a></p><p><a href=/html/elements/dd/>dd</a></p><p><a href=/html/elements/del/>del</a></p><p><a href=/html/elements/details/>details</a></p><p><a href=/html/elements/dfn/>dfn</a></p><p><a href=/html/elements/dialog/>dialog</a></p><p><a href=/html/elements/div/>div</a></p><p><a href=/html/elements/dl/>dl</a></p><p><a href=/html/elements/dt/>dt</a></p><p><a href=/html/elements/em/>em</a></p><p><a href=/html/elements/embed/>embed</a></p><p><a href=/html/elements/fieldset/>fieldset</a></p><p><a href=/html/elements/figcaption/>figcaption</a></p><p><a href=/html/elements/figure/>figure</a></p><p><a href=/html/elements/footer/>footer</a></p><p><a href=/html/elements/form/>form</a></p><p><a href=/html/elements/h1/>h1</a></p><p><a href=/html/elements/h2/>h2</a></p><p><a href=/html/elements/h3/>h3</a></p><p><a href=/html/elements/h4/>h4</a></p><p><a href=/html/elements/h5/>h5</a></p><p><a href=/html/elements/h6/>h6</a></p><p><a href=/html/elements/head/>head</a></p><p><a href=/html/elements/header/>header</a></p><p><a href=/html/elements/hgroup/>hgroup</a></p><p><a href=/html/elements/hr/>hr</a></p><p><a href=/html/elements/html/>html</a></p><p><a href=/html/elements/i/>i</a></p><p><a href=/html/elements/iframe/>iframe</a></p><p><a href=/html/elements/img/>img</a></p><p><a href=/html/elements/input/>input</a></p><p><a href=/html/elements/ins/>ins</a></p><p><a href=/html/elements/kbd/>kbd</a></p><p><a href=/html/elements/label/>label</a></p><p><a href=/html/elements/legend/>legend</a></p><p><a href=/html/elements/li/>li</a></p><p><a href=/html/elements/link/>link</a></p><p><a href=/html/elements/main/>main</a></p><p><a href=/html/elements/map/>map</a></p><p><a href=/html/elements/mark/>mark</a></p><p><a href=/html/elements/menu/>menu</a></p><p><a href=/html/elements/meta/>meta</a></p><p><a href=/html/elements/meter/>meter</a></p><p><a href=/html/elements/nav/>nav</a></p><p><a href=/html/elements/noscript/>noscript</a></p><p><a href=/html/elements/object/>object</a></p><p><a href=/html/elements/ol/>ol</a></p><p><a href=/html/elements/optgroup/>optgroup</a></p><p><a href=/html/elements/option/>option</a></p><p><a href=/html/elements/output/>output</a></p><p><a href=/html/elements/p/>p</a></p><p><a href=/html/elements/param/>param</a></p><p><a href=/html/elements/picture/>picture</a></p><p><a href=/html/elements/pre/>pre</a></p><p><a href=/html/elements/progress/>progress</a></p><p><a href=/html/elements/q/>q</a></p><p><a href=/html/elements/rb/>rb</a></p><p><a href=/html/elements/rp/>rp</a></p><p><a href=/html/elements/rt/>rt</a></p><p><a href=/html/elements/rtc/>rtc</a></p><p><a href=/html/elements/ruby/>ruby</a></p><p><a href=/html/elements/s/>s</a></p><p><a href=/html/elements/samp/>samp</a></p><p><a href=/html/elements/script/>script</a></p><p><a href=/html/elements/search/>search</a></p><p><a href=/html/elements/section/>section</a></p><p><a href=/html/elements/select/>select</a></p><p><a href=/html/elements/slot/>slot</a></p><p><a href=/html/elements/small/>small</a></p><p><a href=/html/elements/source/>source</a></p><p><a href=/html/elements/span/>span</a></p><p><a href=/html/elements/strong/>strong</a></p><p><a href=/html/elements/style/>style</a></p><p><a href=/html/elements/sub/>sub</a></p><p><a href=/html/elements/summary/>summary</a></p><p><a href=/html/elements/sup/>sup</a></p><p><a href=/html/elements/table/>table</a></p><p><a href=/html/elements/tbody/>tbody</a></p><p><a href=/html/elements/td/>td</a></p><p><a href=/html/elements/template/>template</a></p><p><a href=/html/elements/textarea/>textarea</a></p><p><a href=/html/elements/tfoot/>tfoot</a></p><p><a href=/html/elements/th/>th</a></p><p><a href=/html/elements/thead/>thead</a></p><p><a href=/html/elements/time/>time</a></p><p><a href=/html/elements/title/>title</a></p><p><a href=/html/elements/tr/>tr</a></p><p><a href=/html/elements/track/>track</a></p><p><a href=/html/elements/u/>u</a></p><p><a href=/html/elements/ul/>ul</a></p><p><a href=/html/elements/var/>var</a></p><p><a href=/html/elements/video/>video</a></p><p><a href=/html/elements/wbr/>wbr</a></p></div><h2 id=other><a href=#other>Other</a></h2><div class=margin><p><a href=/html/characters/>Characters</a></p><p><a href=/html/comments/>Comments</a></p><p><a href=/html/datatypes/>Datatypes</a></p></div></div><div class=nav-h1><a id=nav-switch-css>CSS</a></div><div id=nav-content-css><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/css/>Overview</a></p></div><h2 id=functions><a href=#functions>Functions</a></h2><div class=margin><p><a href=/css/functions/abs/>abs</a></p><p><a href=/css/functions/acos/>acos</a></p><p><a href=/css/functions/asin/>asin</a></p><p><a href=/css/functions/atan/>atan</a></p><p><a href=/css/functions/atan2/>atan2</a></p><p><a href=/css/functions/attr/>attr</a></p><p><a href=/css/functions/calc/>calc</a></p><p><a href=/css/functions/clamp/>clamp</a></p><p><a href=/css/functions/color/>color</a></p><p><a href=/css/functions/conic-gradient/>conic-gradient</a></p><p><a href=/css/functions/cos/>cos</a></p><p><a href=/css/functions/counter/>counter</a></p><p><a href=/css/functions/counters/>counters</a></p><p><a href=/css/functions/hsl/>hsl</a></p><p><a href=/css/functions/hsla/>hsla</a></p><p><a href=/css/functions/hwb/>hwb</a></p><p><a href=/css/functions/lab/>lab</a></p><p><a href=/css/functions/lch/>lch</a></p><p><a href=/css/functions/linear-gradient/>linear-gradient</a></p><p><a href=/css/functions/matrix/>matrix</a></p><p><a href=/css/functions/matrix3d/>matrix3d</a></p><p><a href=/css/functions/max/>max</a></p><p><a href=/css/functions/min/>min</a></p><p><a href=/css/functions/mod/>mod</a></p><p><a href=/css/functions/oklab/>oklab</a></p><p><a href=/css/functions/oklch/>oklch</a></p><p><a href=/css/functions/param/>param</a></p><p><a href=/css/functions/perspective/>perspective</a></p><p><a href=/css/functions/radial-gradient/>radial-gradient</a></p><p><a href=/css/functions/rem/>rem</a></p><p><a href=/css/functions/repeating-conic-gradient/>repeating-conic-gradient</a></p><p><a href=/css/functions/repeating-linear-gradient/>repeating-linear-gradient</a></p><p><a href=/css/functions/repeating-radial-gradient/>repeating-radial-gradient</a></p><p><a href=/css/functions/rgb/>rgb</a></p><p><a href=/css/functions/rgba/>rgba</a></p><p><a href=/css/functions/rotate/>rotate</a></p><p><a href=/css/functions/rotate3d/>rotate3d</a></p><p><a href=/css/functions/rotatex/>rotateX</a></p><p><a href=/css/functions/rotatey/>rotateY</a></p><p><a href=/css/functions/rotatez/>rotateZ</a></p><p><a href=/css/functions/round/>round</a></p><p><a href=/css/functions/scale/>scale</a></p><p><a href=/css/functions/scale3d/>scale3d</a></p><p><a href=/css/functions/scalex/>scaleX</a></p><p><a href=/css/functions/scaley/>scaleY</a></p><p><a href=/css/functions/scalez/>scaleZ</a></p><p><a href=/css/functions/sin/>sin</a></p><p><a href=/css/functions/skew/>skew</a></p><p><a href=/css/functions/skewx/>skewX</a></p><p><a href=/css/functions/skewy/>skewY</a></p><p><a href=/css/functions/src/>src</a></p><p><a href=/css/functions/tan/>tan</a></p><p><a href=/css/functions/translate/>translate</a></p><p><a href=/css/functions/translate3d/>translate3d</a></p><p><a href=/css/functions/translatex/>translateX</a></p><p><a href=/css/functions/translatey/>translateY</a></p><p><a href=/css/functions/translatez/>translateZ</a></p><p><a href=/css/functions/url/>url</a></p><p><a href=/css/functions/var/>var</a></p></div><h2 id=properties><a href=#properties>Properties</a></h2><div class=margin><p><a href=/css/properties/accent-color/>accent-color</a></p><p><a href=/css/properties/align-content/>align-content</a></p><p><a href=/css/properties/align-items/>align-items</a></p><p><a href=/css/properties/align-self/>align-self</a></p><p><a href=/css/properties/all/>all</a></p><p><a href=/css/properties/animation/>animation</a></p><p><a href=/css/properties/animation-composition/>animation-composition</a></p><p><a href=/css/properties/animation-delay/>animation-delay</a></p><p><a href=/css/properties/animation-direction/>animation-direction</a></p><p><a href=/css/properties/animation-duration/>animation-duration</a></p><p><a href=/css/properties/animation-fill-mode/>animation-fill-mode</a></p><p><a href=/css/properties/animation-iteration-count/>animation-iteration-count</a></p><p><a href=/css/properties/animation-name/>animation-name</a></p><p><a href=/css/properties/animation-play-state/>animation-play-state</a></p><p><a href=/css/properties/animation-timeline/>animation-timeline</a></p><p><a href=/css/properties/animation-timing-function/>animation-timing-function</a></p><p><a href=/css/properties/appearance/>appearance</a></p><p><a href=/css/properties/aspect-ratio/>aspect-ratio</a></p><p><a href=/css/properties/backdrop-filter/>backdrop-filter</a></p><p><a href=/css/properties/backface-visibility/>backface-visibility</a></p><p><a href=/css/properties/background/>background</a></p><p><a href=/css/properties/background-attachment/>background-attachment</a></p><p><a href=/css/properties/background-blend-mode/>background-blend-mode</a></p><p><a href=/css/properties/background-clip/>background-clip</a></p><p><a href=/css/properties/background-color/>background-color</a></p><p><a href=/css/properties/background-image/>background-image</a></p><p><a href=/css/properties/background-origin/>background-origin</a></p><p><a href=/css/properties/background-position/>background-position</a></p><p><a href=/css/properties/background-position-x/>background-position-x</a></p><p><a href=/css/properties/background-position-y/>background-position-y</a></p><p><a href=/css/properties/background-repeat/>background-repeat</a></p><p><a href=/css/properties/background-size/>background-size</a></p><p><a href=/css/properties/block-ellipsis/>block-ellipsis</a></p><p><a href=/css/properties/block-size/>block-size</a></p><p><a href=/css/properties/border/>border</a></p><p><a href=/css/properties/border-block/>border-block</a></p><p><a href=/css/properties/border-block-color/>border-block-color</a></p><p><a href=/css/properties/border-block-end/>border-block-end</a></p><p><a href=/css/properties/border-block-end-color/>border-block-end-color</a></p><p><a href=/css/properties/border-block-end-style/>border-block-end-style</a></p><p><a href=/css/properties/border-block-end-width/>border-block-end-width</a></p><p><a href=/css/properties/border-block-start/>border-block-start</a></p><p><a href=/css/properties/border-block-start-color/>border-block-start-color</a></p><p><a href=/css/properties/border-block-start-style/>border-block-start-style</a></p><p><a href=/css/properties/border-block-start-width/>border-block-start-width</a></p><p><a href=/css/properties/border-block-style/>border-block-style</a></p><p><a href=/css/properties/border-block-width/>border-block-width</a></p><p><a href=/css/properties/border-bottom/>border-bottom</a></p><p><a href=/css/properties/border-bottom-color/>border-bottom-color</a></p><p><a href=/css/properties/border-bottom-left-radius/>border-bottom-left-radius</a></p><p><a href=/css/properties/border-bottom-right-radius/>border-bottom-right-radius</a></p><p><a href=/css/properties/border-bottom-style/>border-bottom-style</a></p><p><a href=/css/properties/border-bottom-width/>border-bottom-width</a></p><p><a href=/css/properties/border-collapse/>border-collapse</a></p><p><a href=/css/properties/border-color/>border-color</a></p><p><a href=/css/properties/border-end-end-radius/>border-end-end-radius</a></p><p><a href=/css/properties/border-end-start-radius/>border-end-start-radius</a></p><p><a href=/css/properties/border-image/>border-image</a></p><p><a href=/css/properties/border-image-outset/>border-image-outset</a></p><p><a href=/css/properties/border-image-repeat/>border-image-repeat</a></p><p><a href=/css/properties/border-image-slice/>border-image-slice</a></p><p><a href=/css/properties/border-image-source/>border-image-source</a></p><p><a href=/css/properties/border-image-width/>border-image-width</a></p><p><a href=/css/properties/border-inline/>border-inline</a></p><p><a href=/css/properties/border-inline-color/>border-inline-color</a></p><p><a href=/css/properties/border-inline-end/>border-inline-end</a></p><p><a href=/css/properties/border-inline-end-color/>border-inline-end-color</a></p><p><a href=/css/properties/border-inline-end-style/>border-inline-end-style</a></p><p><a href=/css/properties/border-inline-end-width/>border-inline-end-width</a></p><p><a href=/css/properties/border-inline-start/>border-inline-start</a></p><p><a href=/css/properties/border-inline-start-color/>border-inline-start-color</a></p><p><a href=/css/properties/border-inline-start-style/>border-inline-start-style</a></p><p><a href=/css/properties/border-inline-start-width/>border-inline-start-width</a></p><p><a href=/css/properties/border-inline-style/>border-inline-style</a></p><p><a href=/css/properties/border-inline-width/>border-inline-width</a></p><p><a href=/css/properties/border-left/>border-left</a></p><p><a href=/css/properties/border-left-color/>border-left-color</a></p><p><a href=/css/properties/border-left-style/>border-left-style</a></p><p><a href=/css/properties/border-left-width/>border-left-width</a></p><p><a href=/css/properties/border-radius/>border-radius</a></p><p><a href=/css/properties/border-right/>border-right</a></p><p><a href=/css/properties/border-right-color/>border-right-color</a></p><p><a href=/css/properties/border-right-style/>border-right-style</a></p><p><a href=/css/properties/border-right-width/>border-right-width</a></p><p><a href=/css/properties/border-spacing/>border-spacing</a></p><p><a href=/css/properties/border-start-end-radius/>border-start-end-radius</a></p><p><a href=/css/properties/border-start-start-radius/>border-start-start-radius</a></p><p><a href=/css/properties/border-style/>border-style</a></p><p><a href=/css/properties/border-top/>border-top</a></p><p><a href=/css/properties/border-top-color/>border-top-color</a></p><p><a href=/css/properties/border-top-left-radius/>border-top-left-radius</a></p><p><a href=/css/properties/border-top-right-radius/>border-top-right-radius</a></p><p><a href=/css/properties/border-top-style/>border-top-style</a></p><p><a href=/css/properties/border-top-width/>border-top-width</a></p><p><a href=/css/properties/border-width/>border-width</a></p><p><a href=/css/properties/bottom/>bottom</a></p><p><a href=/css/properties/box-decoration-break/>box-decoration-break</a></p><p><a href=/css/properties/box-shadow/>box-shadow</a></p><p><a href=/css/properties/box-sizing/>box-sizing</a></p><p><a href=/css/properties/caption-side/>caption-side</a></p><p><a href=/css/properties/caret/>caret</a></p><p><a href=/css/properties/caret-color/>caret-color</a></p><p><a href=/css/properties/caret-shape/>caret-shape</a></p><p><a href=/css/properties/clear/>clear</a></p><p><a href=/css/properties/clip/>clip</a></p><p><a href=/css/properties/clip-path/>clip-path</a></p><p><a href=/css/properties/color/>color</a></p><p><a href=/css/properties/color-scheme/>color-scheme</a></p><p><a href=/css/properties/column-count/>column-count</a></p><p><a href=/css/properties/column-fill/>column-fill</a></p><p><a href=/css/properties/column-gap/>column-gap</a></p><p><a href=/css/properties/column-rule/>column-rule</a></p><p><a href=/css/properties/column-rule-color/>column-rule-color</a></p><p><a href=/css/properties/column-rule-style/>column-rule-style</a></p><p><a href=/css/properties/column-rule-width/>column-rule-width</a></p><p><a href=/css/properties/column-span/>column-span</a></p><p><a href=/css/properties/column-width/>column-width</a></p><p><a href=/css/properties/columns/>columns</a></p><p><a href=/css/properties/contain/>contain</a></p><p><a href=/css/properties/contain-intrinsic-block-size/>contain-intrinsic-block-size</a></p><p><a href=/css/properties/contain-intrinsic-height/>contain-intrinsic-height</a></p><p><a href=/css/properties/contain-intrinsic-inline-size/>contain-intrinsic-inline-size</a></p><p><a href=/css/properties/contain-intrinsic-size/>contain-intrinsic-size</a></p><p><a href=/css/properties/contain-intrinsic-width/>contain-intrinsic-width</a></p><p><a href=/css/properties/container/>container</a></p><p><a href=/css/properties/container-name/>container-name</a></p><p><a href=/css/properties/container-type/>container-type</a></p><p><a href=/css/properties/content/>content</a></p><p><a href=/css/properties/content-visibility/>content-visibility</a></p><p><a href=/css/properties/continue/>continue</a></p><p><a href=/css/properties/counter-increment/>counter-increment</a></p><p><a href=/css/properties/counter-reset/>counter-reset</a></p><p><a href=/css/properties/counter-set/>counter-set</a></p><p><a href=/css/properties/cursor/>cursor</a></p><p><a href=/css/properties/direction/>direction</a></p><p><a href=/css/properties/display/>display</a></p><p><a href=/css/properties/empty-cells/>empty-cells</a></p><p><a href=/css/properties/filter/>filter</a></p><p><a href=/css/properties/flex/>flex</a></p><p><a href=/css/properties/flex-basis/>flex-basis</a></p><p><a href=/css/properties/flex-direction/>flex-direction</a></p><p><a href=/css/properties/flex-flow/>flex-flow</a></p><p><a href=/css/properties/flex-grow/>flex-grow</a></p><p><a href=/css/properties/flex-shrink/>flex-shrink</a></p><p><a href=/css/properties/flex-wrap/>flex-wrap</a></p><p><a href=/css/properties/float/>float</a></p><p><a href=/css/properties/font/>font</a></p><p><a href=/css/properties/font-family/>font-family</a></p><p><a href=/css/properties/font-feature-settings/>font-feature-settings</a></p><p><a href=/css/properties/font-kerning/>font-kerning</a></p><p><a href=/css/properties/font-optical-sizing/>font-optical-sizing</a></p><p><a href=/css/properties/font-size/>font-size</a></p><p><a href=/css/properties/font-size-adjust/>font-size-adjust</a></p><p><a href=/css/properties/font-stretch/>font-stretch</a></p><p><a href=/css/properties/font-style/>font-style</a></p><p><a href=/css/properties/font-variant/>font-variant</a></p><p><a href=/css/properties/font-variant-caps/>font-variant-caps</a></p><p><a href=/css/properties/font-variant-ligatures/>font-variant-ligatures</a></p><p><a href=/css/properties/font-variant-numeric/>font-variant-numeric</a></p><p><a href=/css/properties/font-variant-position/>font-variant-position</a></p><p><a href=/css/properties/font-variation-settings/>font-variation-settings</a></p><p><a href=/css/properties/font-weight/>font-weight</a></p><p><a href=/css/properties/forced-color-adjust/>forced-color-adjust</a></p><p><a href=/css/properties/gap/>gap</a></p><p><a href=/css/properties/grid/>grid</a></p><p><a href=/css/properties/grid-area/>grid-area</a></p><p><a href=/css/properties/grid-auto-columns/>grid-auto-columns</a></p><p><a href=/css/properties/grid-auto-flow/>grid-auto-flow</a></p><p><a href=/css/properties/grid-auto-rows/>grid-auto-rows</a></p><p><a href=/css/properties/grid-column/>grid-column</a></p><p><a href=/css/properties/grid-column-end/>grid-column-end</a></p><p><a href=/css/properties/grid-column-start/>grid-column-start</a></p><p><a href=/css/properties/grid-row/>grid-row</a></p><p><a href=/css/properties/grid-row-end/>grid-row-end</a></p><p><a href=/css/properties/grid-row-start/>grid-row-start</a></p><p><a href=/css/properties/grid-template/>grid-template</a></p><p><a href=/css/properties/grid-template-areas/>grid-template-areas</a></p><p><a href=/css/properties/grid-template-columns/>grid-template-columns</a></p><p><a href=/css/properties/grid-template-rows/>grid-template-rows</a></p><p><a href=/css/properties/hanging-punctuation/>hanging-punctuation</a></p><p><a href=/css/properties/height/>height</a></p><p><a href=/css/properties/hyphens/>hyphens</a></p><p><a href=/css/properties/image-rendering/>image-rendering</a></p><p><a href=/css/properties/initial-letter/>initial-letter</a></p><p><a href=/css/properties/initial-letter-align/>initial-letter-align</a></p><p><a href=/css/properties/inline-size/>inline-size</a></p><p><a href=/css/properties/inset/>inset</a></p><p><a href=/css/properties/inset-block/>inset-block</a></p><p><a href=/css/properties/inset-block-end/>inset-block-end</a></p><p><a href=/css/properties/inset-block-start/>inset-block-start</a></p><p><a href=/css/properties/inset-inline/>inset-inline</a></p><p><a href=/css/properties/inset-inline-end/>inset-inline-end</a></p><p><a href=/css/properties/inset-inline-start/>inset-inline-start</a></p><p><a href=/css/properties/isolation/>isolation</a></p><p><a href=/css/properties/justify-content/>justify-content</a></p><p><a href=/css/properties/justify-items/>justify-items</a></p><p><a href=/css/properties/justify-self/>justify-self</a></p><p><a href=/css/properties/left/>left</a></p><p><a href=/css/properties/letter-spacing/>letter-spacing</a></p><p><a href=/css/properties/line-break/>line-break</a></p><p><a href=/css/properties/line-clamp/>line-clamp</a></p><p><a href=/css/properties/line-height/>line-height</a></p><p><a href=/css/properties/list-style/>list-style</a></p><p><a href=/css/properties/list-style-image/>list-style-image</a></p><p><a href=/css/properties/list-style-position/>list-style-position</a></p><p><a href=/css/properties/list-style-type/>list-style-type</a></p><p><a href=/css/properties/margin/>margin</a></p><p><a href=/css/properties/margin-block/>margin-block</a></p><p><a href=/css/properties/margin-block-end/>margin-block-end</a></p><p><a href=/css/properties/margin-block-start/>margin-block-start</a></p><p><a href=/css/properties/margin-bottom/>margin-bottom</a></p><p><a href=/css/properties/margin-inline/>margin-inline</a></p><p><a href=/css/properties/margin-inline-end/>margin-inline-end</a></p><p><a href=/css/properties/margin-inline-start/>margin-inline-start</a></p><p><a href=/css/properties/margin-left/>margin-left</a></p><p><a href=/css/properties/margin-right/>margin-right</a></p><p><a href=/css/properties/margin-top/>margin-top</a></p><p><a href=/css/properties/mask/>mask</a></p><p><a href=/css/properties/mask-border/>mask-border</a></p><p><a href=/css/properties/mask-border-mode/>mask-border-mode</a></p><p><a href=/css/properties/mask-border-outset/>mask-border-outset</a></p><p><a href=/css/properties/mask-border-repeat/>mask-border-repeat</a></p><p><a href=/css/properties/mask-border-slice/>mask-border-slice</a></p><p><a href=/css/properties/mask-border-source/>mask-border-source</a></p><p><a href=/css/properties/mask-border-width/>mask-border-width</a></p><p><a href=/css/properties/mask-clip/>mask-clip</a></p><p><a href=/css/properties/mask-composite/>mask-composite</a></p><p><a href=/css/properties/mask-image/>mask-image</a></p><p><a href=/css/properties/mask-mode/>mask-mode</a></p><p><a href=/css/properties/mask-origin/>mask-origin</a></p><p><a href=/css/properties/mask-position/>mask-position</a></p><p><a href=/css/properties/mask-repeat/>mask-repeat</a></p><p><a href=/css/properties/mask-size/>mask-size</a></p><p><a href=/css/properties/mask-type/>mask-type</a></p><p><a href=/css/properties/math-depth/>math-depth</a></p><p><a href=/css/properties/math-shift/>math-shift</a></p><p><a href=/css/properties/math-style/>math-style</a></p><p><a href=/css/properties/max-block-size/>max-block-size</a></p><p><a href=/css/properties/max-height/>max-height</a></p><p><a href=/css/properties/max-inline-size/>max-inline-size</a></p><p><a href=/css/properties/max-lines/>max-lines</a></p><p><a href=/css/properties/max-width/>max-width</a></p><p><a href=/css/properties/min-block-size/>min-block-size</a></p><p><a href=/css/properties/min-height/>min-height</a></p><p><a href=/css/properties/min-inline-size/>min-inline-size</a></p><p><a href=/css/properties/min-width/>min-width</a></p><p><a href=/css/properties/mix-blend-mode/>mix-blend-mode</a></p><p><a href=/css/properties/nav-down/>nav-down</a></p><p><a href=/css/properties/nav-left/>nav-left</a></p><p><a href=/css/properties/nav-right/>nav-right</a></p><p><a href=/css/properties/nav-up/>nav-up</a></p><p><a href=/css/properties/object-fit/>object-fit</a></p><p><a href=/css/properties/object-position/>object-position</a></p><p><a href=/css/properties/opacity/>opacity</a></p><p><a href=/css/properties/orphans/>orphans</a></p><p><a href=/css/properties/outline/>outline</a></p><p><a href=/css/properties/outline-color/>outline-color</a></p><p><a href=/css/properties/outline-offset/>outline-offset</a></p><p><a href=/css/properties/outline-style/>outline-style</a></p><p><a href=/css/properties/outline-width/>outline-width</a></p><p><a href=/css/properties/overflow/>overflow</a></p><p><a href=/css/properties/overflow-block/>overflow-block</a></p><p><a href=/css/properties/overflow-clip-margin/>overflow-clip-margin</a></p><p><a href=/css/properties/overflow-inline/>overflow-inline</a></p><p><a href=/css/properties/overflow-wrap/>overflow-wrap</a></p><p><a href=/css/properties/overflow-x/>overflow-x</a></p><p><a href=/css/properties/overflow-y/>overflow-y</a></p><p><a href=/css/properties/padding/>padding</a></p><p><a href=/css/properties/padding-block/>padding-block</a></p><p><a href=/css/properties/padding-block-end/>padding-block-end</a></p><p><a href=/css/properties/padding-block-start/>padding-block-start</a></p><p><a href=/css/properties/padding-bottom/>padding-bottom</a></p><p><a href=/css/properties/padding-inline/>padding-inline</a></p><p><a href=/css/properties/padding-inline-end/>padding-inline-end</a></p><p><a href=/css/properties/padding-inline-start/>padding-inline-start</a></p><p><a href=/css/properties/padding-left/>padding-left</a></p><p><a href=/css/properties/padding-right/>padding-right</a></p><p><a href=/css/properties/padding-top/>padding-top</a></p><p><a href=/css/properties/paint-order/>paint-order</a></p><p><a href=/css/properties/perspective/>perspective</a></p><p><a href=/css/properties/perspective-origin/>perspective-origin</a></p><p><a href=/css/properties/place-content/>place-content</a></p><p><a href=/css/properties/place-items/>place-items</a></p><p><a href=/css/properties/place-self/>place-self</a></p><p><a href=/css/properties/pointer-events/>pointer-events</a></p><p><a href=/css/properties/position/>position</a></p><p><a href=/css/properties/print-color-adjust/>print-color-adjust</a></p><p><a href=/css/properties/quotes/>quotes</a></p><p><a href=/css/properties/resize/>resize</a></p><p><a href=/css/properties/right/>right</a></p><p><a href=/css/properties/rotate/>rotate</a></p><p><a href=/css/properties/row-gap/>row-gap</a></p><p><a href=/css/properties/scale/>scale</a></p><p><a href=/css/properties/scroll-behavior/>scroll-behavior</a></p><p><a href=/css/properties/scroll-margin/>scroll-margin</a></p><p><a href=/css/properties/scroll-margin-block/>scroll-margin-block</a></p><p><a href=/css/properties/scroll-margin-block-end/>scroll-margin-block-end</a></p><p><a href=/css/properties/scroll-margin-block-start/>scroll-margin-block-start</a></p><p><a href=/css/properties/scroll-margin-bottom/>scroll-margin-bottom</a></p><p><a href=/css/properties/scroll-margin-inline/>scroll-margin-inline</a></p><p><a href=/css/properties/scroll-margin-inline-end/>scroll-margin-inline-end</a></p><p><a href=/css/properties/scroll-margin-inline-start/>scroll-margin-inline-start</a></p><p><a href=/css/properties/scroll-margin-left/>scroll-margin-left</a></p><p><a href=/css/properties/scroll-margin-right/>scroll-margin-right</a></p><p><a href=/css/properties/scroll-margin-top/>scroll-margin-top</a></p><p><a href=/css/properties/scroll-padding/>scroll-padding</a></p><p><a href=/css/properties/scroll-padding-block/>scroll-padding-block</a></p><p><a href=/css/properties/scroll-padding-block-end/>scroll-padding-block-end</a></p><p><a href=/css/properties/scroll-padding-block-start/>scroll-padding-block-start</a></p><p><a href=/css/properties/scroll-padding-bottom/>scroll-padding-bottom</a></p><p><a href=/css/properties/scroll-padding-inline/>scroll-padding-inline</a></p><p><a href=/css/properties/scroll-padding-inline-end/>scroll-padding-inline-end</a></p><p><a href=/css/properties/scroll-padding-inline-start/>scroll-padding-inline-start</a></p><p><a href=/css/properties/scroll-padding-left/>scroll-padding-left</a></p><p><a href=/css/properties/scroll-padding-right/>scroll-padding-right</a></p><p><a href=/css/properties/scroll-padding-top/>scroll-padding-top</a></p><p><a href=/css/properties/scroll-snap-align/>scroll-snap-align</a></p><p><a href=/css/properties/scroll-snap-stop/>scroll-snap-stop</a></p><p><a href=/css/properties/scroll-snap-type/>scroll-snap-type</a></p><p><a href=/css/properties/scroll-timeline/>scroll-timeline</a></p><p><a href=/css/properties/scroll-timeline-axis/>scroll-timeline-axis</a></p><p><a href=/css/properties/scroll-timeline-name/>scroll-timeline-name</a></p><p><a href=/css/properties/scrollbar-color/>scrollbar-color</a></p><p><a href=/css/properties/scrollbar-gutter/>scrollbar-gutter</a></p><p><a href=/css/properties/scrollbar-width/>scrollbar-width</a></p><p><a href=/css/properties/shape-image-threshold/>shape-image-threshold</a></p><p><a href=/css/properties/shape-margin/>shape-margin</a></p><p><a href=/css/properties/shape-outside/>shape-outside</a></p><p><a href=/css/properties/tab-size/>tab-size</a></p><p><a href=/css/properties/table-layout/>table-layout</a></p><p><a href=/css/properties/text-align/>text-align</a></p><p><a href=/css/properties/text-align-all/>text-align-all</a></p><p><a href=/css/properties/text-align-last/>text-align-last</a></p><p><a href=/css/properties/text-combine-upright/>text-combine-upright</a></p><p><a href=/css/properties/text-decoration/>text-decoration</a></p><p><a href=/css/properties/text-decoration-color/>text-decoration-color</a></p><p><a href=/css/properties/text-decoration-line/>text-decoration-line</a></p><p><a href=/css/properties/text-decoration-skip-ink/>text-decoration-skip-ink</a></p><p><a href=/css/properties/text-decoration-style/>text-decoration-style</a></p><p><a href=/css/properties/text-decoration-thickness/>text-decoration-thickness</a></p><p><a href=/css/properties/text-decoration-trim/>text-decoration-trim</a></p><p><a href=/css/properties/text-emphasis/>text-emphasis</a></p><p><a href=/css/properties/text-emphasis-color/>text-emphasis-color</a></p><p><a href=/css/properties/text-emphasis-position/>text-emphasis-position</a></p><p><a href=/css/properties/text-emphasis-style/>text-emphasis-style</a></p><p><a href=/css/properties/text-indent/>text-indent</a></p><p><a href=/css/properties/text-justify/>text-justify</a></p><p><a href=/css/properties/text-orientation/>text-orientation</a></p><p><a href=/css/properties/text-overflow/>text-overflow</a></p><p><a href=/css/properties/text-shadow/>text-shadow</a></p><p><a href=/css/properties/text-transform/>text-transform</a></p><p><a href=/css/properties/text-underline-offset/>text-underline-offset</a></p><p><a href=/css/properties/text-underline-position/>text-underline-position</a></p><p><a href=/css/properties/top/>top</a></p><p><a href=/css/properties/transform/>transform</a></p><p><a href=/css/properties/transform-box/>transform-box</a></p><p><a href=/css/properties/transform-origin/>transform-origin</a></p><p><a href=/css/properties/transform-style/>transform-style</a></p><p><a href=/css/properties/transition/>transition</a></p><p><a href=/css/properties/transition-delay/>transition-delay</a></p><p><a href=/css/properties/transition-duration/>transition-duration</a></p><p><a href=/css/properties/transition-property/>transition-property</a></p><p><a href=/css/properties/transition-timing-function/>transition-timing-function</a></p><p><a href=/css/properties/translate/>translate</a></p><p><a href=/css/properties/unicode-bidi/>unicode-bidi</a></p><p><a href=/css/properties/vertical-align/>vertical-align</a></p><p><a href=/css/properties/visibility/>visibility</a></p><p><a href=/css/properties/white-space/>white-space</a></p><p><a href=/css/properties/widows/>widows</a></p><p><a href=/css/properties/width/>width</a></p><p><a href=/css/properties/word-break/>word-break</a></p><p><a href=/css/properties/word-spacing/>word-spacing</a></p><p><a href=/css/properties/word-wrap/>word-wrap</a></p><p><a href=/css/properties/writing-mode/>writing-mode</a></p><p><a href=/css/properties/z-index/>z-index</a></p><p><a href=/css/properties/zoom/>zoom</a></p></div><h2 id=pseudo-classes><a href=#pseudo-classes>Pseudo-Classes</a></h2><div class=margin><p><a href=/css/pseudo-classes/active/>active</a></p><p><a href=/css/pseudo-classes/any-link/>any-link</a></p><p><a href=/css/pseudo-classes/autofill/>autofill</a></p><p><a href=/css/pseudo-classes/blank/>blank</a></p><p><a href=/css/pseudo-classes/checked/>checked</a></p><p><a href=/css/pseudo-classes/default/>default</a></p><p><a href=/css/pseudo-classes/defined/>defined</a></p><p><a href=/css/pseudo-classes/dir/>dir</a></p><p><a href=/css/pseudo-classes/disabled/>disabled</a></p><p><a href=/css/pseudo-classes/empty/>empty</a></p><p><a href=/css/pseudo-classes/enabled/>enabled</a></p><p><a href=/css/pseudo-classes/first-child/>first-child</a></p><p><a href=/css/pseudo-classes/first-of-type/>first-of-type</a></p><p><a href=/css/pseudo-classes/focus/>focus</a></p><p><a href=/css/pseudo-classes/focus-visible/>focus-visible</a></p><p><a href=/css/pseudo-classes/focus-within/>focus-within</a></p><p><a href=/css/pseudo-classes/fullscreen/>fullscreen</a></p><p><a href=/css/pseudo-classes/has/>has</a></p><p><a href=/css/pseudo-classes/hover/>hover</a></p><p><a href=/css/pseudo-classes/in-range/>in-range</a></p><p><a href=/css/pseudo-classes/indeterminate/>indeterminate</a></p><p><a href=/css/pseudo-classes/invalid/>invalid</a></p><p><a href=/css/pseudo-classes/is/>is</a></p><p><a href=/css/pseudo-classes/lang/>lang</a></p><p><a href=/css/pseudo-classes/last-child/>last-child</a></p><p><a href=/css/pseudo-classes/last-of-type/>last-of-type</a></p><p><a href=/css/pseudo-classes/link/>link</a></p><p><a href=/css/pseudo-classes/local-link/>local-link</a></p><p><a href=/css/pseudo-classes/modal/>modal</a></p><p><a href=/css/pseudo-classes/not/>not</a></p><p><a href=/css/pseudo-classes/nth-child/>nth-child</a></p><p><a href=/css/pseudo-classes/nth-col/>nth-col</a></p><p><a href=/css/pseudo-classes/nth-last-child/>nth-last-child</a></p><p><a href=/css/pseudo-classes/nth-last-col/>nth-last-col</a></p><p><a href=/css/pseudo-classes/nth-last-of-type/>nth-last-of-type</a></p><p><a href=/css/pseudo-classes/nth-of-type/>nth-of-type</a></p><p><a href=/css/pseudo-classes/only-child/>only-child</a></p><p><a href=/css/pseudo-classes/only-of-type/>only-of-type</a></p><p><a href=/css/pseudo-classes/optional/>optional</a></p><p><a href=/css/pseudo-classes/out-of-range/>out-of-range</a></p><p><a href=/css/pseudo-classes/picture-in-picture/>picture-in-picture</a></p><p><a href=/css/pseudo-classes/placeholder-shown/>placeholder-shown</a></p><p><a href=/css/pseudo-classes/popover-open/>popover-open</a></p><p><a href=/css/pseudo-classes/read-only/>read-only</a></p><p><a href=/css/pseudo-classes/read-write/>read-write</a></p><p><a href=/css/pseudo-classes/required/>required</a></p><p><a href=/css/pseudo-classes/root/>root</a></p><p><a href=/css/pseudo-classes/scope/>scope</a></p><p><a href=/css/pseudo-classes/target/>target</a></p><p><a href=/css/pseudo-classes/valid/>valid</a></p><p><a href=/css/pseudo-classes/visited/>visited</a></p><p><a href=/css/pseudo-classes/where/>where</a></p></div><h2 id=pseudo-elements><a href=#pseudo-elements>Pseudo-Elements</a></h2><div class=margin><p><a href=/css/pseudo-elements/after/>after</a></p><p><a href=/css/pseudo-elements/backdrop/>backdrop</a></p><p><a href=/css/pseudo-elements/before/>before</a></p><p><a href=/css/pseudo-elements/file-selector-button/>file-selector-button</a></p><p><a href=/css/pseudo-elements/first-letter/>first-letter</a></p><p><a href=/css/pseudo-elements/first-line/>first-line</a></p><p><a href=/css/pseudo-elements/highlight/>highlight</a></p><p><a href=/css/pseudo-elements/marker/>marker</a></p><p><a href=/css/pseudo-elements/part/>part</a></p><p><a href=/css/pseudo-elements/placeholder/>placeholder</a></p><p><a href=/css/pseudo-elements/selection/>selection</a></p></div><h2 id=units><a href=#units>Units</a></h2><div class=margin><p><a href=/css/units/cap/>cap</a></p><p><a href=/css/units/ch/>ch</a></p><p><a href=/css/units/cm/>cm</a></p><p><a href=/css/units/cqb/>cqb</a></p><p><a href=/css/units/cqh/>cqh</a></p><p><a href=/css/units/cqi/>cqi</a></p><p><a href=/css/units/cqmax/>cqmax</a></p><p><a href=/css/units/cqmin/>cqmin</a></p><p><a href=/css/units/cqw/>cqw</a></p><p><a href=/css/units/deg/>deg</a></p><p><a href=/css/units/dpcm/>dpcm</a></p><p><a href=/css/units/dpi/>dpi</a></p><p><a href=/css/units/dppx/>dppx</a></p><p><a href=/css/units/dvb/>dvb</a></p><p><a href=/css/units/dvh/>dvh</a></p><p><a href=/css/units/dvi/>dvi</a></p><p><a href=/css/units/dvmax/>dvmax</a></p><p><a href=/css/units/dvmin/>dvmin</a></p><p><a href=/css/units/dvw/>dvw</a></p><p><a href=/css/units/em/>em</a></p><p><a href=/css/units/ex/>ex</a></p><p><a href=/css/units/grad/>grad</a></p><p><a href=/css/units/ic/>ic</a></p><p><a href=/css/units/in/>in</a></p><p><a href=/css/units/lvb/>lvb</a></p><p><a href=/css/units/lvh/>lvh</a></p><p><a href=/css/units/lvi/>lvi</a></p><p><a href=/css/units/lvmax/>lvmax</a></p><p><a href=/css/units/lvmin/>lvmin</a></p><p><a href=/css/units/lvw/>lvw</a></p><p><a href=/css/units/mm/>mm</a></p><p><a href=/css/units/ms/>ms</a></p><p><a href=/css/units/pc/>pc</a></p><p><a href=/css/units/pt/>pt</a></p><p><a href=/css/units/px/>px</a></p><p><a href=/css/units/q/>Q</a></p><p><a href=/css/units/rad/>rad</a></p><p><a href=/css/units/rem/>rem</a></p><p><a href=/css/units/s/>s</a></p><p><a href=/css/units/svb/>svb</a></p><p><a href=/css/units/svh/>svh</a></p><p><a href=/css/units/svi/>svi</a></p><p><a href=/css/units/svmax/>svmax</a></p><p><a href=/css/units/svmin/>svmin</a></p><p><a href=/css/units/svw/>svw</a></p><p><a href=/css/units/turn/>turn</a></p><p><a href=/css/units/vb/>vb</a></p><p><a href=/css/units/vh/>vh</a></p><p><a href=/css/units/vi/>vi</a></p><p><a href=/css/units/vmax/>vmax</a></p><p><a href=/css/units/vmin/>vmin</a></p><p><a href=/css/units/vw/>vw</a></p></div></div><div class=nav-h1><a id=nav-switch-js>JS</a></div><div id=nav-content-js><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/js/>Overview</a></p></div><h2 id=abortcontroller><a href=#abortcontroller>AbortController</a></h2><div class=margin><p><a href=/js/abortcontroller/abort/>abort</a></p><p><a href=/js/abortcontroller/abortcontroller/>AbortController</a></p><p><a href=/js/abortcontroller/signal/>signal</a></p></div><h2 id=abstractrange><a href=#abstractrange>AbstractRange</a></h2><div class=margin><p><a href=/js/abstractrange/collapsed/>collapsed</a></p><p><a href=/js/abstractrange/endcontainer/>endContainer</a></p><p><a href=/js/abstractrange/endoffset/>endOffset</a></p><p><a href=/js/abstractrange/startcontainer/>startContainer</a></p><p><a href=/js/abstractrange/startoffset/>startOffset</a></p></div><h2 id=abortsignal><a href=#abortsignal>AbortSignal</a></h2><div class=margin><p><a href=/js/abortsignal/abort/>abort</a></p><p><a href=/js/abortsignal/aborted/>aborted</a></p><p><a href=/js/abortsignal/reason/>reason</a></p><p><a href=/js/abortsignal/throwifaborted/>throwIfAborted</a></p><p><a href=/js/abortsignal/timeout/>timeout</a></p></div><h2 id=childnode><a href=#childnode>ChildNode</a></h2><div class=margin><p><a href=/js/childnode/after/>after</a></p><p><a href=/js/childnode/before/>before</a></p><p><a href=/js/childnode/remove/>remove</a></p><p><a href=/js/childnode/replacewith/>replaceWith</a></p></div><h2 id=comment><a href=#comment>Comment</a></h2><div class=margin><p><a href=/js/comment/comment/>Comment</a></p></div><h2 id=console><a href=#console>console</a></h2><div class=margin><p><a href=/js/console/assert/>assert</a></p><p><a href=/js/console/clear/>clear</a></p><p><a href=/js/console/count/>count</a></p><p><a href=/js/console/countreset/>countReset</a></p><p><a href=/js/console/debug/>debug</a></p><p><a href=/js/console/dir/>dir</a> 10000 </p><p><a href=/js/console/dirxml/>dirxml</a></p><p><a href=/js/console/error/>error</a></p><p><a href=/js/console/group/>group</a></p><p><a href=/js/console/groupcollapsed/>groupCollapsed</a></p><p><a href=/js/console/groupend/>groupEnd</a></p><p><a href=/js/console/info/>info</a></p><p><a href=/js/console/log/>log</a></p><p><a href=/js/console/table/>table</a></p><p><a href=/js/console/time/>time</a></p><p><a href=/js/console/timeend/>timeEnd</a></p><p><a href=/js/console/timelog/>timeLog</a></p><p><a href=/js/console/trace/>trace</a></p><p><a href=/js/console/warn/>warn</a></p></div><h2 id=customevent><a href=#customevent>CustomEvent</a></h2><div class=margin><p><a href=/js/customevent/customevent/>CustomEvent</a></p><p><a href=/js/customevent/detail/>detail</a></p></div><h2 id=declarations><a href=#declarations>Declarations</a></h2><div class=margin><p><a href=/js/declarations/const/>const</a></p><p><a href=/js/declarations/let/>let</a></p><p><a href=/js/declarations/var/>var</a></p></div><h2 id=document><a href=#document>Document</a></h2><div class=margin><p><a href=/js/document/adoptnode/>adoptNode</a></p><p><a href=/js/document/characterset/>characterSet</a></p><p><a href=/js/document/compatmode/>compatMode</a></p><p><a href=/js/document/contenttype/>contentType</a></p><p><a href=/js/document/createcdatasection/>createCDATASection</a></p><p><a href=/js/document/createcomment/>createComment</a></p><p><a href=/js/document/createdocumentfragment/>createDocumentFragment</a></p><p><a href=/js/document/createelement/>createElement</a></p><p><a href=/js/document/createelementns/>createElementNS</a></p><p><a href=/js/document/createprocessinginstruction/>createProcessingInstruction</a></p><p><a href=/js/document/createtextnode/>createTextNode</a></p><p><a href=/js/document/doctype/>doctype</a></p><p><a href=/js/document/document/>Document</a></p><p><a href=/js/document/documentelement/>documentElement</a></p><p><a href=/js/document/documenturi/>documentURI</a></p><p><a href=/js/document/exitpictureinpicture/>exitPictureInPicture</a></p><p><a href=/js/document/getelementsbyclassname/>getElementsByClassName</a></p><p><a href=/js/document/getelementsbytagname/>getElementsByTagName</a></p><p><a href=/js/document/getelementsbytagnamens/>getElementsByTagNameNS</a></p><p><a href=/js/document/implementation/>implementation</a></p><p><a href=/js/document/importnode/>importNode</a></p><p><a href=/js/document/pictureinpictureenabled/>pictureInPictureEnabled</a></p><p><a href=/js/document/url/>URL</a></p><p><a href=/js/document/write/>write</a></p><p><a href=/js/document/writeln/>writeln</a></p></div><h2 id=documentfragment><a href=#documentfragment>DocumentFragment</a></h2><div class=margin><p><a href=/js/documentfragment/documentfragment/>DocumentFragment</a></p></div><h2 id=documentorshadowroot><a href=#documentorshadowroot>DocumentOrShadowRoot</a></h2><div class=margin><p><a href=/js/documentorshadowroot/pictureinpictureelement/>pictureInPictureElement</a></p></div><h2 id=domimplementation><a href=#domimplementation>DOMImplementation</a></h2><div class=margin><p><a href=/js/domimplementation/createdocument/>createDocument</a></p><p><a href=/js/domimplementation/createdocumenttype/>createDocumentType</a></p><p><a href=/js/domimplementation/createhtmldocument/>createHTMLDocument</a></p></div><h2 id=domtokenlist><a href=#domtokenlist>DOMTokenList</a></h2><div class=margin><p><a href=/js/domtokenlist/add/>add</a></p><p><a href=/js/domtokenlist/contains/>contains</a></p><p><a href=/js/domtokenlist/item/>item</a></p><p><a href=/js/domtokenlist/length/>length</a></p><p><a href=/js/domtokenlist/remove/>remove</a></p><p><a href=/js/domtokenlist/replace/>replace</a></p><p><a href=/js/domtokenlist/supports/>supports</a></p><p><a href=/js/domtokenlist/toggle/>toggle</a></p><p><a href=/js/domtokenlist/value/>value</a></p></div><h2 id=element><a href=#element>Element</a></h2><div class=margin><p><a href=/js/element/attachshadow/>attachShadow</a></p><p><a href=/js/element/classlist/>classList</a></p><p><a href=/js/element/classname/>className</a></p><p><a href=/js/element/closest/>closest</a></p><p><a href=/js/element/getattribute/>getAttribute</a></p><p><a href=/js/element/getattributenames/>getAttributeNames</a></p><p><a href=/js/element/getattributens/>getAttributeNS</a></p><p><a href=/js/element/hasattribute/>hasAttribute</a></p><p><a href=/js/element/hasattributens/>hasAttributeNS</a></p><p><a href=/js/element/hasattributes/>hasAttributes</a></p><p><a href=/js/element/id/>id</a></p><p><a href=/js/element/innerhtml/>innerHTML</a></p><p><a href=/js/element/insertadjacenthtml/>insertAdjacentHTML</a></p><p><a href=/js/element/localname/>localName</a></p><p><a href=/js/element/matches/>matches</a></p><p><a href=/js/element/namespaceuri/>namespaceURI</a></p><p><a href=/js/element/outerhtml/>outerHTML</a></p><p><a href=/js/element/prefix/>prefix</a></p><p><a href=/js/element/removeattribute/>removeAttribute</a></p><p><a href=/js/element/removeattributens/>removeAttributeNS</a></p><p><a href=/js/element/setattribute/>setAttribute</a></p><p><a href=/js/element/setattributens/>setAttributeNS</a></p><p><a href=/js/element/shadowroot/>shadowRoot</a></p><p><a href=/js/element/slot/>slot</a></p><p><a href=/js/element/tagname/>tagName</a></p><p><a href=/js/element/toggleattribute/>toggleAttribute</a></p></div><h2 id=event><a href=#event>Event</a></h2><div class=margin><p><a href=/js/event/bubbles/>bubbles</a></p><p><a href=/js/event/cancelable/>cancelable</a></p><p><a href=/js/event/composed/>composed</a></p><p><a href=/js/event/composedpath/>composedPath</a></p><p><a href=/js/event/currenttarget/>currentTarget</a></p><p><a href=/js/event/defaultprevented/>defaultPrevented</a></p><p><a href=/js/event/event/>Event</a></p><p><a href=/js/event/eventphase/>eventPhase</a></p><p><a href=/js/event/istrusted/>isTrusted</a></p><p><a href=/js/event/preventdefault/>preventDefault</a></p><p><a href=/js/event/stopimmediatepropagation/>stopImmediatePropagation</a></p><p><a href=/js/event/stoppropagation/>stopPropagation</a></p><p><a href=/js/event/target/>target</a></p><p><a href=/js/event/timestamp/>timeStamp</a></p><p><a href=/js/event/type/>type</a></p></div><h2 id=eventtarget><a href=#eventtarget>EventTarget</a></h2><div class=margin><p><a href=/js/eventtarget/addeventlistener/>addEventListener</a></p><p><a href=/js/eventtarget/dispatchevent/>dispatchEvent</a></p><p><a href=/js/eventtarget/eventtarget/>EventTarget</a></p><p><a href=/js/eventtarget/removeeventlistener/>removeEventListener</a></p></div><h2 id=htmlcollection><a href=#htmlcollection>HTMLCollection</a></h2><div class=margin><p><a href=/js/htmlcollection/item/>item</a></p><p><a href=/js/htmlcollection/length/>length</a></p><p><a href=/js/htmlcollection/nameditem/>namedItem</a></p></div><h2 id=htmldialogelement><a href=#htmldialogelement>HTMLDialogElement</a></h2><div class=margin><p><a href=/js/htmldialogelement/close/>close</a></p><p><a href=/js/htmldialogelement/open/>open</a></p><p><a href=/js/htmldialogelement/returnvalue/>returnValue</a></p><p><a href=/js/htmldialogelement/show/>show</a></p><p><a href=/js/htmldialogelement/showmodal/>showModal</a></p></div><h2 id=htmlvideoelement><a href=#htmlvideoelement>HTMLVideoElement</a></h2><div class=margin><p><a href=/js/htmlvideoelement/autopictureinpicture/>autoPictureInPicture</a></p><p><a href=/js/htmlvideoelement/disablepictureinpicture/>disablePictureInPicture</a></p><p><a href=/js/htmlvideoelement/requestpictureinpicture/>requestPictureInPicture</a></p></div><h2 id=iterations><a href=#iterations>Iterations</a></h2><div class=margin><p><a href=/js/iterations/do-while/>do-while</a></p><p><a href=/js/iterations/for/>for</a></p><p><a href=/js/iterations/for-await-of/>for-await-of</a></p><p><a href=/js/iterations/for-in/>for-in</a></p><p><a href=/js/iterations/for-of/>for-of</a></p><p><a href=/js/iterations/while/>while</a></p></div><h2 id=mutationobserver><a href=#mutationobserver>MutationObserver</a></h2><div class=margin><p><a href=/js/mutationobserver/disconnect/>disconnect</a></p><p><a href=/js/mutationobserver/mutationobserver/>MutationObserver</a></p><p><a href=/js/mutationobserver/observe/>observe</a></p><p><a href=/js/mutationobserver/takerecords/>takeRecords</a></p></div><h2 id=mutationrecord><a href=#mutationrecord>MutationRecord</a></h2><div class=margin><p><a href=/js/mutationrecord/addednodes/>addedNodes</a></p><p><a href=/js/mutationrecord/attributename/>attributeName</a></p><p><a href=/js/mutationrecord/attributenamespace/>attributeNamespace</a></p><p><a href=/js/mutationrecord/nextsibling/>nextSibling</a></p><p><a href=/js/mutationrecord/oldvalue/>oldValue</a></p><p><a href=/js/mutationrecord/previoussibling/>previousSibling</a></p><p><a href=/js/mutationrecord/removednodes/>removedNodes</a></p><p><a href=/js/mutationrecord/target/>target</a></p><p><a href=/js/mutationrecord/type/>type</a></p></div><h2 id=node><a href=#node>Node</a></h2><div class=margin><p><a href=/js/node/baseuri/>baseURI</a></p><p><a href=/js/node/childnodes/>childNodes</a></p><p><a href=/js/node/clonenode/>cloneNode</a></p><p><a href=/js/node/comparedocumentposition/>compareDocumentPosition</a></p><p><a href=/js/node/contains/>contains</a></p><p><a href=/js/node/firstchild/>firstChild</a></p><p><a href=/js/node/getrootnode/>getRootNode</a></p><p><a href=/js/node/haschildnodes/>hasChildNodes</a></p><p><a href=/js/node/isconnected/>isConnected</a></p><p><a href=/js/node/isequalnode/>isEqualNode</a></p><p><a href=/js/node/lastchild/>lastChild</a></p><p><a href=/js/node/nextsibling/>nextSibling</a></p><p><a href=/js/node/nodename/>nodeName</a></p><p><a href=/js/node/nodetype/>nodeType</a></p><p><a href=/js/node/normalize/>normalize</a></p><p><a href=/js/node/ownerdocument/>ownerDocument</a></p><p><a href=/js/node/parentelement/>parentElement</a></p><p><a href=/js/node/parentnode/>parentNode</a></p><p><a href=/js/node/previoussibling/>previousSibling</a></p></div><h2 id=nodelist><a href=#nodelist>NodeList</a></h2><div class=margin><p><a href=/js/nodelist/item/>item</a></p><p><a href=/js/nodelist/length/>length</a></p></div><h2 id=nondocumenttypechildnode><a href=#nondocumenttypechildnode>NonDocumentTypeChildNode</a></h2><div class=margin><p><a href=/js/nondocumenttypechildnode/nextelementsibling/>nextElementSibling</a></p><p><a href=/js/nondocumenttypechildnode/previouselementsibling/>previousElementSibling</a></p></div><h2 id=nonelementparentnode><a href=#nonelementparentnode>NonElementParentNode</a></h2><div class=margin><p><a href=/js/nonelementparentnode/getelementbyid/>getElementById</a></p></div><h2 id=parentnode><a href=#parentnode>ParentNode</a></h2><div class=margin><p><a href=/js/parentnode/append/>append</a></p><p><a href=/js/parentnode/children/>children</a></p><p><a href=/js/parentnode/firstelementchild/>firstElementChild</a></p><p><a href=/js/parentnode/lastelementchild/>lastElementChild</a></p><p><a href=/js/parentnode/prepend/>prepend</a></p><p><a href=/js/parentnode/queryselector/>querySelector</a></p><p><a href=/js/parentnode/queryselectorall/>querySelectorAll</a></p><p><a href=/js/parentnode/replacechildren/>replaceChildren</a></p></div><h2 id=prompts><a href=#prompts>Prompts</a></h2><div class=margin><p><a href=/js/prompts/alert/>alert</a></p><p><a href=/js/prompts/confirm/>confirm</a></p><p><a href=/js/prompts/prompt/>prompt</a></p></div><h2 id=range><a href=#range>Range</a></h2><div class=margin><p><a href=/js/range/commonancestorcontainer/>commonAncestorContainer</a></p><p><a href=/js/range/comparepoint/>comparePoint</a></p><p><a href=/js/range/createcontextualfragment/>createContextualFragment</a></p><p><a href=/js/range/intersectsnode/>intersectsNode</a></p><p><a href=/js/range/range/>Range</a></p></div><h2 id=slottable><a href=#slottable>Slottable</a></h2><div class=margin><p><a href=/js/slottable/assignedslot/>assignedSlot</a></p></div><h2 id=statements><a href=#statements>Statements</a></h2><div class=margin><p><a href=/js/statements/if/>if</a></p><p><a href=/js/statements/switch/>switch</a></p><p><a href=/js/statements/try/>try</a></p></div><h2 id=staticrange><a href=#staticrange>StaticRange</a></h2><div class=margin><p><a href=/js/staticrange/staticrange/>StaticRange</a></p></div><h2 id=text><a href=#text>Text</a></h2><div class=margin><p><a href=/js/text/splittext/>splitText</a></p><p><a href=/js/text/text/>Text</a></p><p><a href=/js/text/wholetext/>wholeText</a></p></div><h2 id=other><a href=#other>Other</a></h2><div class=margin><p><a href=/js/array/>Array</a></p><p><a href=/js/comments/>Comments</a></p><p><a href=/js/date/>Date</a></p><p><a href=/js/enable/>Enable</a></p><p><a href=/js/functions/>Functions</a></p><p><a href=/js/infinity/>Infinity</a></p><p><a href=/js/print/>print</a></p></div></div><div class=nav-h1><a id=nav-switch-php>PHP</a></div><div id=nav-content-php><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/php/>Overview</a></p></div><h2 id=array><a href=#array>Array</a></h2><div class=margin><p><a href=/php/array/array/>array</a></p><p><a href=/php/array/array_change_key_case/>array_change_key_case</a></p><p><a href=/php/array/array_chunk/>array_chunk</a></p><p><a href=/php/array/array_column/>array_column</a></p><p><a href=/php/array/array_combine/>array_combine</a></p><p><a href=/php/array/array_count_values/>array_count_values</a></p><p><a href=/php/array/array_diff/>array_diff</a></p><p><a href=/php/array/array_diff_assoc/>array_diff_assoc</a></p><p><a href=/php/array/array_diff_key/>array_diff_key</a></p><p><a href=/php/array/array_diff_uassoc/>array_diff_uassoc</a></p><p><a href=/php/array/array_diff_ukey/>array_diff_ukey</a></p><p><a href=/php/array/array_fill/>array_fill</a></p><p><a href=/php/array/array_fill_keys/>array_fill_keys</a></p><p><a href=/php/array/array_filter/>array_filter</a></p><p><a href=/php/array/array_flip/>array_flip</a></p><p><a href=/php/array/array_intersect/>array_intersect</a></p><p><a href=/php/array/array_intersect_assoc/>array_intersect_assoc</a></p><p><a href=/php/array/array_intersect_key/>array_intersect_key</a></p><p><a href=/php/array/array_intersect_uassoc/>array_intersect_uassoc</a></p><p><a href=/php/array/array_intersect_ukey/>array_intersect_ukey</a></p><p><a href=/php/array/array_key_exists/>array_key_exists</a></p><p><a href=/php/array/array_key_first/>array_key_first</a></p><p><a href=/php/array/array_key_last/>array_key_last</a></p><p><a href=/php/array/array_keys/>array_keys</a></p><p><a href=/php/array/array_map/>array_map</a></p><p><a href=/php/array/array_merge/>array_merge</a></p><p><a href=/php/array/array_merge_recursive/>array_merge_recursive</a></p><p><a href=/php/array/array_multisort/>array_multisort</a></p><p><a href=/php/array/array_pad/>array_pad</a></p><p><a href=/php/array/array_pop/>array_pop</a></p><p><a href=/php/array/array_product/>array_product</a></p><p><a href=/php/array/array_push/>array_push</a></p><p><a href=/php/array/array_rand/>array_rand</a></p><p><a href=/php/array/array_reduce/>array_reduce</a></p><p><a href=/php/array/array_replace/>array_replace</a></p><p><a href=/php/array/array_replace_recursive/>array_replace_recursive</a></p><p><a href=/php/array/array_reverse/>array_reverse</a></p><p><a href=/php/array/array_search/>array_search</a></p><p><a href=/php/array/array_shift/>array_shift</a></p><p><a href=/php/array/array_slice/>array_slice</a></p><p><a href=/php/array/array_splice/>array_splice</a></p><p><a href=/php/array/array_sum/>array_sum</a></p><p><a href=/php/array/array_udiff/>array_udiff</a></p><p><a href=/php/array/array_udiff_assoc/>array_udiff_assoc</a></p><p><a href=/php/array/array_udiff_uassoc/>array_udiff_uassoc</a></p><p><a href=/php/array/array_uintersect/>array_uintersect</a></p><p><a href=/php/array/array_uintersect_assoc/>array_uintersect_assoc</a></p><p><a href=/php/array/array_uintersect_uassoc/>array_uintersect_uassoc</a></p><p><a href=/php/array/array_unique/>array_unique</a></p><p><a href=/php/array/array_unshift/>array_unshift</a></p><p><a href=/php/array/array_values/>array_values</a></p><p><a href=/php/array/array_walk/>array_walk</a></p><p><a href=/php/array/array_walk_recursive/>array_walk_recursive</a></p><p><a href=/php/array/arsort/>arsort</a></p><p><a href=/php/array/asort/>asort</a></p><p><a href=/php/array/compact/>compact</a></p><p><a href=/php/array/count/>count</a></p><p><a href=/php/array/current/>current</a></p><p><a href=/php/array/end/>end</a></p><p><a href=/php/array/extract/>extract</a></p><p><a href=/php/array/in_array/>in_array</a></p><p><a href=/php/array/key/>key</a></p><p><a href=/php/array/key_exists/>key_exists</a></p><p><a href=/php/array/krsort/>krsort</a></p><p><a href=/php/array/ksort/>ksort</a></p><p><a href=/php/array/list/>list</a></p><p><a href=/php/array/natcasesort/>natcasesort</a></p><p><a href=/php/array/natsort/>natsort</a></p><p><a href=/php/array/next/>next</a></p><p><a href=/php/array/pos/>pos</a></p><p><a href=/php/array/prev/>prev</a></p><p><a href=/php/array/range/>range</a></p><p><a href=/php/array/reset/>reset</a></p><p><a href=/php/array/rsort/>rsort</a></p><p><a href=/php/array/shuffle/>shuffle</a></p><p><a href=/php/array/sizeof/>sizeof</a></p><p><a href=/php/array/sort/>sort</a></p><p><a href=/php/array/uasort/>uasort</a></p><p><a href=/php/array/uksort/>uksort</a></p><p><a href=/php/array/usort/>usort</a></p></div><h2 id=calendar><a href=#calendar>Calendar</a></h2><div class=margin><p><a href=/php/calendar/cal_days_in_month/>cal_days_in_month</a></p><p><a href=/php/calendar/cal_from_jd/>cal_from_jd</a></p><p><a href=/php/calendar/cal_info/>cal_info</a></p><p><a href=/php/calendar/cal_to_jd/>cal_to_jd</a></p><p><a href=/php/calendar/easter_date/>easter_date</a></p><p><a href=/php/calendar/easter_days/>easter_days</a></p><p><a href=/php/calendar/frenchtojd/>frenchtojd</a></p><p><a href=/php/calendar/gregoriantojd/>gregoriantojd</a></p><p><a href=/php/calendar/jddayofweek/>jddayofweek</a></p><p><a href=/php/calendar/jdmonthname/>jdmonthname</a></p><p><a href=/php/calendar/jdtofrench/>jdtofrench</a></p><p><a href=/php/calendar/jdtogregorian/>jdtogregorian</a></p><p><a href=/php/calendar/jdtojewish/>jdtojewish</a></p><p><a href=/php/calendar/jdtojulian/>jdtojulian</a></p><p><a href=/php/calendar/jdtounix/>jdtounix</a></p><p><a href=/php/calendar/jewishtojd/>jewishtojd</a></p><p><a href=/php/calendar/juliantojd/>juliantojd</a></p><p><a href=/php/calendar/unixtojd/>unixtojd</a></p></div><h2 id=class-/-object><a href=#class-/-object>Class / Object</a></h2><div class=margin><p><a href=/php/class-object/class_alias/>class_alias</a></p><p><a href=/php/class-object/class_exists/>class_exists</a></p><p><a href=/php/class-object/get_called_class/>get_called_class</a></p><p><a href=/php/class-object/get_class/>get_class</a></p><p><a href=/php/class-object/get_class_methods/>get_class_methods</a></p><p><a href=/php/class-object/get_class_vars/>get_class_vars</a></p><p><a href=/php/class-object/get_declared_classes/>get_declared_classes</a></p><p><a href=/php/class-object/get_declared_interfaces/>get_declared_interfaces</a></p><p><a href=/php/class-object/get_declared_traits/>get_declared_traits</a></p><p><a href=/php/class-object/get_object_vars/>get_object_vars</a></p><p><a href=/php/class-object/get_parent_class/>get_parent_class</a></p><p><a href=/php/class-object/interface_exists/>interface_exists</a></p><p><a href=/php/class-object/is_a/>is_a</a></p><p><a href=/php/class-object/is_subclass_of/>is_subclass_of</a></p><p><a href=/php/class-object/method_exists/>method_exists</a></p><p><a href=/php/class-object/property_exists/>property_exists</a></p><p><a href=/php/class-object/trait_exists/>trait_exists</a></p></div><h2 id=ctype><a href=#ctype>Ctype</a></h2><div class=margin><p><a href=/php/ctype/ctype_alnum/>ctype_alnum</a></p><p><a href=/php/ctype/ctype_alpha/>ctype_alpha</a></p><p><a href=/php/ctype/ctype_cntrl/>ctype_cntrl</a></p><p><a href=/php/ctype/ctype_digit/>ctype_digit</a></p><p><a href=/php/ctype/ctype_graph/>ctype_graph</a></p><p><a href=/php/ctype/ctype_lower/>ctype_lower</a></p><p><a href=/php/ctype/ctype_print/>ctype_print</a></p><p><a href=/php/ctype/ctype_punct/>ctype_punct</a></p><p><a href=/php/ctype/ctype_space/>ctype_space</a></p><p><a href=/php/ctype/ctype_upper/>ctype_upper</a></p><p><a href=/php/ctype/ctype_xdigit/>ctype_xdigit</a></p></div><h2 id=curl><a href=#curl>cURL</a></h2><div class=margin><p><a href=/php/curl/curl_close/>curl_close</a></p><p><a href=/php/curl/curl_copy_handle/>curl_copy_handle</a></p><p><a href=/php/curl/curl_errno/>curl_errno</a></p><p><a href=/php/curl/curl_error/>curl_error</a></p><p><a href=/php/curl/curl_escape/>curl_escape</a></p><p><a href=/php/curl/curl_exec/>curl_exec</a></p><p><a href=/php/curl/curl_getinfo/>curl_getinfo</a></p><p><a href=/php/curl/curl_init/>curl_init</a></p><p><a href=/php/curl/curl_multi_add_handle/>curl_multi_add_handle</a></p><p><a href=/php/curl/curl_multi_close/>curl_multi_close</a></p><p><a href=/php/curl/curl_multi_errno/>curl_multi_errno</a></p><p><a href=/php/curl/curl_multi_exec/>curl_multi_exec</a></p><p><a href=/php/curl/curl_multi_getcontent/>curl_multi_getcontent</a></p><p><a href=/php/curl/curl_multi_info_read/>curl_multi_info_read</a></p><p><a href=/php/curl/curl_multi_init/>curl_multi_init</a></p><p><a href=/php/curl/curl_multi_remove_handle/>curl_multi_remove_handle</a></p><p><a href=/php/curl/curl_multi_select/>curl_multi_select</a></p><p><a href=/php/curl/curl_multi_setopt/>curl_multi_setopt</a></p><p><a href=/php/curl/curl_multi_strerror/>curl_multi_strerror</a></p><p><a href=/php/curl/curl_pause/>curl_pause</a></p><p><a href=/php/curl/curl_reset/>curl_reset</a></p><p><a href=/php/curl/curl_setopt/>curl_setopt</a></p><p><a href=/php/curl/curl_setopt_array/>curl_setopt_array</a></p><p><a href=/php/curl/curl_share_close/>curl_share_close</a></p><p><a href=/php/curl/curl_share_errno/>curl_share_errno</a></p><p><a href=/php/curl/curl_share_init/>curl_share_init</a></p><p><a href=/php/curl/curl_share_setopt/>curl_share_setopt</a></p><p><a href=/php/curl/curl_share_strerror/>curl_share_strerror</a></p><p><a href=/php/curl/curl_strerror/>curl_strerror</a></p><p><a href=/php/curl/curl_unescape/>curl_unescape</a></p><p><a href=/php/curl/curl_upkeep/>curl_upkeep</a></p><p><a href=/php/curl/curl_version/>curl_version</a></p></div><h2 id=date-/-time><a href=#date-/-time>Date / Time</a></h2><div class=margin><p><a href=/php/date-time/checkdate/>checkdate</a></p><p><a href=/php/date-time/date/>date</a></p><p><a href=/php/date-time/date_add/>date_add</a></p><p><a href=/php/date-time/date_create/>date_create</a></p><p><a href=/php/date-time/date_create_from_format/>date_create_from_format</a></p><p><a href=/php/date-time/date_create_immutable/>date_create_immutable</a></p><p><a href=/php/date-time/date_create_immutable_from_format/>date_create_immutable_from_format</a></p><p><a href=/php/date-time/date_date_set/>date_date_set</a></p><p><a href=/php/date-time/date_default_timezone_get/>date_default_timezone_get</a></p><p><a href=/php/date-time/date_default_timezone_set/>date_default_timezone_set</a></p><p><a href=/php/date-time/date_diff/>date_diff</a></p><p><a href=/php/date-time/date_format/>date_format</a></p><p><a href=/php/date-time/date_get_last_errors/>date_get_last_errors</a></p><p><a href=/php/date-time/date_interval_create_from_date_string/>date_interval_create_from_date_string</a></p><p><a href=/php/date-time/date_interval_format/>date_interval_format</a></p><p><a href=/php/date-time/date_isodate_set/>date_isodate_set</a></p><p><a href=/php/date-time/date_modify/>date_modify</a></p><p><a href=/php/date-time/date_offset_get/>date_offset_get</a></p><p><a href=/php/date-time/date_parse/>date_parse</a></p><p><a href=/php/date-time/date_parse_from_format/>date_parse_from_format</a></p><p><a href=/php/date-time/date_sub/>date_sub</a></p><p><a href=/php/date-time/date_sun_info/>date_sun_info</a></p><p><a href=/php/date-time/date_sunrise/>date_sunrise</a></p><p><a href=/php/date-time/date_sunset/>date_sunset</a></p><p><a href=/php/date-time/date_time_set/>date_time_set</a></p><p><a href=/php/date-time/date_timestamp_get/>date_timestamp_get</a></p><p><a href=/php/date-time/date_timestamp_set/>date_timestamp_set</a></p><p><a href=/php/date-time/date_timezone_get/>date_timezone_get</a></p><p><a href=/php/date-time/date_timezone_set/>date_timezone_set</a></p><p><a href=/php/date-time/getdate/>getdate</a></p><p><a href=/php/date-time/gettimeofday/>gettimeofday</a></p><p><a href=/php/date-time/gmdate/>gmdate</a></p><p><a href=/php/date-time/gmmktime/>gmmktime</a></p><p><a href=/php/date-time/gmstrftime/>gmstrftime</a></p><p><a href=/php/date-time/idate/>idate</a></p><p><a href=/php/date-time/localtime/>localtime</a></p><p><a href=/php/date-time/microtime/>microtime</a></p><p><a href=/php/date-time/mktime/>mktime</a></p><p><a href=/php/date-time/strftime/>strftime</a></p><p><a href=/php/date-time/strptime/>strptime</a></p><p><a href=/php/date-time/strtotime/>strtotime</a></p><p><a href=/php/date-time/time/>time</a></p><p><a href=/php/date-time/timezone_abbreviations_list/>timezone_abbreviations_list</a></p><p><a href=/php/date-time/timezone_identifiers_list/>timezone_identifiers_list</a></p><p><a href=/php/date-time/timezone_location_get/>timezone_location_get</a></p><p><a href=/php/date-time/timezone_name_from_abbr/>timezone_name_from_abbr</a></p><p><a href=/php/date-time/timezone_name_get/>timezone_name_get</a></p><p><a href=/php/date-time/timezone_offset_get/>timezone_offset_get</a></p><p><a href=/php/date-time/timezone_open/>timezone_open</a></p><p><a href=/php/date-time/timezone_transitions_get/>timezone_transitions_get</a></p><p><a href=/php/date-time/timezone_version_get/>timezone_version_get</a></p></div><h2 id=directory><a href=#directory>Directory</a></h2><div class=margin><p><a href=/php/directory/chdir/>chdir</a></p><p><a href=/php/directory/chroot/>chroot</a></p><p><a href=/php/directory/closedir/>closedir</a></p><p><a href=/php/directory/dir/>dir</a></p><p><a href=/php/directory/getcwd/>getcwd</a></p><p><a href=/php/directory/opendir/>opendir</a></p><p><a href=/php/directory/readdir/>readdir</a></p><p><a href=/php/directory/rewinddir/>rewinddir</a></p><p><a href=/php/directory/scandir/>scandir</a></p></div><h2 id=error-handling><a href=#error-handling>Error Handling</a></h2><div class=margin><p><a href=/php/error-handling/debug_backtrace/>debug_backtrace</a></p><p><a href=/php/error-handling/debug_print_backtrace/>debug_print_backtrace</a></p><p><a href=/php/error-handling/error_clear_last/>error_clear_last</a></p><p><a href=/php/error-handling/error_get_last/>error_get_last</a></p><p><a href=/php/error-handling/error_log/>error_log</a></p><p><a href=/php/error-handling/error_reporting/>error_reporting</a></p><p><a href=/php/error-handling/restore_error_handler/>restore_error_handler</a></p><p><a href=/php/error-handling/restore_exception_handler/>restore_exception_handler</a></p><p><a href=/php/error-handling/set_error_handler/>set_error_handler</a></p><p><a href=/php/error-handling/set_exception_handler/>set_exception_handler</a></p><p><a href=/php/error-handling/trigger_error/>trigger_error</a></p><p><a href=/php/error-handling/user_error/>user_error</a></p></div><h2 id=filesystem><a href=#filesystem>Filesystem</a></h2><div class=margin><p><a href=/php/filesystem/basename/>basename</a></p><p><a href=/php/filesystem/chgrp/>chgrp</a></p><p><a href=/php/filesystem/chmod/>chmod</a></p><p><a href=/php/filesystem/chown/>chown</a></p><p><a href=/php/filesystem/clearstatcache/>clearstatcache</a></p><p><a href=/php/filesystem/copy/>copy</a></p><p><a href=/php/filesystem/dirname/>dirname</a></p><p><a href=/php/filesystem/disk_free_space/>disk_free_space</a></p><p><a href=/php/filesystem/disk_total_space/>disk_total_space</a></p><p><a href=/php/filesystem/diskfreespace/>diskfreespace</a></p><p><a href=/php/filesystem/fclose/>fclose</a></p><p><a href=/php/filesystem/feof/>feof</a></p><p><a href=/php/filesystem/fflush/>fflush</a></p><p><a href=/php/filesystem/fgetc/>fgetc</a></p><p><a href=/php/filesystem/fgetcsv/>fgetcsv</a></p><p><a href=/php/filesystem/fgets/>fgets</a></p><p><a href=/php/filesystem/file/>file</a></p><p><a href=/php/filesystem/file_exists/>file_exists</a></p><p><a href=/php/filesystem/file_get_contents/>file_get_contents</a></p><p><a href=/php/filesystem/file_put_contents/>file_put_contents</a></p><p><a href=/php/filesystem/fileatime/>fileatime</a></p><p><a href=/php/filesystem/filectime/>filectime</a></p><p><a href=/php/filesystem/filegroup/>filegroup</a></p><p><a href=/php/filesystem/fileinode/>fileinode</a></p><p><a href=/php/filesystem/filemtime/>filemtime</a></p><p><a href=/php/filesystem/fileowner/>fileowner</a></p><p><a href=/php/filesystem/fileperms/>fileperms</a></p><p><a href=/php/filesystem/filesize/>filesize</a></p><p><a href=/php/filesystem/filetype/>filetype</a></p><p><a href=/php/filesystem/flock/>flock</a></p><p><a href=/php/filesystem/fnmatch/>fnmatch</a></p><p><a href=/php/filesystem/fopen/>fopen</a></p><p><a href=/php/filesystem/fpassthru/>fpassthru</a></p><p><a href=/php/filesystem/fputcsv/>fputcsv</a></p><p><a href=/php/filesystem/fputs/>fputs</a></p><p><a href=/php/filesystem/fread/>fread</a></p><p><a href=/php/filesystem/fscanf/>fscanf</a></p><p><a href=/php/filesystem/fseek/>fseek</a></p><p><a href=/php/filesystem/fstat/>fstat</a></p><p><a href=/php/filesystem/ftell/>ftell</a></p><p><a href=/php/filesystem/ftruncate/>ftruncate</a></p><p><a href=/php/filesystem/fwrite/>fwrite</a></p><p><a href=/php/filesystem/glob/>glob</a></p><p><a href=/php/filesystem/is_dir/>is_dir</a></p><p><a href=/php/filesystem/is_executable/>is_executable</a></p><p><a href=/php/filesystem/is_file/>is_file</a></p><p><a href=/php/filesystem/is_link/>is_link</a></p><p><a href=/php/filesystem/is_readable/>is_readable</a></p><p><a href=/php/filesystem/is_uploaded_file/>is_uploaded_file</a></p><p><a href=/php/filesystem/is_writable/>is_writable</a></p><p><a href=/php/filesystem/is_writeable/>is_writeable</a></p><p><a href=/php/filesystem/lchgrp/>lchgrp</a></p><p><a href=/php/filesystem/lchown/>lchown</a></p><p><a href=/php/filesystem/link/>link</a></p><p><a href=/php/filesystem/linkinfo/>linkinfo</a></p><p><a href=/php/filesystem/lstat/>lstat</a></p><p><a href=/php/filesystem/mkdir/>mkdir</a></p><p><a href=/php/filesystem/move_uploaded_file/>move_uploaded_file</a></p><p><a href=/php/filesystem/pathinfo/>pathinfo</a></p><p><a href=/php/filesystem/pclose/>pclose</a></p><p><a href=/php/filesystem/popen/>popen</a></p><p><a href=/php/filesystem/readfile/>readfile</a></p><p><a href=/php/filesystem/readlink/>readlink</a></p><p><a href=/php/filesystem/realpath/>realpath</a></p><p><a href=/php/filesystem/realpath_cache_get/>realpath_cache_get</a></p><p><a href=/php/filesystem/realpath_cache_size/>realpath_cache_size</a></p><p><a href=/php/filesystem/rename/>rename</a></p><p><a href=/php/filesystem/rewind/>rewind</a></p><p><a href=/php/filesystem/rmdir/>rmdir</a></p><p><a href=/php/filesystem/set_file_buffer/>set_file_buffer</a></p><p><a href=/php/filesystem/stat/>stat</a></p><p><a href=/php/filesystem/symlink/>symlink</a></p><p><a href=/php/filesystem/tempnam/>tempnam</a></p><p><a href=/php/filesystem/tmpfile/>tmpfile</a></p><p><a href=/php/filesystem/touch/>touch</a></p><p><a href=/php/filesystem/umask/>umask</a></p><p><a href=/php/filesystem/unlink/>unlink</a></p></div><h2 id=filter><a href=#filter>Filter</a></h2><div class=margin><p><a href=/php/filter/filter_has_var/>filter_has_var</a></p><p><a href=/php/filter/filter_id/>filter_id</a></p><p><a href=/php/filter/filter_input/>filter_input</a></p><p><a href=/php/filter/filter_input_array/>filter_input_array</a></p><p><a href=/php/filter/filter_list/>filter_list</a></p><p><a href=/php/filter/filter_var/>filter_var</a></p><p><a href=/php/filter/filter_var_array/>filter_var_array</a></p></div><h2 id=function-handling><a href=#function-handling>Function Handling</a></h2><div class=margin><p><a href=/php/function-handling/call_user_func/>call_user_func</a></p><p><a href=/php/function-handling/call_user_func_array/>call_user_func_array</a></p><p><a href=/php/function-handling/forward_static_call/>forward_static_call</a></p><p><a href=/php/function-handling/forward_static_call_array/>forward_static_call_array</a></p><p><a href=/php/function-handling/func_get_arg/>func_get_arg</a></p><p><a href=/php/function-handling/func_get_args/>func_get_args</a></p><p><a href=/php/function-handling/func_num_args/>func_num_args</a></p><p><a href=/php/function-handling/function_exists/>function_exists</a></p><p><a href=/php/function-handling/get_defined_functions/>get_defined_functions</a></p><p><a href=/php/function-handling/register_shutdown_function/>register_shutdown_function</a></p><p><a href=/php/function-handling/register_tick_function/>register_tick_function</a></p><p><a href=/php/function-handling/unregister_tick_function/>unregister_tick_function</a></p></div><h2 id=hash><a href=#hash>Hash</a></h2><div class=margin><p><a href=/php/hash/hash/>hash</a></p><p><a href=/php/hash/hash_algos/>hash_algos</a></p><p><a href=/php/hash/hash_copy/>hash_copy</a></p><p><a href=/php/hash/hash_equals/>hash_equals</a></p><p><a href=/php/hash/hash_file/>hash_file</a></p><p><a href=/php/hash/hash_final/>hash_final</a></p><p><a href=/php/hash/hash_hkdf/>hash_hkdf</a></p><p><a href=/php/hash/hash_hmac/>hash_hmac</a></p><p><a href=/php/hash/hash_hmac_algos/>hash_hmac_algos</a></p><p><a href=/php/hash/hash_hmac_file/>hash_hmac_file</a></p><p><a href=/php/hash/hash_init/>hash_init</a></p><p><a href=/php/hash/hash_pbkdf2/>hash_pbkdf2</a></p><p><a href=/php/hash/hash_update/>hash_update</a></p><p><a href=/php/hash/hash_update_file/>hash_update_file</a></p><p><a href=/php/hash/hash_update_stream/>hash_update_stream</a></p></div><h2 id=image><a href=#image>Image</a></h2><div class=margin><p><a href=/php/image/gd_info/>gd_info</a></p><p><a href=/php/image/getimagesize/>getimagesize</a></p><p><a href=/php/image/getimagesizefromstring/>getimagesizefromstring</a></p><p><a href=/php/image/image_type_to_extension/>image_type_to_extension</a></p><p><a href=/php/image/image_type_to_mime_type/>image_type_to_mime_type</a></p><p><a href=/php/image/imageaffine/>imageaffine</a></p><p><a href=/php/image/imageaffinematrixconcat/>imageaffinematrixconcat</a></p><p><a href=/php/image/imageaffinematrixget/>imageaffinematrixget</a></p><p><a href=/php/image/imagealphablending/>imagealphablending</a></p><p><a href=/php/image/imageantialias/>imageantialias</a></p><p><a href=/php/image/imagearc/>imagearc</a></p><p><a href=/php/image/imageavif/>imageavif</a></p><p><a href=/php/image/imagebmp/>imagebmp</a></p><p><a href=/php/image/imagechar/>imagechar</a></p><p><a href=/php/image/imagecharup/>imagecharup</a></p><p><a href=/php/image/imagecolorallocate/>imagecolorallocate</a></p><p><a href=/php/image/imagecolorallocatealpha/>imagecolorallocatealpha</a></p><p><a href=/php/image/imagecolorat/>imagecolorat</a></p><p><a href=/php/image/imagecolorclosest/>imagecolorclosest</a></p><p><a href=/php/image/imagecolorclosestalpha/>imagecolorclosestalpha</a></p><p><a href=/php/image/imagecolorclosesthwb/>imagecolorclosesthwb</a></p><p><a href=/php/image/imagecolordeallocate/>imagecolordeallocate</a></p><p><a href=/php/image/imagecolorexact/>imagecolorexact</a></p><p><a href=/php/image/imagecolorexactalpha/>imagecolorexactalpha</a></p><p><a href=/php/image/imagecolormatch/>imagecolormatch</a></p><p><a href=/php/image/imagecolorresolve/>imagecolorresolve</a></p><p><a href=/php/image/imagecolorresolvealpha/>imagecolorresolvealpha</a></p><p><a href=/php/image/imagecolorset/>imagecolorset</a></p><p><a href=/php/image/imagecolorsforindex/>imagecolorsforindex</a></p><p><a href=/php/image/imagecolorstotal/>imagecolorstotal</a></p><p><a href=/php/image/imagecolortransparent/>imagecolortransparent</a></p><p><a href=/php/image/imageconvolution/>imageconvolution</a></p><p><a href=/php/image/imagecopy/>imagecopy</a></p><p><a href=/php/image/imagecopymerge/>imagecopymerge</a></p><p><a href=/php/image/imagecopymergegray/>imagecopymergegray</a></p><p><a href=/php/image/imagecopyresampled/>imagecopyresampled</a></p><p><a href=/php/image/imagecopyresized/>imagecopyresized</a></p><p><a href=/php/image/imagecreate/>imagecreate</a></p><p><a href=/php/image/imagecreatefromavif/>imagecreatefromavif</a></p><p><a href=/php/image/imagecreatefrombmp/>imagecreatefrombmp</a></p><p><a href=/php/image/imagecreatefromgif/>imagecreatefromgif</a></p><p><a href=/php/image/imagecreatefromjpeg/>imagecreatefromjpeg</a></p><p><a href=/php/image/imagecreatefrompng/>imagecreatefrompng</a></p><p><a href=/php/image/imagecreatefromstring/>imagecreatefromstring</a></p><p><a href=/php/image/imagecreatefromtga/>imagecreatefromtga</a></p><p><a href=/php/image/imagecreatefromwbmp/>imagecreatefromwbmp</a></p><p><a href=/php/image/imagecreatefromwebp/>imagecreatefromwebp</a></p><p><a href=/php/image/imagecreatefromxbm/>imagecreatefromxbm</a></p><p><a href=/php/image/imagecreatefromxpm/>imagecreatefromxpm</a></p><p><a href=/php/image/imagecreatetruecolor/>imagecreatetruecolor</a></p><p><a href=/php/image/imagecrop/>imagecrop</a></p><p><a href=/php/image/imagecropauto/>imagecropauto</a></p><p><a href=/php/image/imagedashedline/>imagedashedline</a></p><p><a href=/php/image/imagedestroy/>imagedestroy</a></p><p><a href=/php/image/imageellipse/>imageellipse</a></p><p><a href=/php/image/imagefill/>imagefill</a></p><p><a href=/php/image/imagefilledarc/>imagefilledarc</a></p><p><a href=/php/image/imagefilledellipse/>imagefilledellipse</a></p><p><a href=/php/image/imagefilledpolygon/>imagefilledpolygon</a></p><p><a href=/php/image/imagefilledrectangle/>imagefilledrectangle</a></p><p><a href=/php/image/imagefilltoborder/>imagefilltoborder</a></p><p><a href=/php/image/imagefilter/>imagefilter</a></p><p><a href=/php/image/imageflip/>imageflip</a></p><p><a href=/php/image/imagefontheight/>imagefontheight</a></p><p><a href=/php/image/imagefontwidth/>imagefontwidth</a></p><p><a href=/php/image/imageftbbox/>imageftbbox</a></p><p><a href=/php/image/imagefttext/>imagefttext</a></p><p><a href=/php/image/imagegammacorrect/>imagegammacorrect</a></p><p><a href=/php/image/imagegetclip/>imagegetclip</a></p><p><a href=/php/image/imagegetinterpolation/>imagegetinterpolation</a></p><p><a href=/php/image/imagegif/>imagegif</a></p><p><a href=/php/image/imageinterlace/>imageinterlace</a></p><p><a href=/php/image/imageistruecolor/>imageistruecolor</a></p><p><a href=/php/image/imagejpeg/>imagejpeg</a></p><p><a href=/php/image/imagelayereffect/>imagelayereffect</a></p><p><a href=/php/image/imageline/>imageline</a></p><p><a href=/php/image/imageloadfont/>imageloadfont</a></p><p><a href=/php/image/imageopenpolygon/>imageopenpolygon</a></p><p><a href=/php/image/imagepalettecopy/>imagepalettecopy</a></p><p><a href=/php/image/imagepalettetotruecolor/>imagepalettetotruecolor</a></p><p><a href=/php/image/imagepng/>imagepng</a></p><p><a href=/php/image/imagepolygon/>imagepolygon</a></p><p><a href=/php/image/imagerectangle/>imagerectangle</a></p><p><a href=/php/image/imageresolution/>imageresolution</a></p><p><a href=/php/image/imagerotate/>imagerotate</a></p><p><a href=/php/image/imagesavealpha/>imagesavealpha</a></p><p><a href=/php/image/imagescale/>imagescale</a></p><p><a href=/php/image/imagesetbrush/>imagesetbrush</a></p><p><a href=/php/image/imagesetclip/>imagesetclip</a></p><p><a href=/php/image/imagesetinterpolation/>imagesetinterpolation</a></p><p><a href=/php/image/imagesetpixel/>imagesetpixel</a></p><p><a href=/php/image/imagesetstyle/>imagesetstyle</a></p><p><a href=/php/image/imagesetthickness/>imagesetthickness</a></p><p><a href=/php/image/imagesettile/>imagesettile</a></p><p><a href=/php/image/imagestring/>imagestring</a></p><p><a href=/php/image/imagestringup/>imagestringup</a></p><p><a href=/php/image/imagesx/>imagesx</a></p><p><a href=/php/image/imagesy/>imagesy</a></p><p><a href=/php/image/imagetruecolortopalette/>imagetruecolortopalette</a></p><p><a href=/php/image/imagettfbbox/>imagettfbbox</a></p><p><a href=/php/image/imagettftext/>imagettftext</a></p><p><a href=/php/image/imagetypes/>imagetypes</a></p><p><a href=/php/image/imagewbmp/>imagewbmp</a></p><p><a href=/php/image/imagewebp/>imagewebp</a></p><p><a href=/php/image/imagexbm/>imagexbm</a></p><p><a href=/php/image/iptcembed/>iptcembed</a></p><p><a href=/php/image/iptcparse/>iptcparse</a></p></div><h2 id=mail><a href=#mail>Mail</a></h2><div class=margin><p><a href=/php/mail/mail/>mail</a></p></div><h2 id=math><a href=#math>Math</a></h2><div class=margin><p><a href=/php/math/abs/>abs</a></p><p><a href=/php/math/acos/>acos</a></p><p><a href=/php/math/acosh/>acosh</a></p><p><a href=/php/math/asin/>asin</a></p><p><a href=/php/math/asinh/>asinh</a></p><p><a href=/php/math/atan/>atan</a></p><p><a href=/php/math/atan2/>atan2</a></p><p><a href=/php/math/atanh/>atanh</a></p><p><a href=/php/math/base_convert/>base_convert</a></p><p><a href=/php/math/bindec/>bindec</a></p><p><a href=/php/math/ceil/>ceil</a></p><p><a href=/php/math/cos/>cos</a></p><p><a href=/php/math/cosh/>cosh</a></p><p><a href=/php/math/decbin/>decbin</a></p><p><a href=/php/math/dechex/>dechex</a></p><p><a href=/php/math/decoct/>decoct</a></p><p><a href=/php/math/deg2rad/>deg2rad</a></p><p><a href=/php/math/exp/>exp</a></p><p><a href=/php/math/expm1/>expm1</a></p><p><a href=/php/math/fdiv/>fdiv</a></p><p><a href=/php/math/floor/>floor</a></p><p><a href=/php/math/fmod/>fmod</a></p><p><a href=/php/math/hexdec/>hexdec</a></p><p><a href=/php/math/hypot/>hypot</a></p><p><a href=/php/math/intdiv/>intdiv</a></p><p><a href=/php/math/is_finite/>is_finite</a></p><p><a href=/php/math/is_infinite/>is_infinite</a></p><p><a href=/php/math/is_nan/>is_nan</a></p><p><a href=/php/math/log/>log</a></p><p><a href=/php/math/log10/>log10</a></p><p><a href=/php/math/log1p/>log1p</a></p><p><a href=/php/math/max/>max</a></p><p><a href=/php/math/min/>min</a></p><p><a href=/php/math/octdec/>octdec</a></p><p><a href=/php/math/pi/>pi</a></p><p><a href=/php/math/pow/>pow</a></p><p><a href=/php/math/rad2deg/>rad2deg</a></p><p><a href=/php/math/round/>round</a></p><p><a href=/php/math/sin/>sin</a></p><p><a href=/php/math/sinh/>sinh</a></p><p><a href=/php/math/sqrt/>sqrt</a></p><p><a href=/php/math/tan/>tan</a></p><p><a href=/php/math/tanh/>tanh</a></p></div><h2 id=miscellaneous><a href=#miscellaneous>Miscellaneous</a></h2><div class=margin><p><a href=/php/miscellaneous/__halt_compiler/>__halt_compiler</a></p><p><a href=/php/miscellaneous/connection_aborted/>connection_aborted</a></p><p><a href=/php/miscellaneous/connection_status/>connection_status</a></p><p><a href=/php/miscellaneous/constant/>constant</a></p><p><a href=/php/miscellaneous/define/>define</a></p><p><a href=/php/miscellaneous/defined/>defined</a></p><p><a href=/php/miscellaneous/die/>die</a></p><p><a href=/php/miscellaneous/eval/>eval</a></p><p><a href=/php/miscellaneous/exit/>exit</a></p><p><a href=/php/miscellaneous/highlight_file/>highlight_file</a></p><p><a href=/php/miscellaneous/highlight_string/>highlight_string</a></p><p><a href=/php/miscellaneous/hrtime/>hrtime</a></p><p><a href=/php/miscellaneous/ignore_user_abort/>ignore_user_abort</a></p><p><a href=/php/miscellaneous/pack/>pack</a></p><p><a href=/php/miscellaneous/php_strip_whitespace/>php_strip_whitespace</a></p><p><a href=/php/miscellaneous/show_source/>show_source</a></p><p><a href=/php/miscellaneous/sleep/>sleep</a></p><p><a href=/php/miscellaneous/sys_getloadavg/>sys_getloadavg</a></p><p><a href=/php/miscellaneous/time_nanosleep/>time_nanosleep</a></p><p><a href=/php/miscellaneous/time_sleep_until/>time_sleep_until</a></p><p><a href=/php/miscellaneous/uniqid/>uniqid</a></p><p><a href=/php/miscellaneous/unpack/>unpack</a></p><p><a href=/php/miscellaneous/usleep/>usleep</a></p></div><h2 id=network><a href=#network>Network</a></h2><div class=margin><p><a href=/php/network/checkdnsrr/>checkdnsrr</a></p><p><a href=/php/network/closelog/>closelog</a></p><p><a href=/php/network/dns_check_record/>dns_check_record</a></p><p><a href=/php/network/dns_get_mx/>dns_get_mx</a></p><p><a href=/php/network/dns_get_record/>dns_get_record</a></p><p><a href=/php/network/fsockopen/>fsockopen</a></p><p><a href=/php/network/gethostbyaddr/>gethostbyaddr</a></p><p><a href=/php/network/gethostbyname/>gethostbyname</a></p><p><a href=/php/network/gethostbynamel/>gethostbynamel</a></p><p><a href=/php/network/gethostname/>gethostname</a></p><p><a href=/php/network/getmxrr/>getmxrr</a></p><p><a href=/php/network/getprotobyname/>getprotobyname</a></p><p><a href=/php/network/getprotobynumber/>getprotobynumber</a></p><p><a href=/php/network/getservbyname/>getservbyname</a></p><p><a href=/php/network/getservbyport/>getservbyport</a></p><p><a href=/php/network/header/>header</a></p><p><a href=/php/network/header_register_callback/>header_register_callback</a></p><p><a href=/php/network/header_remove/>header_remove</a></p><p><a href=/php/network/headers_list/>headers_list</a></p><p><a href=/php/network/headers_sent/>headers_sent</a></p><p><a href=/php/network/http_response_code/>http_response_code</a></p><p><a href=/php/network/inet_ntop/>inet_ntop</a></p><p><a href=/php/network/inet_pton/>inet_pton</a></p><p><a href=/php/network/ip2long/>ip2long</a></p><p><a href=/php/network/long2ip/>long2ip</a></p><p><a href=/php/network/openlog/>openlog</a></p><p><a href=/php/network/pfsockopen/>pfsockopen</a></p><p><a href=/php/network/setcookie/>setcookie</a></p><p><a href=/php/network/setrawcookie/>setrawcookie</a></p><p><a href=/php/network/socket_get_status/>socket_get_status</a></p><p><a href=/php/network/socket_set_blocking/>socket_set_blocking</a></p><p><a href=/php/network/socket_set_timeout/>socket_set_timeout</a></p><p><a href=/php/network/syslog/>syslog</a></p></div><h2 id=options-/-information><a href=#options-/-information>Options / Information</a></h2><div class=margin><p><a href=/php/options-information/assert/>assert</a></p><p><a href=/php/options-information/assert_options/>assert_options</a></p><p><a href=/php/options-information/cli_get_process_title/>cli_get_process_title</a></p><p><a href=/php/options-information/cli_set_process_title/>cli_set_process_title</a></p><p><a href=/php/options-information/dl/>dl</a></p><p><a href=/php/options-information/extension_loaded/>extension_loaded</a></p><p><a href=/php/options-information/gc_collect_cycles/>gc_collect_cycles</a></p><p><a href=/php/options-information/gc_disable/>gc_disable</a></p><p><a href=/php/options-information/gc_enable/>gc_enable</a></p><p><a href=/php/options-information/gc_enabled/>gc_enabled</a></p><p><a href=/php/options-information/gc_mem_caches/>gc_mem_caches</a></p><p><a href=/php/options-information/gc_status/>gc_status</a></p><p><a href=/php/options-information/get_cfg_var/>get_cfg_var</a></p><p><a href=/php/options-information/get_current_user/>get_current_user</a></p><p><a href=/php/options-information/get_defined_constants/>get_defined_constants</a></p><p><a href=/php/options-information/get_extension_funcs/>get_extension_funcs</a></p><p><a href=/php/options-information/get_include_path/>get_include_path</a></p><p><a href=/php/options-information/get_included_files/>get_included_files</a></p><p><a href=/php/options-information/get_loaded_extensions/>get_loaded_extensions</a></p><p><a href=/php/options-information/get_required_files/>get_required_files</a></p><p><a href=/php/options-information/get_resources/>get_resources</a></p><p><a href=/php/options-information/getenv/>getenv</a></p><p><a href=/php/options-information/getlastmod/>getlastmod</a></p><p><a href=/php/options-information/getmygid/>getmygid</a></p><p><a href=/php/options-information/getmyinode/>getmyinode</a></p><p><a href=/php/options-information/getmypid/>getmypid</a></p><p><a href=/php/options-information/getmyuid/>getmyuid</a></p><p><a href=/php/options-information/getopt/>getopt</a></p><p><a href=/php/options-information/getrusage/>getrusage</a></p><p><a href=/php/options-information/ini_alter/>ini_alter</a></p><p><a href=/php/options-information/ini_get/>ini_get</a></p><p><a href=/php/options-information/ini_get_all/>ini_get_all</a></p><p><a href=/php/options-information/ini_parse_quantity/>ini_parse_quantity</a></p><p><a href=/php/options-information/ini_restore/>ini_restore</a></p><p><a href=/php/options-information/ini_set/>ini_set</a></p><p><a href=/php/options-information/memory_get_peak_usage/>memory_get_peak_usage</a></p><p><a href=/php/options-information/memory_get_usage/>memory_get_usage</a></p><p><a href=/php/options-information/memory_reset_peak_usage/>memory_reset_peak_usage</a></p><p><a href=/php/options-information/php_ini_loaded_file/>php_ini_loaded_file</a></p><p><a href=/php/options-information/php_ini_scanned_files/>php_ini_scanned_files</a></p><p><a href=/php/options-information/php_sapi_name/>php_sapi_name</a></p><p><a href=/php/options-information/php_uname/>php_uname</a></p><p><a href=/php/options-information/phpcredits/>phpcredits</a></p><p><a href=/php/options-information/phpinfo/>phpinfo</a></p><p><a href=/php/options-information/phpversion/>phpversion</a></p><p><a href=/php/options-information/putenv/>putenv</a></p><p><a href=/php/options-information/set_include_path/>set_include_path</a></p><p><a href=/php/options-information/set_time_limit/>set_time_limit</a></p><p><a href=/php/options-information/sys_get_temp_dir/>sys_get_temp_dir</a></p><p><a href=/php/options-information/version_compare/>version_compare</a></p><p><a href=/php/options-information/zend_thread_id/>zend_thread_id</a></p><p><a href=/php/options-information/zend_version/>zend_version</a></p></div><h2 id=output-control><a href=#output-control>Output Control</a></h2><div class=margin><p><a href=/php/output-control/flush/>flush</a></p><p><a href=/php/output-control/ob_clean/>ob_clean</a></p><p><a href=/php/output-control/ob_end_clean/>ob_end_clean</a></p><p><a href=/php/output-control/ob_end_flush/>ob_end_flush</a></p><p><a href=/php/output-control/ob_flush/>ob_flush</a></p><p><a href=/php/output-control/ob_get_clean/>ob_get_clean</a></p><p><a href=/php/output-control/ob_get_contents/>ob_get_contents</a></p><p><a href=/php/output-control/ob_get_flush/>ob_get_flush</a></p><p><a href=/php/output-control/ob_get_length/>ob_get_length</a></p><p><a href=/php/output-control/ob_get_level/>ob_get_level</a></p><p><a href=/php/output-control/ob_get_status/>ob_get_status</a></p><p><a href=/php/output-control/ob_gzhandler/>ob_gzhandler</a></p><p><a href=/php/output-control/ob_implicit_flush/>ob_implicit_flush</a></p><p><a href=/php/output-control/ob_list_handlers/>ob_list_handlers</a></p><p><a href=/php/output-control/ob_start/>ob_start</a></p><p><a href=/php/output-control/output_add_rewrite_var/>output_add_rewrite_var</a></p><p><a href=/php/output-control/output_reset_rewrite_vars/>output_reset_rewrite_vars</a></p></div><h2 id=pcre><a href=#pcre>PCRE</a></h2><div class=margin><p><a href=/php/pcre/preg_filter/>preg_filter</a></p><p><a href=/php/pcre/preg_grep/>preg_grep</a></p><p><a href=/php/pcre/preg_last_error/>preg_last_error</a></p><p><a href=/php/pcre/preg_match/>preg_match</a></p><p><a href=/php/pcre/preg_match_all/>preg_match_all</a></p><p><a href=/php/pcre/preg_quote/>preg_quote</a></p><p><a href=/php/pcre/preg_replace/>preg_replace</a></p><p><a href=/php/pcre/preg_replace_callback/>preg_replace_callback</a></p><p><a href=/php/pcre/preg_replace_callback_array/>preg_replace_callback_array</a></p><p><a href=/php/pcre/preg_split/>preg_split</a></p></div><h2 id=random><a href=#random>Random</a></h2><div class=margin><p><a href=/php/random/getrandmax/>getrandmax</a></p><p><a href=/php/random/lcg_value/>lcg_value</a></p><p><a href=/php/random/mt_getrandmax/>mt_getrandmax</a></p><p><a href=/php/random/mt_rand/>mt_rand</a></p><p><a href=/php/random/mt_srand/>mt_srand</a></p><p><a href=/php/random/rand/>rand</a></p><p><a href=/php/random/random_bytes/>random_bytes</a></p><p><a href=/php/random/random_int/>random_int</a></p><p><a href=/php/random/srand/>srand</a></p></div><h2 id=readline><a href=#readline>Readline</a></h2><div class=margin><p><a href=/php/readline/readline/>readline</a></p><p><a href=/php/readline/readline_add_history/>readline_add_history</a></p><p><a href=/php/readline/readline_callback_handler_install/>readline_callback_handler_install</a></p><p><a href=/php/readline/readline_callback_handler_remove/>readline_callback_handler_remove</a></p><p><a href=/php/readline/readline_callback_read_char/>readline_callback_read_char</a></p><p><a href=/php/readline/readline_clear_history/>readline_clear_history</a></p><p><a href=/php/readline/readline_completion_function/>readline_completion_function</a></p><p><a href=/php/readline/readline_info/>readline_info</a></p><p><a href=/php/readline/readline_list_history/>readline_list_history</a></p><p><a href=/php/readline/readline_on_new_line/>readline_on_new_line</a></p><p><a href=/php/readline/readline_read_history/>readline_read_history</a></p><p><a href=/php/readline/readline_redisplay/>readline_redisplay</a></p><p><a href=/php/readline/readline_write_history/>readline_write_history</a></p></div><h2 id=stream><a href=#stream>Stream</a></h2><div class=margin><p><a href=/php/stream/stream_bucket_append/>stream_bucket_append</a></p><p><a href=/php/stream/stream_bucket_make_writeable/>stream_bucket_make_writeable</a></p><p><a href=/php/stream/stream_bucket_new/>stream_bucket_new</a></p><p><a href=/php/stream/stream_bucket_prepend/>stream_bucket_prepend</a></p><p><a href=/php/stream/stream_context_create/>stream_context_create</a></p><p><a href=/php/stream/stream_context_get_default/>stream_context_get_default</a></p><p><a href=/php/stream/stream_context_get_options/>stream_context_get_options</a></p><p><a href=/php/stream/stream_context_get_params/>stream_context_get_params</a></p><p><a href=/php/stream/stream_context_set_default/>stream_context_set_default</a></p><p><a href=/php/stream/stream_context_set_option/>stream_context_set_option</a></p><p><a href=/php/stream/stream_context_set_params/>stream_context_set_params</a></p><p><a href=/php/stream/stream_copy_to_stream/>stream_copy_to_stream</a></p><p><a href=/php/stream/stream_filter_append/>stream_filter_append</a></p><p><a href=/php/stream/stream_filter_prepend/>stream_filter_prepend</a></p><p><a href=/php/stream/stream_filter_register/>stream_filter_register</a></p><p><a href=/php/stream/stream_filter_remove/>stream_filter_remove</a></p><p><a href=/php/stream/stream_get_contents/>stream_get_contents</a></p><p><a href=/php/stream/stream_get_filters/>stream_get_filters</a></p><p><a href=/php/stream/stream_get_line/>stream_get_line</a></p><p><a href=/php/stream/stream_get_meta_data/>stream_get_meta_data</a></p><p><a href=/php/stream/stream_get_transports/>stream_get_transports</a></p><p><a href=/php/stream/stream_get_wrappers/>stream_get_wrappers</a></p><p><a href=/php/stream/stream_is_local/>stream_is_local</a></p><p><a href=/php/stream/stream_isatty/>stream_isatty</a></p><p><a href=/php/stream/stream_notification_callback/>stream_notification_callback</a></p><p><a href=/php/stream/stream_register_wrapper/>stream_register_wrapper</a></p><p><a href=/php/stream/stream_resolve_include_path/>stream_resolve_include_path</a></p><p><a href=/php/stream/stream_select/>stream_select</a></p><p><a href=/php/stream/stream_set_blocking/>stream_set_blocking</a></p><p><a href=/php/stream/stream_set_chunk_size/>stream_set_chunk_size</a></p><p><a href=/php/stream/stream_set_read_buffer/>stream_set_read_buffer</a></p><p><a href=/php/stream/stream_set_timeout/>stream_set_timeout</a></p><p><a href=/php/stream/stream_set_write_buffer/>stream_set_write_buffer</a></p><p><a href=/php/stream/stream_socket_accept/>stream_socket_accept</a></p><p><a href=/php/stream/stream_socket_client/>stream_socket_client</a></p><p><a href=/php/stream/stream_socket_enable_crypto/>stream_socket_enable_crypto</a></p><p><a href=/php/stream/stream_socket_get_name/>stream_socket_get_name</a></p><p><a href=/php/stream/stream_socket_pair/>stream_socket_pair</a></p><p><a href=/php/stream/stream_socket_recvfrom/>stream_socket_recvfrom</a></p><p><a href=/php/stream/stream_socket_sendto/>stream_socket_sendto</a></p><p><a href=/php/stream/stream_socket_server/>stream_socket_server</a></p><p><a href=/php/stream/stream_socket_shutdown/>stream_socket_shutdown</a></p><p><a href=/php/stream/stream_supports_lock/>stream_supports_lock</a></p><p><a href=/php/stream/stream_wrapper_register/>stream_wrapper_register</a></p><p><a href=/php/stream/stream_wrapper_restore/>stream_wrapper_restore</a></p><p><a href=/php/stream/stream_wrapper_unregister/>stream_wrapper_unregister</a></p></div><h2 id=string><a href=#string>String</a></h2><div class=margin><p><a href=/php/string/addcslashes/>addcslashes</a></p><p><a href=/php/string/addslashes/>addslashes</a></p><p><a href=/php/string/bin2hex/>bin2hex</a></p><p><a href=/php/string/chop/>chop</a></p><p><a href=/php/string/chr/>chr</a></p><p><a href=/php/string/chunk_split/>chunk_split</a></p><p><a href=/php/string/convert_uudecode/>convert_uudecode</a></p><p><a href=/php/string/convert_uuencode/>convert_uuencode</a></p><p><a href=/php/string/count_chars/>count_chars</a></p><p><a href=/php/string/crc32/>crc32</a></p><p><a href=/php/string/crypt/>crypt</a></p><p><a href=/php/string/echo/>echo</a></p><p><a href=/php/string/explode/>explode</a></p><p><a href=/php/string/fprintf/>fprintf</a></p><p><a href=/php/string/get_html_translation_table/>get_html_translation_table</a></p><p><a href=/php/string/hebrev/>hebrev</a></p><p><a href=/php/string/hebrevc/>hebrevc</a></p><p><a href=/php/string/hex2bin/>hex2bin</a></p><p><a href=/php/string/html_entity_decode/>html_entity_decode</a></p><p><a href=/php/string/htmlentities/>htmlentities</a></p><p><a href=/php/string/htmlspecialchars/>htmlspecialchars</a></p><p><a href=/php/string/htmlspecialchars_decode/>htmlspecialchars_decode</a></p><p><a href=/php/string/implode/>implode</a></p><p><a href=/php/string/join/>join</a></p><p><a href=/php/string/lcfirst/>lcfirst</a></p><p><a href=/php/string/levenshtein/>levenshtein</a></p><p><a href=/php/string/localeconv/>localeconv</a></p><p><a href=/php/string/ltrim/>ltrim</a></p><p><a href=/php/string/md5/>md5</a></p><p><a href=/php/string/md5_file/>md5_file</a></p><p><a href=/php/string/metaphone/>metaphone</a></p><p><a href=/php/string/nl_langinfo/>nl_langinfo</a></p><p><a href=/php/string/nl2br/>nl2br</a></p><p><a href=/php/string/number_format/>number_format</a></p><p><a href=/php/string/ord/>ord</a></p><p><a href=/php/string/parse_str/>parse_str</a></p><p><a href=/php/string/print/>print</a></p><p><a href=/php/string/printf/>printf</a></p><p><a href=/php/string/quoted_printable_decode/>quoted_printable_decode</a></p><p><a href=/php/string/quoted_printable_encode/>quoted_printable_encode</a></p><p><a href=/php/string/quotemeta/>quotemeta</a></p><p><a href=/php/string/rtrim/>rtrim</a></p><p><a href=/php/string/setlocale/>setlocale</a></p><p><a href=/php/string/sha1/>sha1</a></p><p><a href=/php/string/sha1_file/>sha1_file</a></p><p><a href=/php/string/similar_text/>similar_text</a></p><p><a href=/php/string/soundex/>soundex</a></p><p><a href=/php/string/sprintf/>sprintf</a></p><p><a href=/php/string/sscanf/>sscanf</a></p><p><a href=/php/string/str_contains/>str_contains</a></p><p><a href=/php/string/str_ends_with/>str_ends_with</a></p><p><a href=/php/string/str_getcsv/>str_getcsv</a></p><p><a href=/php/string/str_ireplace/>str_ireplace</a></p><p><a href=/php/string/str_pad/>str_pad</a></p><p><a href=/php/string/str_repeat/>str_repeat</a></p><p><a href=/php/string/str_replace/>str_replace</a></p><p><a href=/php/string/str_rot13/>str_rot13</a></p><p><a href=/php/string/str_shuffle/>str_shuffle</a></p><p><a href=/php/string/str_split/>str_split</a></p><p><a href=/php/string/str_starts_with/>str_starts_with</a></p><p><a href=/php/string/str_word_count/>str_word_count</a></p><p><a href=/php/string/strcasecmp/>strcasecmp</a></p><p><a href=/php/string/strchr/>strchr</a></p><p><a href=/php/string/strcmp/>strcmp</a></p><p><a href=/php/string/strcoll/>strcoll</a></p><p><a href=/php/string/strcspn/>strcspn</a></p><p><a href=/php/string/strip_tags/>strip_tags</a></p><p><a href=/php/string/stripcslashes/>stripcslashes</a></p><p><a href=/php/string/stripos/>stripos</a></p><p><a href=/php/string/stripslashes/>stripslashes</a></p><p><a href=/php/string/stristr/>stristr</a></p><p><a href=/php/string/strlen/>strlen</a></p><p><a href=/php/string/strnatcasecmp/>strnatcasecmp</a></p><p><a href=/php/string/strnatcmp/>strnatcmp</a></p><p><a href=/php/string/strncasecmp/>strncasecmp</a></p><p><a href=/php/string/strncmp/>strncmp</a></p><p><a href=/php/string/strpbrk/>strpbrk</a></p><p><a href=/php/string/strpos/>strpos</a></p><p><a href=/php/string/strrchr/>strrchr</a></p><p><a href=/php/string/strrev/>strrev</a></p><p><a href=/php/string/strripos/>strripos</a></p><p><a href=/php/string/strrpos/>strrpos</a></p><p><a href=/php/string/strspn/>strspn</a></p><p><a href=/php/string/strstr/>strstr</a></p><p><a href=/php/string/strtok/>strtok</a></p><p><a href=/php/string/strtolower/>strtolower</a></p><p><a href=/php/string/strtoupper/>strtoupper</a></p><p><a href=/php/string/strtr/>strtr</a></p><p><a href=/php/string/substr/>substr</a></p><p><a href=/php/string/substr_compare/>substr_compare</a></p><p><a href=/php/string/substr_count/>substr_count</a></p><p><a href=/php/string/substr_replace/>substr_replace</a></p><p><a href=/php/string/trim/>trim</a></p><p><a href=/php/string/ucfirst/>ucfirst</a></p><p><a href=/php/string/ucwords/>ucwords</a></p><p><a href=/php/string/vfprintf/>vfprintf</a></p><p><a href=/php/string/vprintf/>vprintf</a></p><p><a href=/php/string/vsprintf/>vsprintf</a></p><p><a href=/php/string/wordwrap/>wordwrap</a></p></div><h2 id=tokenizer><a href=#tokenizer>Tokenizer</a></h2><div class=margin><p><a href=/php/tokenizer/token_get_all/>token_get_all</a></p><p><a href=/php/tokenizer/token_name/>token_name</a></p></div><h2 id=url><a href=#url>URL</a></h2><div class=margin><p><a href=/php/url/base64_decode/>base64_decode</a></p><p><a href=/php/url/base64_encode/>base64_encode</a></p><p><a href=/php/url/get_headers/>get_headers</a></p><p><a href=/php/url/get_meta_tags/>get_meta_tags</a></p><p><a href=/php/url/http_build_query/>http_build_query</a></p><p><a href=/php/url/parse_url/>parse_url</a></p><p><a href=/php/url/rawurldecode/>rawurldecode</a></p><p><a href=/php/url/rawurlencode/>rawurlencode</a></p><p><a href=/php/url/urldecode/>urldecode</a></p><p><a href=/php/url/urlencode/>urlencode</a></p></div><h2 id=variable-handling><a href=#variable-handling>Variable Handling</a></h2><div class=margin><p><a href=/php/variable-handling/boolval/>boolval</a></p><p><a href=/php/variable-handling/debug_zval_dump/>debug_zval_dump</a></p><p><a href=/php/variable-handling/doubleval/>doubleval</a></p><p><a href=/php/variable-handling/empty/>empty</a></p><p><a href=/php/variable-handling/floatval/>floatval</a></p><p><a href=/php/variable-handling/get_debug_type/>get_debug_type</a></p><p><a href=/php/variable-handling/get_defined_vars/>get_defined_vars</a></p><p><a href=/php/variable-handling/get_resource_id/>get_resource_id</a></p><p><a href=/php/variable-handling/get_resource_type/>get_resource_type</a></p><p><a href=/php/variable-handling/gettype/>gettype</a></p><p><a href=/php/variable-handling/intval/>intval</a></p><p><a href=/php/variable-handling/is_array/>is_array</a></p><p><a href=/php/variable-handling/is_bool/>is_bool</a></p><p><a href=/php/variable-handling/is_callable/>is_callable</a></p><p><a href=/php/variable-handling/is_countable/>is_countable</a></p><p><a href=/php/variable-handling/is_double/>is_double</a></p><p><a href=/php/variable-handling/is_float/>is_float</a></p><p><a href=/php/variable-handling/is_int/>is_int</a></p><p><a href=/php/variable-handling/is_integer/>is_integer</a></p><p><a href=/php/variable-handling/is_iterable/>is_iterable</a></p><p><a href=/php/variable-handling/is_long/>is_long</a></p><p><a href=/php/variable-handling/is_null/>is_null</a></p><p><a href=/php/variable-handling/is_numeric/>is_numeric</a></p><p><a href=/php/variable-handling/is_object/>is_object</a></p><p><a href=/php/variable-handling/is_real/>is_real</a></p><p><a href=/php/variable-handling/is_resource/>is_resource</a></p><p><a href=/php/variable-handling/is_scalar/>is_scalar</a></p><p><a href=/php/variable-handling/is_string/>is_string</a></p><p><a href=/php/variable-handling/isset/>isset</a></p><p><a href=/php/variable-handling/print_r/>print_r</a></p><p><a href=/php/variable-handling/serialize/>serialize</a></p><p><a href=/php/variable-handling/settype/>settype</a></p><p><a href=/php/variable-handling/strval/>strval</a></p><p><a href=/php/variable-handling/unserialize/>unserialize</a></p><p><a href=/php/variable-handling/unset/>unset</a></p><p><a href=/php/variable-handling/var_dump/>var_dump</a></p><p><a href=/php/variable-handling/var_export/>var_export</a></p></div></div><div class=nav-h1><a id=nav-switch-svg>SVG</a></div><div id=nav-content-svg><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/svg/>Overview</a></p></div><h2 id=attributes><a href=#attributes>Attributes</a></h2><div class=margin><p><a href=/svg/attributes/acc 7388 umulate/>accumulate</a></p><p><a href=/svg/attributes/additive/>additive</a></p><p><a href=/svg/attributes/amplitude/>amplitude</a></p><p><a href=/svg/attributes/attributename/>attributeName</a></p><p><a href=/svg/attributes/azimuth/>azimuth</a></p><p><a href=/svg/attributes/basefrequency/>baseFrequency</a></p><p><a href=/svg/attributes/begin/>begin</a></p><p><a href=/svg/attributes/bias/>bias</a></p><p><a href=/svg/attributes/by/>by</a></p><p><a href=/svg/attributes/calcmode/>calcMode</a></p><p><a href=/svg/attributes/clippathunits/>clipPathUnits</a></p><p><a href=/svg/attributes/crossorigin/>crossorigin</a></p><p><a href=/svg/attributes/cx/>cx</a></p><p><a href=/svg/attributes/cy/>cy</a></p><p><a href=/svg/attributes/d/>d</a></p><p><a href=/svg/attributes/diffuseconstant/>diffuseConstant</a></p><p><a href=/svg/attributes/divisor/>divisor</a></p><p><a href=/svg/attributes/download/>download</a></p><p><a href=/svg/attributes/dur/>dur</a></p><p><a href=/svg/attributes/dx/>dx</a></p><p><a href=/svg/attributes/dy/>dy</a></p><p><a href=/svg/attributes/edgemode/>edgeMode</a></p><p><a href=/svg/attributes/elevation/>elevation</a></p><p><a href=/svg/attributes/end/>end</a></p><p><a href=/svg/attributes/exponent/>exponent</a></p><p><a href=/svg/attributes/fill/>fill</a></p><p><a href=/svg/attributes/filterunits/>filterUnits</a></p><p><a href=/svg/attributes/flood-color/>flood-color</a></p><p><a href=/svg/attributes/flood-opacity/>flood-opacity</a></p><p><a href=/svg/attributes/fr/>fr</a></p><p><a href=/svg/attributes/from/>from</a></p><p><a href=/svg/attributes/fx/>fx</a></p><p><a href=/svg/attributes/fy/>fy</a></p><p><a href=/svg/attributes/gradienttransform/>gradientTransform</a></p><p><a href=/svg/attributes/gradientunits/>gradientUnits</a></p><p><a href=/svg/attributes/height/>height</a></p><p><a href=/svg/attributes/href/>href</a></p><p><a href=/svg/attributes/hreflang/>hreflang</a></p><p><a href=/svg/attributes/id/>id</a></p><p><a href=/svg/attributes/in/>in</a></p><p><a href=/svg/attributes/in2/>in2</a></p><p><a href=/svg/attributes/intercept/>intercept</a></p><p><a href=/svg/attributes/k1/>k1</a></p><p><a href=/svg/attributes/k2/>k2</a></p><p><a href=/svg/attributes/k3/>k3</a></p><p><a href=/svg/attributes/k4/>k4</a></p><p><a href=/svg/attributes/kernelmatrix/>kernelMatrix</a></p><p><a href=/svg/attributes/keypoints/>keyPoints</a></p><p><a href=/svg/attributes/keysplines/>keySplines</a></p><p><a href=/svg/attributes/keytimes/>keyTimes</a></p><p><a href=/svg/attributes/lengthadjust/>lengthAdjust</a></p><p><a href=/svg/attributes/limitingconeangle/>limitingConeAngle</a></p><p><a href=/svg/attributes/markerheight/>markerHeight</a></p><p><a href=/svg/attributes/markerunits/>markerUnits</a></p><p><a href=/svg/attributes/markerwidth/>markerWidth</a></p><p><a href=/svg/attributes/maskcontentunits/>maskContentUnits</a></p><p><a href=/svg/attributes/maskunits/>maskUnits</a></p><p><a href=/svg/attributes/max/>max</a></p><p><a href=/svg/attributes/media/>media</a></p><p><a href=/svg/attributes/method/>method</a></p><p><a href=/svg/attributes/min/>min</a></p><p><a href=/svg/attributes/mode/>mode</a></p><p><a href=/svg/attributes/no-composite/>no-composite</a></p><p><a href=/svg/attributes/numoctaves/>numOctaves</a></p><p><a href=/svg/attributes/offset/>offset</a></p><p><a href=/svg/attributes/onbegin/>onbegin</a></p><p><a href=/svg/attributes/onend/>onend</a></p><p><a href=/svg/attributes/onrepeat/>onrepeat</a></p><p><a href=/svg/attributes/operator/>operator</a></p><p><a href=/svg/attributes/order/>order</a></p><p><a href=/svg/attributes/orient/>orient</a></p><p><a href=/svg/attributes/origin/>origin</a></p><p><a href=/svg/attributes/path/>path</a></p><p><a href=/svg/attributes/pathlength/>pathLength</a></p><p><a href=/svg/attributes/patterncontentunits/>patternContentUnits</a></p><p><a href=/svg/attributes/patterntransform/>patternTransform</a></p><p><a href=/svg/attributes/patternunits/>patternUnits</a></p><p><a href=/svg/attributes/ping/>ping</a></p><p><a href=/svg/attributes/points/>points</a></p><p><a href=/svg/attributes/pointsatx/>pointsAtX</a></p><p><a href=/svg/attributes/pointsaty/>pointsAtY</a></p><p><a href=/svg/attributes/pointsatz/>pointsAtZ</a></p><p><a href=/svg/attributes/preservealpha/>preserveAlpha</a></p><p><a href=/svg/attributes/preserveaspectratio/>preserveAspectRatio</a></p><p><a href=/svg/attributes/primitiveunits/>primitiveUnits</a></p><p><a href=/svg/attributes/r/>r</a></p><p><a href=/svg/attributes/radius/>radius</a></p><p><a href=/svg/attributes/referrerpolicy/>referrerPolicy</a></p><p><a href=/svg/attributes/refx/>refx</a></p><p><a href=/svg/attributes/refy/>refy</a></p><p><a href=/svg/attributes/rel/>rel</a></p><p><a href=/svg/attributes/repeatcount/>repeatCount</a></p><p><a href=/svg/attributes/repeatdur/>repeatDur</a></p><p><a href=/svg/attributes/requiredextensions/>requiredExtensions</a></p><p><a href=/svg/attributes/restart/>restart</a></p><p><a href=/svg/attributes/rotate/>rotate</a></p><p><a href=/svg/attributes/rx/>rx</a></p><p><a href=/svg/attributes/ry/>ry</a></p><p><a href=/svg/attributes/scale/>scale</a></p><p><a href=/svg/attributes/seed/>seed</a></p><p><a href=/svg/attributes/side/>side</a></p><p><a href=/svg/attributes/slope/>slope</a></p><p><a href=/svg/attributes/spacing/>spacing</a></p><p><a href=/svg/attributes/specularconstant/>specularConstant</a></p><p><a href=/svg/attributes/specularexponent/>specularExponent</a></p><p><a href=/svg/attributes/spreadmethod/>spreadMethod</a></p><p><a href=/svg/attributes/startoffset/>startoffset</a></p><p><a href=/svg/attributes/stddeviation/>stdDeviation</a></p><p><a href=/svg/attributes/stitchtiles/>stitchTiles</a></p><p><a href=/svg/attributes/stop-color/>stop-color</a></p><p><a href=/svg/attributes/stop-opacity/>stop-opacity</a></p><p><a href=/svg/attributes/surfacescale/>surfaceScale</a></p><p><a href=/svg/attributes/systemlanguage/>systemLanguage</a></p><p><a href=/svg/attributes/tabindex/>tabindex</a></p><p><a href=/svg/attributes/tablevalues/>tableValues</a></p><p><a href=/svg/attributes/target/>target</a></p><p><a href=/svg/attributes/targetx/>targetX</a></p><p><a href=/svg/attributes/targety/>targetY</a></p><p><a href=/svg/attributes/textlength/>textLength</a></p><p><a href=/svg/attributes/title/>title</a></p><p><a href=/svg/attributes/to/>to</a></p><p><a href=/svg/attributes/transform/>transform</a></p><p><a href=/svg/attributes/type/>type</a></p><p><a href=/svg/attributes/values/>values</a></p><p><a href=/svg/attributes/viewbox/>viewBox</a></p><p><a href=/svg/attributes/width/>width</a></p><p><a href=/svg/attributes/x/>x</a></p><p><a href=/svg/attributes/x1/>x1</a></p><p><a href=/svg/attributes/x2/>x2</a></p><p><a href=/svg/attributes/xchannelselector/>xChannelSelector</a></p><p><a href=/svg/attributes/y/>y</a></p><p><a href=/svg/attributes/y1/>y1</a></p><p><a href=/svg/attributes/y2/>y2</a></p><p><a href=/svg/attributes/ychannelselector/>yChannelSelector</a></p><p><a href=/svg/attributes/z/>z</a></p><p><a href=/svg/attributes/zoomandpan/>zoomAndPan</a></p></div><h2 id=elements><a href=#elements>Elements</a></h2><div class=margin><p><a href=/svg/elements/a/>a</a></p><p><a href=/svg/elements/animate/>animate</a></p><p><a href=/svg/elements/animatemotion/>animateMotion</a></p><p><a href=/svg/elements/animatetransform/>animateTransform</a></p><p><a href=/svg/elements/circle/>circle</a></p><p><a href=/svg/elements/clippath/>clipPath</a></p><p><a href=/svg/elements/defs/>defs</a></p><p><a href=/svg/elements/desc/>desc</a></p><p><a href=/svg/elements/discard/>discard</a></p><p><a href=/svg/elements/ellipse/>ellipse</a></p><p><a href=/svg/elements/feblend/>feBlend</a></p><p><a href=/svg/elements/fecolormatrix/>feColorMatrix</a></p><p><a href=/svg/elements/fecomponenttransfer/>feComponentTransfer</a></p><p><a href=/svg/elements/fecomposite/>feComposite</a></p><p><a href=/svg/elements/feconvolvematrix/>feConvolveMatrix</a></p><p><a href=/svg/elements/fediffuselighting/>feDiffuseLighting</a></p><p><a href=/svg/elements/fedisplacementmap/>feDisplacementMap</a></p><p><a href=/svg/elements/fedistantlight/>feDistantLight</a></p><p><a href=/svg/elements/fedropshadow/>feDropShadow</a></p><p><a href=/svg/elements/feflood/>feFlood</a></p><p><a href=/svg/elements/fefunca/>feFuncA</a></p><p><a href=/svg/elements/fefuncb/>feFuncB</a></p><p><a href=/svg/elements/fefuncg/>feFuncG</a></p><p><a href=/svg/elements/fefuncr/>feFuncR</a></p><p><a href=/svg/elements/fegaussianblur/>feGaussianBlur</a></p><p><a href=/svg/elements/feimage/>feImage</a></p><p><a href=/svg/elements/femerge/>feMerge</a></p><p><a href=/svg/elements/femergenode/>feMergeNode</a></p><p><a href=/svg/elements/femorphology/>feMorphology</a></p><p><a href=/svg/elements/feoffset/>feOffset</a></p><p><a href=/svg/elements/fepointlight/>fePointLight</a></p><p><a href=/svg/elements/fespecularlighting/>feSpecularLighting</a></p><p><a href=/svg/elements/fespotlight/>feSpotLight</a></p><p><a href=/svg/elements/fetile/>feTile</a></p><p><a href=/svg/elements/feturbulence/>feTurbulence</a></p><p><a href=/svg/elements/filter/>filter</a></p><p><a href=/svg/elements/foreignobject/>foreignObject</a></p><p><a href=/svg/elements/g/>g</a></p><p><a href=/svg/elements/image/>image</a></p><p><a href=/svg/elements/line/>line</a></p><p><a href=/svg/elements/lineargradient/>linearGradient</a></p><p><a href=/svg/elements/marker/>marker</a></p><p><a href=/svg/elements/mask/>mask</a></p><p><a href=/svg/elements/metadata/>metadata</a></p><p><a href=/svg/elements/mpath/>mpath</a></p><p><a href=/svg/elements/path/>path</a></p><p><a href=/svg/elements/pattern/>pattern</a></p><p><a href=/svg/elements/polygon/>polygon</a></p><p><a href=/svg/elements/polyline/>polyline</a></p><p><a href=/svg/elements/radialgradient/>radialGradient</a></p><p><a href=/svg/elements/rect/>rect</a></p><p><a href=/svg/elements/script/>script</a></p><p><a href=/svg/elements/set/>set</a></p><p><a href=/svg/elements/stop/>stop</a></p><p><a href=/svg/elements/style/>style</a></p><p><a href=/svg/elements/svg/>svg</a></p><p><a href=/svg/elements/switch/>switch</a></p><p><a href=/svg/elements/symbol/>symbol</a></p><p><a href=/svg/elements/text/>text</a></p><p><a href=/svg/elements/textpath/>textPath</a></p><p><a href=/svg/elements/title/>title</a></p><p><a href=/svg/elements/tspan/>tspan</a></p><p><a href=/svg/elements/unknown/>unknown</a></p><p><a href=/svg/elements/use/>use</a></p><p><a href=/svg/elements/view/>view</a></p></div><h2 id=values><a href=#values>Values</a></h2><div class=margin><p><a href=/svg/values/_blank/>_blank</a></p><p><a href=/svg/values/_parent/>_parent</a></p><p><a href=/svg/values/_self/>_self</a></p><p><a href=/svg/values/_top/>_top</a></p><p><a href=/svg/values/a/>A</a></p><p><a href=/svg/values/align/>align</a></p><p><a href=/svg/values/alpha-value/>alpha-value</a></p><p><a href=/svg/values/always/>always</a></p><p><a href=/svg/values/angle/>angle</a></p><p><a href=/svg/values/anonymous/>anonymous</a></p><p><a href=/svg/values/arithmetic/>arithmetic</a></p><p><a href=/svg/values/atop/>atop</a></p><p><a href=/svg/values/auto/>auto</a></p><p><a href=/svg/values/auto-start-reverse/>auto-start-reverse</a></p><p><a href=/svg/values/auto-reverse/>auto-reverse</a></p><p><a href=/svg/values/b/>B</a></p><p><a href=/svg/values/backgroundalpha/>BackgroundAlpha</a></p><p><a href=/svg/values/backgroundimage/>BackgroundImage</a></p><p><a href=/svg/values/begin-value-list/>begin-value-list</a></p><p><a href=/svg/values/blend-mode/>blend-mode</a></p><p><a href=/svg/values/bottom/>bottom</a></p><p><a href=/svg/values/center/>center</a></p><p><a href=/svg/values/clock-value/>clock-value</a></p><p><a href=/svg/values/color/>color</a></p><p><a href=/svg/values/control-point/>control-point</a></p><p><a href=/svg/values/currentcolor/>currentColor</a></p><p><a href=/svg/values/default/>default</a></p><p><a href=/svg/values/dilate/>dilate</a></p><p><a href=/svg/values/disable/>disable</a></p><p><a href=/svg/values/discrete/>discrete</a></p><p><a href=/svg/values/duplicate/>duplicate</a></p><p><a href=/svg/values/empty-string/>empty-string</a></p><p><a href=/svg/values/end-value-list/>end-value-list</a></p><p><a href=/svg/values/erode/>erode</a></p><p><a href=/svg/values/exact/>exact</a></p><p><a href=/svg/values/false/>false</a></p><p><a href=/svg/values/fillpaint/>FillPaint</a></p><p><a href=/svg/values/filter-primitive-reference/>filter-primitive-reference</a></p><p><a href=/svg/values/fractalnoise/>fractalNoise</a></p><p><a href=/svg/values/freeze/>freeze</a></p><p><a href=/svg/values/g/>G</a></p><p><a href=/svg/values/gamma/>gamma</a></p><p><a href=/svg/values/height/>height</a></p><p><a href=/svg/values/huerotate/>hueRotate</a></p><p><a href=/svg/values/icccolor/>icccolor</a></p><p><a href=/svg/values/id/>id</a></p><p><a href=/svg/values/identity/>identity</a></p><p><a href=/svg/values/in/>in</a></p><p><a href=/svg/values/indefinite/>indefinite</a></p><p><a href=/svg/values/integer/>integer</a></p><p><a href=/svg/values/left/>left</a></p><p><a href=/svg/values/length/>length</a></p><p><a href=/svg/values/length-percentage/>length-percentage</a></p><p><a href=/svg/values/lighter/>lighter</a></p><p><a href=/svg/values/linear/>linear</a></p><p><a href=/svg/values/list/>list</a></p><p><a href=/svg/values/list-of-numbers/>list-of-numbers</a></p><p><a href=/svg/values/luminancetoalpha/>luminanceToAlpha</a></p><p><a href=/svg/values/magnify/>magnify</a></p><p><a href=/svg/values/matrix/>matrix</a></p><p><a href=/svg/values/media/>media</a></p><p><a href=/svg/values/meetorslice/>meetOrSlice</a></p><p><a href=/svg/values/min-x/>min-x</a></p><p><a href=/svg/values/min-y/>min-y</a></p><p><a href=/svg/values/name/>name</a></p><p><a href=/svg/values/never/>never</a></p><p><a href=/svg/values/no-composite/>no-composite</a></p><p><a href=/svg/values/no-referrer/>no-referrer</a></p><p><a href=/svg/values/no-referrer-when-downgrade/>no-referrer-when-downgrade</a></p><p><a href=/svg/values/none/>none</a></p><p><a href=/svg/values/nostitch/>noStitch</a></p><p><a href=/svg/values/number/>number</a></p><p><a href=/svg/values/number-optional-number/>number-optional-number</a></p><p><a href=/svg/values/objectboundingbox/>objectBoundingBox</a></p><p><a href=/svg/values/origin/>origin</a></p><p><a href=/svg/values/origin-when-cross-origin/>origin-when-cross-origin</a></p><p><a href=/svg/values/out/>out</a></p><p><a href=/svg/values/over/>over</a></p><p><a href=/svg/values/paced/>paced</a></p><p><a href=/svg/values/pad/>pad</a></p><p><a href=/svg/values/path-data/>path-data</a></p><p><a href=/svg/values/percentage/>percentage</a></p><p><a href=/svg/values/points/>points</a></p><p><a href=/svg/values/r/>R</a></p><p><a href=/svg/values/reflect/>reflect</a></p><p><a href=/svg/values/remove/>remove</a></p><p><a href=/svg/values/repeat/>repeat</a></p><p><a href=/svg/values/replace/>replace</a></p><p><a href=/svg/values/right/>right</a></p><p><a href=/svg/values/rotate/>rotate</a></p><p><a href=/svg/values/same-origin/>same-origin</a></p><p><a href=/svg/values/saturate/>saturate</a></p><p><a href=/svg/values/scale/>scale</a></p><p><a href=/svg/values/script/>script</a></p><p><a href=/svg/values/set-of-comma-separated-tokens/>set-of-comma-separated-tokens</a></p><p><a href=/svg/values/set-of-space-separated-tokens/>set-of-space-separated-tokens</a></p><p><a href=/svg/values/skewx/>skewx</a></p><p><a href=/svg/values/skewy/>skewy</a></p><p><a href=/svg/values/sourcealpha/>SourceAlpha</a></p><p><a href=/svg/values/sourcegraphic/>SourceGraphic</a></p><p><a href=/svg/values/spacing/>spacing</a></p><p><a href=/svg/values/spacingandglyphs/>spacingAndGlyphs</a></p><p><a href=/svg/values/spline/>spline</a></p><p><a href=/svg/values/stitch/>stitch</a></p><p><a href=/svg/values/stretch/>stretch</a></p><p><a href=/svg/values/strict-origin/>strict-origin</a></p><p><a href=/svg/values/strict-origin-when-cross-origin/>strict-origin-when-cross-origin</a></p><p><a href=/svg/values/string/>string</a></p><p><a href=/svg/values/strokepaint/>StrokePaint</a></p><p><a href=/svg/values/strokewidth/>strokeWidth</a></p><p><a href=/svg/values/sum/>sum</a></p><p><a href=/svg/values/table/>table</a></p><p><a href=/svg/values/tokens/>tokens</a></p><p><a href=/svg/values/top/>top</a></p><p><a href=/svg/values/transform-list/>transform-list</a></p><p><a href=/svg/values/translate/>translate</a></p><p><a href=/svg/values/true/>true</a></p><p><a href=/svg/values/turbulence/>turbulence</a></p><p><a href=/svg/values/unsafe-url/>unsafe-url</a></p><p><a href=/svg/values/url/>url</a></p><p><a href=/svg/values/use-credentials/>use-credentials</a></p><p><a href=/svg/values/userspaceonuse/>userSpaceOnUse</a></p><p><a href=/svg/values/valid-integer/>valid-integer</a></p><p><a href=/svg/values/value/>value</a></p><p><a href=/svg/values/whennotactive/>whenNotActive</a></p><p><a href=/svg/values/width/>width</a></p><p><a href=/svg/values/wrap/>wrap</a></p><p><a href=/svg/values/xml-name/>XML-Name</a></p><p><a href=/svg/values/xor/>xor</a></p></div></div><div class=nav-h1><a id=nav-switch-applications>APPLICATIONS</a></div><div id=nav-content-applications><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/applications/>Overview</a></p></div><h2 id=Bible><a href=#Bible>Bible</a></h2><div class=margin><p><a href=/applications/Bible-passages/>Bible Passages</a></p><p><a href=/applications/Bible-pictures/>Bible Pictures</a></p><p><a href=/applications/Jesus-loves-the-little-children/>Jesus Loves the Little Children</a></p><p><a href=/applications/merry-Christmas/>Merry Christmas</a></p><p><a href=/applications/one-man-one-woman-one-lifetime/>One Man. One Woman. One Lifetime.</a></p><p><a href=/applications/The-Armor-of-God/>The Armor of God</a></p></div><h2 id=cards><a href=#cards>Cards</a></h2><div class=margin><p><a href=/applications/euchre/>Euchre</a></p><p><a href=/applications/sevens/>Sevens</a></p><p><a href=/applications/solitaire/>Solitaire</a></p></div><h2 id=lego><a href=#lego>LEGO</a></h2><div class=margin><p><a href=/applications/lego-cannonball-bingo/>LEGO Cannonball Bingo</a></p><p><a href=/applications/lego-pandamonium/>LEGO Pandamonium</a></p><p><a href=/applications/lego-pirate-plunder/>LEGO Pirate Plunder</a></p><p><a href=/applications/lego-the-machine/>LEGO The Machine</a></p></div><h2 id=other><a href=#other>Other</a></h2><div class=margin><p><a href=/applications/miniature-golf/>Miniature Golf</a></p><p><a href=/applications/space-station/>Space Station</a></p></div></div><div class=nav-h1><a id=nav-switch-more>MORE</a></div><div id=nav-content-more><div class=nav-h2><a href=/htaccess/>.HTACCESS</a></div><div class=nav-h2><a href=/acme.sh/>ACME.SH</a></div><div class=nav-h2><a href=/editor/>EDITOR</a></div><div class=nav-h2><a href=/favicon/>FAVICON</a></div><div class=nav-h2><a id=nav-switch-flash>FLASH</a></div><div id=nav-content-flash><div class=nav-h3><a href=/flash/detect/>DETECT</a></div><div class=nav-h3><a id=nav-switch-flash-actionscript>ACTIONSCRIPT</a></div><div id=nav-content-flash-actionscript><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/flash/actionscript/>Overview</a></p></div><h3 id=other-assets><a href=#other-assets>Assets</a></h3><div class=margin><p><a href=/flash/actionscript/embed/>Embed</a></p><p><a href=/flash/actionscript/load/>Load</a></p></div></div><div class=nav-h3><a id=nav-switch-flash-as3dmod>AS3DMOD</a></div><div id=nav-content-flash-as3dmod><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/flash/as3dmod/>Overview</a></p></div><h4 id=other-overview-modifiers><a href=#other-overview-modifiers>Modifiers</a></h4><div class=margin><p><a href=/flash/as3dmod/bend/>Bend</a></p><p><a href=/flash/as3dmod/bloat/>Bloat</a></p><p><a href=/flash/as3dmod/cloth/>Cloth</a></p><p><a href=/flash/as3dmod/noise/>Noise</a></p><p><a href=/flash/as3dmod/perlin/>Perlin</a></p><p><a href=/flash/as3dmod/pivot/>Pivot</a></p><p><a href=/flash/as3dmod/skew/>Skew</a></p><p><a href=/flash/as3dmod/taper/>Taper</a></p><p><a href=/flash/as3dmod/twist/>Twist</a></p></div><h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4><div class=margin><p><a href=/flash/as3dmod/flag/>Flag</a></p></div></div><div class=nav-h3><a href=/flash/flartoolkit/>FLARTOOLKIT</a></div><div class=nav-h3><a id=nav-switch-flash-jiglibflash>JIGLIBFLASH</a></div><div id=nav-content-flash-jiglibflash><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/flash/jiglibflash/>Overview</a></p></div><h4 id=other-overview-objects><a href=#other-overview-objects>Objects</a></h4><div class=margin><p><a href=/flash/jiglibflash/jbox/>JBox</a></p><p><a href=/flash/jiglibflash/jcapsule/>JCapsule</a></p><p><a href=/flash/jiglibflash/jplane/>JPlane</a></p><p><a href=/flash/jiglibflash/jsphere/>JSphere</a></p></div><h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4><div class=margin><p><a href=/flash/jiglibflash/physics/>Physics</a></p></div></div><div class=nav-h3><a id=nav-switch-flash-papervision3d>PAPERVISION3D</a></div><div id=nav-content-flash-papervision3d><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/flash/papervision3d/>Overview</a></p></div><h4 id=other-overview-install><a href=#other-overview-install>Install</a></h4><div class=margin><p><a href=/flash/papervision3d/install/>Install</a></p></div><h4 id=other-overview-example><a href=#other-overview-example>Example</a></h4><div class=margin><p><a href=/flash/papervision3d/1/>1</a></p><p><a href=/flash/papervision3d/2/>2</a></p><p><a href=/flash/papervision3d/3/>3</a></p><p><a href=/flash/papervision3d/4/>4</a></p><p><a href=/flash/papervision3d/5/>5</a></p></div><h4 id=other-overview-cameras><a href=#other-overview-cameras>Cameras</a></h4><div class=margin><p><a href=/flash/papervision3d/camera3d/>Camera3D</a></p><p><a href=/flash/papervision3d/debugcamera3d/>DebugCamera3D</a></p><p><a href=/flash/papervision3d/springcamera3d/>SpringCamera3D</a></p></div><h4 id=other-overview-core><a href=#other-overview-core>Core</a></h4><div class=margin><p><a href=/flash/papervision3d/lines3d/>Lines3D</a></p><p><a href=/flash/papervision3d/fogfilter/>FogFilter</a></p></div><h4 id=other-overview-light><a href=#other-overview-light>Light</a></h4><div class=margin><p><a href=/flash/papervision3d/pointlight3d/>PointLight3D</a></p></div><h4 id=other-overview-materials><a href=#other-overview-materials>Materials</a></h4><div class=margin><p><a href=/flash/papervision3d/bitmapfilematerial/>BitmapFileMaterial</a></p><p><a href=/flash/papervision3d/bitmapmaterial/>BitmapMaterial</a></p><p><a href=/flash/papervision3d/bitmapviewportmaterial/>BitmapViewportMaterial</a></p><p><a href=/flash/papervision3d/colormaterial/>ColorMaterial</a></p><p><a href=/flash/papervision3d/compositematerial/>CompositeMaterial</a></p><p><a href=/flash/papervision3d/moviematerial/>MovieMaterial</a></p><p><a href=/flash/papervision3d/wireframematerial/>WireframeMaterial</a></p></div><h4 id=other-overview-shade-materials><a href=#other-overview-shade-materials>Shade Materials</a></h4><div class=margin><p><a href=/flash/papervision3d/cellmaterial/>CellMaterial</a></p><p><a href=/flash/papervision3d/envmapmaterial/>EnvMapMaterial</a></p><p><a href=/flash/papervision3d/flatshadematerial/>FlatShadeMaterial</a></p><p><a href=/flash/papervision3d/gouraudmaterial/>GouraudMaterial</a></p><p><a href=/flash/papervision3d/phongmaterial/>PhongMaterial</a></p></div><h4 id=other-overview-special-material><a href=#other-overview-special-material>Special Material</a></h4><div class=margin><p><a href=/flash/papervision3d/particlematerial/>ParticleMaterial</a></p></div><h4 id=other-overview-parser-objects><a href=#other-overview-parser-objects>Parser Objects</a></h4><div class=margin><p><a href=/flash/papervision3d/dae/>DAE</a></p><p><a href=/flash/papervision3d/kmz/>KMZ</a></p></div><h4 id=other-overview-primitive-objects><a href=#other-overview-primitive-objects>Primitive Objects</a></h4><div class=margin><p><a href=/flash/papervision3d/arrow/>Arrow</a></p><p><a href=/flash/papervision3d/cone/>Cone</a></p><p><a href=/flash/papervision3d/cube/>Cube</a></p><p><a href=/flash/papervision3d/cylinder/>Cylinder</a></p><p><a href=/flash/papervision3d/paperplane/>PaperPlane</a></p><p><a href=/flash/papervision3d/plane/>Plane</a></p><p><a href=/flash/papervision3d/sphere/>Sphere</a></p></div><h4 id=other-overview-special-objects><a href=#other-overview-special-objects>Special Objects</a></h4><div class=margin><p><a href=/flash/papervision3d/particlefield/>ParticleField</a></p><p><a href=/flash/papervision3d/ucs/>UCS</a></p></div><h4 id=other-overview-render><a href=#other-overview-render>Render</a></h4><div class=margin><p><a href=/flash/papervision3d/basicrenderengine/>BasicRenderEngine</a></p><p><a href=/flash/papervision3d/lazyrenderengine/>LazyRenderEngine</a></p><p><a href=/flash/papervision3d/quadrantrenderengine/>QuadrantRenderEngine</a></p></div><h4 id=other-overview-scene><a href=#other-overview-scene>Scene</a></h4><div class=margin><p><a href=/flash/papervision3d/scene3d/>Scene3D</a></p></div><h4 id=other-overview-typography><a href=#other-overview-typography>Typography</a></h4><div class=margin><p><a href=/flash/papervision3d/text3d/>Text3D</a></p></div><h4 id=other-overview-views><a href=#other-overview-views>Views</a></h4><div class=margin><p><a href=/flash/papervision3d/basicview/>BasicView</a></p><p><a href=/flash/papervision3d/reflectionview/>ReflectionView</a></p><p><a href=/flash/papervision3d/statsview/>StatsView</a></p><p><a href=/flash/papervision3d/viewport3d/>Viewport3D</a></p></div><h4 id=other-overview-view-layers><a href=#other-overview-view-layers>View Layers</a></h4><div class=margin><p><a href=/flash/papervision3d/bitmapeffectlayer/>BitmapEffectLayer</a></p><p><a href=/flash/papervision3d/viewportlayer/>ViewportLayer</a></p></div><h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4><div class=margin><p><a href=/flash/papervision3d/anaglyph/>Anaglyph</a></p><p><a href=/flash/papervision3d/camera-move/>Camera Move</a></p><p><a href=/flash/papervision3d/camera-rotate/>Camera Rotate</a></p><p><a href=/flash/papervision3d/camera-target-move/>Camera Target Move</a></p><p><a href=/flash/papervision3d/object-move/>Object Move</a></p><p><a href=/flash/papervision3d/object-rotate/>Object Rotate</a></p><p><a href=/flash/papervision3d/object-scale/>Object Scale</a></p><p><a href=/flash/papervision3d/panorama/>Panorama</a></p></div></div></div><div class=nav-h2><a id=nav-switch-sketchup>SKETCHUP</a></div><div id=nav-content-sketchup><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/sketchup/>Overview</a></p></div><h3 id=other-plugins><a href=#other-plugins>Plugins</a></h3><div class=margin><p><a href=/sketchup/papervision3d/>Papervision3D</a></p><p><a href=/sketchup/triangulate/>Triangulate</a></p></div></div><div class=nav-h2><a id=nav-switch-unity>UNITY</a></div><div id=nav-content-unity><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/unity/>Overview</a></p></div><h3 id=other-detect><a href=#other-detect>Detect</a></h3><div class=margin><p><a href=/unity/detect/>Detect</a></p></div><h3 id=other-games><a href=#other-games>Games</a></h3><div class=margin><p><a href=/unity/air-hockey/>Air Hockey</a></p><p><a href=/unity/foosball/>Foosball</a></p><p><a href=/unity/pool/>Pool</a></p></div><h3 id=other-unity><a href=#other-unity>Unity</a></h3><div class=margin><p><a href=/unity/car/>Car</a></p><p><a href=/unity/lerpz-escapes/>Lerpz Escapes</a></p><p><a href=/unity/mecanim/>Mecanim</a></p></div></div><div class=nav-h2><a id=nav-switch-xcode>XCODE</a></div><div id=nav-content-xcode><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/xcode/>Overview</a></p></div><h3 id=other-example><a href=#other-example>Example</a></h3><div class=margin><p><a href=/xcode/1/>1</a></p><p><a href=/xcode/2/>2</a></p><p><a href=/xcode/3/>3</a></p><p><a href=/xcode/4/>4</a></p><p><a href=/xcode/5/>5</a></p><p><a href=/xcode/6/>6</a></p></div><h3 id=other-csv2plist><a href=#other-csv2plist>CSV2Plist</a></h3><div class=margin><p><a href=/xcode/csv2plist/>CSV2Plist</a></p></div><h3 id=other-ui><a href=#other-ui>UI</a></h3><div class=margin><p><a href=/xcode/uiactivityindicatorview/>UIActivityIndicatorView</a></p><p><a href=/xcode/uibutton/>UIButton</a></p><p><a href=/xcode/uiimageview/>UIImageView</a></p><p><a href=/xcode/uilabel/>UILabel</a></p><p><a href=/xcode/uipagecontrol/>UIPageControl</a></p><p><a href=/xcode/uiprogressview/>UIProgressView</a></p><p><a href=/xcode/uisegmentedcontrol/>UISegmentedControl</a></p><p><a href=/xcode/uislider/>UISlider</a></p><p><a href=/xcode/uistepper/>UIStepper</a></p><p><a href=/xcode/uiswitch/>UISwitch</a></p><p><a href=/xcode/uitextfield/>UITextField</a></p></div></div></div></div></div><div id=foreground><div id=foreground-header><a href=/><img alt=Home id=foreground-header-home src=/assets/svg/Home.svg title=Home></a><img alt=Menu id=foreground-header-menu src=/assets/svg/Menu.svg title=Menu><form action=/search/><input id=foreground-header-search name=search-site title=Search type=search></form></div><div id=foreground-footer><a href=#><img alt=Top id=foreground-footer-top src=/assets/svg/Top.svg title=Top></a></div></div></body></html> 0
2 · errno
<? $transport = "tls"; $host = "error.osbo.com"; $port = "443"; $remote_socket = $transport . "://" . $host . ":" . $port; $return = stream_socket_client($remote_socket, $errno); if (!$return) { exit("$errno"); } $string = "GET / HTTP/1.1\r\n"; $string .= "Host: $host\r\n"; $string .= "Connection: close\r\n\r\n"; fwrite($return, $string); $length = 1024; while (!feof($return)) { echo fgets($return, $length); } fclose($return); ?>
0
3 · errstr
<? $transport = "tls"; $host = "error.osbo.com"; $port = "443"; $remote_socket = $transport . "://" . $host . ":" . $port; $return = stream_socket_client($remote_socket, $errno, $errstr); if (!$return) { exit("$errstr ($errno)"); } $string = "GET / HTTP/1.1\r\n"; $string .= "Host: $host\r\n"; $string .= "Connection: close\r\n\r\n"; fwrite($return, $string); $length = 1024; while (!feof($return)) { echo fgets($return, $length); } fclose($return); ?>
php_network_getaddresses: getaddrinfo failed: Name or service not known (0)
4 · timeout
<? $transport = "tls"; $host = "osbo.com"; $port = "443"; $remote_socket = $transport . "://" . $host . ":" . $port; $timeout = 30; $return = stream_socket_client($remote_socket, $errno, $errstr, $timeout); if (!$return) { exit("$errstr ($errno)"); } $string = "GET / HTTP/1.1\r\n"; $string .= "Host: $host\r\n"; $string .= "Connection: close\r\n\r\n"; fwrite($return, $string); $length = 1024; while (!feof($return)) { echo fgets($return, $length); } fclose($return); ?>
HTTP/1.1 200 OK Connection: close cache-control: no-cache,no-store,no-transform x-robots-tag: noarchive,noimageindex content-type: text/html; charset=UTF-8 transfer-encoding: chunked date: Thu, 21 Sep 2023 21:11:20 GMT server: LiteSpeed strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff 10000 <!doctype html><html lang=en><head><meta charset=utf-8><meta content=osbo.com name=description><meta content=width=device-width name=viewport><title>osbo.com</title><link href=/assets/svg/ rel=icon><link href=/assets/css/ rel=stylesheet><script src=/assets/js/></script></head><body><div id=background><video id=background-video loop muted src=/assets/mp4/21.mp4></video></div><div id=ground><div id=ground-container><header><h1>osbo.com</h1></header><main><h2 id=html><a href=#html>HTML</a></h2><div class="editor1 margin"><form id=form1><textarea id=textarea1 spellcheck=false title=Edit><!doctype html> <html> <head> <title>HTML</title> </head> <body> <a href="/html/">HTML</a> </body> </html></textarea><input id=input11 title=Reset type=button value=↻><input id=input21 title=Editor type=button value=→></form><iframe id=iframe1 title=Editor></iframe></div><h2 id=css><a href=#css>CSS</a></h2><div class="editor1 margin"><form id=form2><textarea id=textarea2 spellcheck=false title=Edit><!doctype html> <html> <head> <title>CSS</title> <style> a, html { background-color: rgb(255 0 0 / 0.1); color: red; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/css/">CSS</a> </body> </html></textarea><input id=input12 title=Reset type=button value=↻><input id=input22 title=Editor type=button value=→></form><iframe id=iframe2 title=Editor></iframe></div><h2 id=js><a href=#js>JS</a></h2><div class="editor1 margin"><form id=form3><textarea id=textarea3 spellcheck=false title=Edit><!doctype html> <html> <head> <title>JS</title> <style> a, html { background-color: rgb(0 255 0 / 0.1); color: green; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/js/">JS</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html></textarea><input id=input13 title=Reset type=button value=↻><input id=input23 title=Editor type=button value=→></form><iframe id=iframe3 title=Editor></iframe></div><h2 id=php><a href=#php>PHP</a></h2><div class="editor3 margin"><pre><? echo '<!doctype html> <html> <head> <title>PHP</title> <style> a, html { background-color: rgb(255 0 255 / 0.1); color: purple; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html>'; ?></pre><pre><!doctype html> <html> <head> <title>PHP</title> <style> a, html { background-color: rgb(255 0 255 / 0.1); color: purple; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html></pre><iframe srcdoc="<!doctype html> <html> <head> <title>PHP</title> <style> a, html { background-color: rgb(255 0 255 / 0.1); color: purple; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html>" title=Editor></iframe></div><h2 id=svg><a href=#svg>SVG</a></h2><div class="editor1 margin"><form id=form4><textarea id=textarea4 spellcheck=false title=Edit><svg xmlns="http://www.w3.org/2000/svg"> <style> circle, rect, text { fill: yellow; transition-duration: 1s; } a:hover :is(circle, text) { fill: black; } </style> <rect height="100%" opacity="0.1" width="100%"/> <a href="/svg/"> <circle cx="50%" cy="50%" opacity="0.1" r="50vh"/> <text dominant-baseline="middle" text-anchor="middle" x="50%" y="50%">SVG</text> </a> </svg></textarea><input id=input14 title=Reset type=button value=↻><input id=input24 title=Editor type=button value=→></form><iframe id=iframe4 title=Editor></iframe></div></main><footer><div class=boilerplate><a href=/Jesus/>Jesus</a> · <a href=/Bible/>Bible</a></div><div class=boilerplate><a href=/html/>HTML</a> · <a href=/css/>CSS</a> · <a href=/js/>JS</a> · <a href=/php/>PHP</a> · <a href=/svg/>SVG</a></div><div class=boilerplate><a href=/applications/>Applications</a> · <a href=/more/>More</a></div><div class=boilerplate><a href=/about/>About</a> · <a href=/terms/>Terms</a></div><p id=copyright>© 2023 Osbo Design</p></footer></div><div id=ground-nav><div class=nav-h1><a href=/Jesus/>JESUS</a></div><div class=nav-h1><a id=nav-switch-Bible>BIBLE</a></div><div id=nav-content-Bible><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/Bible/>Overview</a></p></div><h2 id=search><a href=#search>Search</a></h2><div class=margin><p><a href=/Bible/search/>Search</a></p></div><h2 id=download><a href=#download>Download</a></h2><div class=margin><p><a href=/Bible/download/>Download</a></p></div><h2 id=العربية><a href=#العربية>العربية</a></h2><div class=margin><p><a href=/Bible/asvd/>ASVD الكتاب المقدس ترجمة فانديك وسميث</a></p></div><h2 id=česky><a href=#česky>česky</a></h2><div class=margin><p><a href=/Bible/csbkr/>CSBKR Bible Kralická 1613</a></p></div><h2 id=dansk><a href=#dansk>Dansk</a></h2><div class=margin><p><a href=/Bible/da1871/>DA1871 Danske Bibel 1871</a></p></div><h2 id=deutsch><a href=#deutsch>Deutsch</a></h2><div class=margin><p><a href=/Bible/delut/>DELUT Luther Bible 1912</a></p><p><a href=/Bible/elb/>ELB Elberfelder 1905</a></p><p><a href=/Bible/elb71/>ELB71 Elberfelder 1871</a></p></div><h2 id=english><a href=#english>English</a></h2><div class=margin><p><a href=/Bible/asv/>ASV American Standard Version</a></p><p><a href=/Bible/kjv/>KJV King James Version</a></p><p><a href=/Bible/web/>WEB World English Bible</a></p></div><h2 id=español><a href=#español>Español</a></h2><div class=margin><p><a href=/Bible/rves/>RVES Reina-Valera Antigua</a></p></div><h2 id=suomi><a href=#suomi>Suomi</a></h2><div class=margin><p><a href=/Bible/fi1776/>FI1776 Finnish 1776</a></p><p><a href=/Bible/finpr/>FINPR Finnish 1938</a></p></div><h2 id=français><a href=#français>Français</a></h2><div class=margin><p><a href=/Bible/fmar/>FMAR Martin 1744</a></p><p><a href=/Bible/frdby/>FRDBY Bible Darby en français</a></p><p><a href=/Bible/lsg/>LSG Louis Segond 1910</a></p><p><a href=/Bible/ost/>OST Ostervald</a></p></div><h2 id=magyar><a href=#magyar>Magyar</a></h2><div class=margin><p><a href=/Bible/kar/>KAR Károli 1590</a></p></div><h2 id=bahasa-indonesia><a href=#bahasa-indonesia>Bahasa Indonesia</a></h2><div class=margin><p><a href=/Bible/idbar/>IDBAR Terjemahan Baru</a></p></div><h2 id=italiano><a href=#italiano>Italiano</a></h2><div class=margin><p><a href=/Bible/igd/>IGD Giovanni Diodati Bibbia</a></p><p><a href=/Bible/itriv/>ITRIV Italian Riveduta 1927</a></p></div><h2 id=日本語><a href=#日本語>日本語</a></h2><div class=margin><p><a href=/Bible/ja1955/>JA1955 Colloquial Japanese (1955)</a></p></div><h2 id=malagasy><a href=#malagasy>Malagasy</a></h2><div class=margin><p><a href=/Bible/mg1865/>MG1865 Malagasy Bible</a></p></div><h2 id=te-reo-māori><a href=#te-reo-māori>te reo Māori</a></h2><div class=margin><p><a href=/Bible/maor/>MAOR Maori Bible</a></p></div><h2 id=한국어><a href=#한국어>한국어</a></h2><div class=margin><p><a href=/Bible/korvb/>KORVB 개역한글</a></p></div><h2 id=nederlands><a href=#nederlands>Nederlands</a></h2><div class=margin><p><a href=/Bible/sv1750/>SV1750 Statenvertaling</a></p></div><h2 id=norsk><a href=#norsk>Norsk</a></h2><div class=margin><p><a href=/Bible/norsk/>NORSK Det Norsk Bibelselskap 1930</a></p></div><h2 id=polski><a href=#polski>Polski</a></h2><div class=margin><p><a href=/Bible/pbg/>PBG Biblia Gdańska</a></p></div><h2 id=português><a href=#português>Português</a></h2><div class=margin><p><a href=/Bible/aa/>AA Almeida Atualizada</a></p></div><h2 id=română><a href=#română>Română</a></h2><div class=margin><p><a href=/Bible/rmnn/>RMNN Romanian Cornilescu 1928</a></p><p><a href=/Bible/vdc/>VDC Versiunea Dumitru Cornilescu</a></p><p><a href=/Bible/vdcc/>VDCC Versiunea Dumitru Cornilescu Corectată</a></p></div><h2 id=pyccкий><a href=#pyccкий>Pyccкий</a></h2><div class=margin><p><a href=/Bible/rursv/>RURSV Синодальный перевод</a></p></div><h2 id=shqip><a href=#shqip>Shqip</a></h2><div class=margin><p><a href=/Bible/albb/>ALBB Albanian Bible</a></p></div><h2 id=svenska><a href=#svenska>Svenska</a></h2><div class=margin><p><a href=/Bible/sk73/>SK73 Karl XII 1873</a></p><p><a href=/Bible/sven/>SVEN Svenska 1917</a></p></div><h2 id=wikang-tagalog><a href=#wikang-tagalog>Wikang Tagalog</a></h2><div class=margin><p><a href=/Bible/tlab/>TLAB Ang Biblia</a></p></div><h2 id=українська><a href=#українська>українська</a></h2><div class=margin><p><a href=/Bible/ubio/>UBIO Біблія в пер. Івана Огієнка, 1962</a></p><p><a href=/Bible/ukrk/>UKRK Біблія в пер. П.Куліша та І.Пулюя, 1905</a></p></div><h2 id=tiếng-việt><a href=#tiếng-việt>Tiếng Việt</a></h2><div class=margin><p><a href=/Bible/vi1934/>VI1934 1934 Vietnamese Bible</a></p></div><h2 id=简体中文><a href=#简体中文>简体中文</a></h2><div class=margin><p><a href=/Bible/cuvs/>CUVS 简体和合本</a></p></div><h2 id=繁體中文><a href=#繁體中文>繁體中文</a></h2><div class=margin><p><a href=/Bible/cuv/>CUV 和合本</a></p></div></div><div class=nav-h1><a id=nav-switch-html>HTML</a></div><div id=nav-content-html><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/html/>Overview</a></p></div><h2 id=attributes><a href=#attributes>Attributes</a></h2><div class=margin><p><a href=/html/attributes/abbr/>abbr</a></p><p><a href=/html/attributes/accept/>accept</a></p><p><a href=/html/attributes/accept-charset/>accept-charset</a></p><p><a href=/html/attributes/accesskey/>accesskey</a></p><p><a href=/html/attributes/action/>action</a></p><p><a href=/html/attributes/alt/>alt</a></p><p><a href=/html/attributes/as/>as</a></p><p><a href=/html/attributes/async/>async</a></p><p><a href=/html/attributes/autocapitalize/>autocapitalize</a></p><p><a href=/html/attributes/autocomplete/>autocomplete</a></p><p><a href=/html/attributes/autofocus/>autofocus</a></p><p><a href=/html/attributes/autoplay/>autoplay</a></p><p><a href=/html/attributes/blocking/>blocking</a></p><p><a href=/html/attributes/charset/>charset</a></p><p><a href=/html/attributes/checked/>checked</a></p><p><a href=/html/attributes/cite/>cite</a></p><p><a href=/html/attributes/class/>class</a></p><p><a href=/html/attributes/color/>color</a></p><p><a href=/html/attributes/cols/>cols</a></p><p><a href=/html/attributes/colspan/>colspan</a></p><p><a href=/html/attributes/contenteditable/>contenteditable</a></p><p><a href=/html/attributes/controls/>controls</a></p><p><a href=/html/attributes/coords/>coords</a></p><p><a href=/html/attributes/crossorigin/>crossorigin</a></p><p><a href=/html/attributes/data/>data</a></p><p><a href=/html/attributes/datetime/>datetime</a></p><p><a href=/html/attributes/decoding/>decoding</a></p><p><a href=/html/attributes/default/>default</a></p><p><a href=/html/attributes/defer/>defer</a></p><p><a href=/html/attributes/dir/>dir</a></p><p><a href=/html/attributes/dirname/>dirname</a></p><p><a href=/html/attributes/disabled/>disabled</a></p><p><a href=/html/attributes/download/>download</a></p><p><a href=/html/attributes/draggable/>draggable</a></p><p><a href=/html/attributes/enctype/>enctype</a></p><p><a href=/html/attributes/enterkeyhint/>enterkeyhint</a></p><p><a href=/html/attributes/exportparts/>exportparts</a></p><p><a href=/html/attributes/fetchpriority/>fetchpriority</a></p><p><a href=/html/attributes/for/>for</a></p><p><a href=/html/attributes/form/>form</a></p><p><a href=/html/attributes/formaction/>formaction</a></p><p><a href=/html/attributes/formenctype/>formenctype</a></p><p><a href=/html/attributes/formmethod/>formmethod</a></p><p><a href=/html/attributes/formnovalidate/>formnovalidate</a></p><p><a href=/html/attributes/formtarget/>formtarget</a></p><p><a href=/html/attributes/headers/>headers</a></p><p><a href=/html/attributes/height/>height</a></p><p><a href=/html/attributes/hidden/>hidden</a></p><p><a href=/html/attributes/high/>high</a></p><p><a href=/html/attributes/href/>href</a></p><p><a href=/html/attributes/hreflang/>hreflang</a></p><p><a href=/html/attributes/http-equiv/>http-equiv</a></p><p><a href=/html/attributes/id/>id</a></p><p><a href=/html/attributes/imagesizes/>imagesizes</a></p><p><a href=/html/attributes/imagesrcset/>imagesrcset</a></p><p><a href=/html/attributes/inert/>inert</a></p><p><a href=/html/attributes/inputmode/>inputmode</a></p><p><a href=/html/attributes/integrity/>integrity</a></p><p><a href=/html/attributes/is/>is</a></p><p><a href=/html/attributes/ismap/>ismap</a></p><p><a href=/html/attributes/itemid/>itemid</a></p><p><a href=/html/attributes/itemprop/>itemprop</a></p><p><a href=/html/attributes/itemref/>itemref</a></p><p><a href=/html/attributes/itemscope/>itemscope</a></p><p><a href=/html/attributes/itemtype/>itemtype</a></p><p><a href=/html/attributes/kind/>kind</a></p><p><a href=/html/attributes/label/>label</a></p><p><a href=/html/attributes/lang/>lang</a></p><p><a href=/html/attributes/list/>list</a></p><p><a href=/html/attributes/loading/>loading</a></p><p><a href=/html/attributes/loop/>loop</a></p><p><a href=/html/attributes/low/>low</a></p><p><a href=/html/attributes/max/>max</a></p><p><a href=/html/attributes/maxlength/>maxlength</a></p><p><a href=/html/attributes/media/>media</a></p><p><a href=/html/attributes/method/>method</a></p><p><a href=/html/attributes/min/>min</a></p><p><a href=/html/attributes/minlength/>minlength</a></p><p><a href=/html/attributes/multiple/>multiple</a></p><p><a href=/html/attributes/muted/>muted</a></p><p><a href=/html/attributes/name/>name</a></p><p><a href=/html/attributes/nomodule/>nomodule</a></p><p><a href=/html/attributes/nonce/>nonce</a></p><p><a href=/html/attributes/novalidate/>novalidate</a></p><p><a href=/html/attributes/onabort/>onabort</a></p><p><a href=/html/attributes/onafterprint/>onafterprint</a></p><p><a href=/html/attributes/onauxclick/>onauxclick</a></p><p><a href=/html/attributes/onbeforeinput/>onbeforeinput</a></p><p><a href=/html/attributes/onbeforeprint/>onbeforeprint</a></p><p><a href=/html/attributes/onbeforetoggle/>onbeforetoggle</a></p><p><a href=/html/attributes/onbeforeunload/>onbeforeunload</a></p><p><a href=/html/attributes/onblur/>onblur</a></p><p><a href=/html/attributes/oncancel/>oncancel</a></p><p><a href=/html/attributes/oncanplay/>oncanplay</a></p><p><a href=/html/attributes/oncanplaythrough/>oncanplaythrough</a></p><p><a href=/html/attributes/onchange/>onchange</a></p><p><a href=/html/attributes/onclick/>onclick</a></p><p><a href=/html/attributes/oncontextlost/>oncontextlost</a></p><p><a href=/html/attributes/oncontextmenu/>oncontextmenu</a></p><p><a href=/html/attributes/oncontextrestored/>oncontextrestored</a></p><p><a href=/html/attributes/oncopy/>oncopy</a></p><p><a href=/html/attributes/oncut/>oncut</a></p><p><a href=/html/attributes/ondblclick/>ondblclick</a></p><p><a href=/html/attributes/ondrag/>ondrag</a></p><p><a href=/html/attributes/ondragend/>ondragend</a></p><p><a href=/html/attributes/ondragenter/>ondragenter</a></p><p><a href=/html/attributes/ondragleave/>ondragleave</a></p><p><a href=/html/attributes/ondragover/>ondragover</a></p><p><a href=/html/attributes/ondragstart/>ondragstart</a></p><p><a href=/html/attributes/ondrop/>ondrop</a></p><p><a href=/html/attributes/ondurationchange/>ondurationchange</a></p><p><a href=/html/attributes/onended/>onended</a></p><p><a href=/html/attributes/onfocus/>onfocus</a></p><p><a href=/html/attributes/onformdata/>onformdata</a></p><p><a href=/html/attributes/onhashchange/>onhashchange</a></p><p><a href=/html/attributes/oninput/>oninput</a></p><p><a href=/html/attributes/oninvalid/>oninvalid</a></p><p><a href=/html/attributes/onkeydown/>onkeydown</a></p><p><a href=/html/attributes/onkeypress/>onkeypress</a></p><p><a href=/html/attributes/onkeyup/>onkeyup</a></p><p><a href=/html/attributes/onlanguagechange/>onlanguagechange</a></p><p><a href=/html/attributes/onload/>onload</a></p><p><a href=/html/attributes/onloadeddata/>onloadeddata</a></p><p><a href=/html/attributes/onloadedmetadata/>onloadedmetadata</a></p><p><a href=/html/attributes/onloadstart/>onloadstart</a></p><p><a href=/html/attributes/onmousedown/>onmousedown</a></p><p><a href=/html/attributes/onmouseenter/>onmouseenter</a></p><p><a href=/html/attributes/onmouseleave/>onmouseleave</a></p><p><a href=/html/attributes/onmousemove/>onmousemove</a></p><p><a href=/html/attributes/onmouseout/>onmouseout</a></p><p><a href=/html/attributes/onmouseover/>onmouseover</a></p><p><a href=/html/attributes/onmouseup/>onmouseup</a></p><p><a href=/html/attributes/onmousewheel/>onmousewheel</a></p><p><a href=/html/attributes/onoffline/>onoffline</a></p><p><a href=/html/attributes/ononline/>ononline</a></p><p><a href=/html/attributes/onpagehide/>onpagehide</a></p><p><a href=/html/attributes/onpageshow/>onpageshow</a></p><p><a href=/html/attributes/onpaste/>onpaste</a></p><p><a href=/html/attributes/onpause/>onpause</a></p><p><a href=/html/attributes/onplay/>onplay</a></p><p><a href=/html/attributes/onplaying/>onplaying</a></p><p><a href=/html/attributes/onprogress/>onprogress</a></p><p><a href=/html/attributes/onratechange/>onratechange</a></p><p><a href=/html/attributes/onreset/>onreset</a></p><p><a href=/html/attributes/onresize/>onresize</a></p><p><a href=/html/attributes/onscroll/>onscroll</a></p><p><a href=/html/attributes/onscrollend/>onscrollend</a></p><p><a href=/html/attributes/onsearch/>onsearch</a></p><p><a href=/html/attributes/onseeked/>onseeked</a></p><p><a href=/html/attributes/onseeking/>onseeking</a></p><p><a href=/html/attributes/onselect/>onselect</a></p><p><a href=/html/attributes/onstorage/>onstorage</a></p><p><a href=/html/attributes/onsubmit/>onsubmit</a></p><p><a href=/html/attributes/onsuspend/>onsuspend</a></p><p><a href=/html/attributes/ontimeupdate/>ontimeupdate</a></p><p><a href=/html/attributes/ontoggle/>ontoggle</a></p><p><a href=/html/attributes/onunload/>onunload</a></p><p><a href=/html/attributes/onvolumechange/>onvolumechange</a></p><p><a href=/html/attributes/onwaiting/>onwaiting</a></p><p><a href=/html/attributes/onwheel/>onwheel</a></p><p><a href=/html/attributes/open/>open</a></p><p><a href=/html/attributes/optimum/>optimum</a></p><p><a href=/html/attributes/part/>part</a></p><p><a href=/html/attributes/pattern/>pattern</a></p><p><a href=/html/attributes/ping/>ping</a></p><p><a href=/html/attributes/placeholder/>placeholder</a></p><p><a href=/html/attributes/playsinline/>playsinline</a></p><p><a href=/html/attributes/popover/>popover</a></p><p><a href=/html/attributes/popovertarget/>popovertarget</a></p><p><a href=/html/attributes/popovertargetaction/>popovertargetaction</a></p><p><a href=/html/attributes/poster/>poster</a></p><p><a href=/html/attributes/preload/>preload</a></p><p><a href=/html/attributes/readonly/>readonly</a></p><p><a href=/html/attributes/referrerpolicy/>referrerpolicy</a></p><p><a href=/html/attributes/rel/>rel</a></p><p><a href=/html/attributes/required/>required</a></p><p><a href=/html/attributes/reversed/>reversed</a></p><p><a href=/html/attributes/rows/>rows</a></p><p><a href=/html/attributes/rowspan/>rowspan</a></p><p><a href=/html/attributes/sandbox/>sandbox</a></p><p><a href=/html/attributes/scope/>scope</a></p><p><a href=/html/attributes/selected/>selected</a></p><p><a href=/html/attributes/shape/>shape</a></p><p><a href=/html/attributes/size/>size</a></p><p><a href=/html/attributes/sizes/>sizes</a></p><p><a href=/html/attributes/slot/>slot</a></p><p><a href=/html/attributes/span/>span</a></p><p><a href=/html/attributes/spellcheck/>spellcheck</a></p><p><a href=/html/attributes/src/>src</a></p><p><a href=/html/attributes/srcdoc/>srcdoc</a></p><p><a href=/html/attributes/srclang/>srclang</a></p><p><a href=/html/attributes/srcset/>srcset</a></p><p><a href=/html/attributes/start/>start</a></p><p><a href=/html/attributes/step/>step</a></p><p><a href=/html/attributes/style/>style</a></p><p><a href=/html/attributes/tabindex/>tabindex</a></p><p><a href=/html/attributes/target/>target</a></p><p><a href=/html/attributes/title/>title</a></p><p><a href=/html/attributes/translate/>translate</a></p><p><a href=/html/attributes/type/>type</a></p><p><a href=/html/attributes/usemap/>usemap</a></p><p><a href=/html/attributes/value/>value</a></p><p><a href=/html/attributes/width/>width</a></p><p><a href=/html/attributes/wrap/>wrap</a></p></div><h2 id=elements><a href=#elements>Elements</a></h2><div class=margin><p><a href=/html/elements/!doctype/>!doctype</a></p><p><a href=/html/elements/a/>a</a></p><p><a href=/html/elements/abbr/>abbr</a></p><p><a href=/html/elements/address/>address</a></p><p><a href=/html/elements/area/>area</a></p><p><a href=/html/elements/article/>article</a></p><p><a href=/html/elements/aside/>aside</a></p><p><a href=/html/elements/audio/>audio</a></p><p><a href=/html/elements/b/>b</a></p><p><a href=/html/elements/base/>base</a></p><p><a href=/html/elements/bdi/>bdi</a></p><p><a href=/html/elements/bdo/>bdo</a></p><p><a href=/html/elements/blockquote/>blockquote</a></p><p><a href=/html/elements/body/>body</a></p><p><a href=/html/elements/br/>br</a></p><p><a href=/html/elements/button/>button</a></p><p><a href=/html/elements/canvas/>canvas</a></p><p><a href=/html/elements/caption/>caption</a></p><p><a href=/html/elements/cite/>cite</a></p><p><a href=/html/elements/code/>code</a></p><p><a href=/html/elements/col/>col</a></p><p><a href=/html/elements/colgroup/>colgroup</a></p><p><a href=/html/elements/data/>data</a></p><p><a href=/html/elements/datalist/>datalist</a></p><p><a href=/html/elements/dd/>dd</a></p><p><a href=/html/elements/del/>del</a></p><p><a href=/html/elements/details/>details</a></p><p><a href=/html/elements/dfn/>dfn</a></p><p><a href=/html/elements/dialog/>dialog</a></p><p><a href=/html/elements/div/>div</a></p><p><a href=/html/elements/dl/>dl</a></p><p><a href=/html/elements/dt/>dt</a></p><p><a href=/html/elements/em/>em</a></p><p><a href=/html/elements/embed/>embed</a></p><p><a href=/html/elements/fieldset/>fieldset</a></p><p><a href=/html/elements/figcaption/>figcaption</a></p><p><a href=/html/elements/figure/>figure</a></p><p><a href=/html/elements/footer/>footer</a></p><p><a href=/html/elements/form/>form</a></p><p><a href=/html/elements/h1/>h1</a></p><p><a href=/html/elements/h2/>h2</a></p><p><a href=/html/elements/h3/>h3</a></p><p><a href=/html/elements/h4/>h4</a></p><p><a href=/html/elements/h5/>h5</a></p><p><a href=/html/elements/h6/>h6</a></p><p><a href=/html/elements/head/>head</a></p><p><a href=/html/elements/header/>header</a></p><p><a href=/html/elements/hgroup/>hgroup</a></p><p><a href=/html/elements/hr/>hr</a></p><p><a href=/html/elements/html/>html</a></p><p><a href=/html/elements/i/>i</a></p><p><a href=/html/elements/iframe/>iframe</a></p><p><a href=/html/elements/img/>img</a></p><p><a href=/html/elements/input/>input</a></p><p><a href=/html/elements/ins/>ins</a></p><p><a href=/html/elements/kbd/>kbd</a></p><p><a href=/html/elements/label/>label</a></p><p><a href=/html/elements/legend/>legend</a></p><p><a href=/html/elements/li/>li</a></p><p><a href=/html/elements/link/>link</a></p><p><a href=/html/elements/main/>main</a></p><p><a href=/html/elements/map/>map</a></p><p><a href=/html/elements/mark/>mark</a></p><p><a href=/html/elements/menu/>menu</a></p><p><a href=/html/elements/meta/>meta</a></p><p><a href=/html/elements/meter/>meter</a></p><p><a href=/html/elements/nav/>nav</a></p><p><a href=/html/elements/noscript/>noscript</a></p><p><a href=/html/elements/object/>object</a></p><p><a href=/html/elements/ol/>ol</a></p><p><a href=/html/elements/optgroup/>optgroup</a></p><p><a href=/html/elements/option/>option</a></p><p><a href=/html/elements/output/>output</a></p><p><a href=/html/elements/p/>p</a></p><p><a href=/html/elements/param/>param</a></p><p><a href=/html/elements/picture/>picture</a></p><p><a href=/html/elements/pre/>pre</a></p><p><a href=/html/elements/progress/>progress</a></p><p><a href=/html/elements/q/>q</a></p><p><a href=/html/elements/rb/>rb</a></p><p><a href=/html/elements/rp/>rp</a></p><p><a href=/html/elements/rt/>rt</a></p><p><a href=/html/elements/rtc/>rtc</a></p><p><a href=/html/elements/ruby/>ruby</a></p><p><a href=/html/elements/s/>s</a></p><p><a href=/html/elements/samp/>samp</a></p><p><a href=/html/elements/script/>script</a></p><p><a href=/html/elements/search/>search</a></p><p><a href=/html/elements/section/>section</a></p><p><a href=/html/elements/select/>select</a></p><p><a href=/html/elements/slot/>slot</a></p><p><a href=/html/elements/small/>small</a></p><p><a href=/html/elements/source/>source</a></p><p><a href=/html/elements/span/>span</a></p><p><a href=/html/elements/strong/>strong</a></p><p><a href=/html/elements/style/>style</a></p><p><a href=/html/elements/sub/>sub</a></p><p><a href=/html/elements/summary/>summary</a></p><p><a href=/html/elements/sup/>sup</a></p><p><a href=/html/elements/table/>table</a></p><p><a href=/html/elements/tbody/>tbody</a></p><p><a href=/html/elements/td/>td</a></p><p><a href=/html/elements/template/>template</a></p><p><a href=/html/elements/textarea/>textarea</a></p><p><a href=/html/elements/tfoot/>tfoot</a></p><p><a href=/html/elements/th/>th</a></p><p><a href=/html/elements/thead/>thead</a></p><p><a href=/html/elements/time/>time</a></p><p><a href=/html/elements/title/>title</a></p><p><a href=/html/elements/tr/>tr</a></p><p><a href=/html/elements/track/>track</a></p><p><a href=/html/elements/u/>u</a></p><p><a href=/html/elements/ul/>ul</a></p><p><a href=/html/elements/var/>var</a></p><p><a href=/html/elements/video/>video</a></p><p><a href=/html/elements/wbr/>wbr</a></p></div><h2 id=other><a href=#other>Other</a></h2><div class=margin><p><a href=/html/characters/>Characters</a></p><p><a href=/html/comments/>Comments</a></p><p><a href=/html/datatypes/>Datatypes</a></p></div></div><div class=nav-h1><a id=nav-switch-css>CSS</a></div><div id=nav-content-css><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/css/>Overview</a></p></div><h2 id=functions><a href=#functions>Functions</a></h2><div class=margin><p><a href=/css/functions/abs/>abs</a></p><p><a href=/css/functions/acos/>acos</a></p><p><a href=/css/functions/asin/>asin</a></p><p><a href=/css/functions/atan/>atan</a></p><p><a href=/css/functions/atan2/>atan2</a></p><p><a href=/css/functions/attr/>attr</a></p><p><a href=/css/functions/calc/>calc</a></p><p><a href=/css/functions/clamp/>clamp</a></p><p><a href=/css/functions/color/>color</a></p><p><a href=/css/functions/conic-gradient/>conic-gradient</a></p><p><a href=/css/functions/cos/>cos</a></p><p><a href=/css/functions/counter/>counter</a></p><p><a href=/css/functions/counters/>counters</a></p><p><a href=/css/functions/hsl/>hsl</a></p><p><a href=/css/functions/hsla/>hsla</a></p><p><a href=/css/functions/hwb/>hwb</a></p><p><a href=/css/functions/lab/>lab</a></p><p><a href=/css/functions/lch/>lch</a></p><p><a href=/css/functions/linear-gradient/>linear-gradient</a></p><p><a href=/css/functions/matrix/>matrix</a></p><p><a href=/css/functions/matrix3d/>matrix3d</a></p><p><a href=/css/functions/max/>max</a></p><p><a href=/css/functions/min/>min</a></p><p><a href=/css/functions/mod/>mod</a></p><p><a href=/css/functions/oklab/>oklab</a></p><p><a href=/css/functions/oklch/>oklch</a></p><p><a href=/css/functions/param/>param</a></p><p><a href=/css/functions/perspective/>perspective</a></p><p><a href=/css/functions/radial-gradient/>radial-gradient</a></p><p><a href=/css/functions/rem/>rem</a></p><p><a href=/css/functions/repeating-conic-gradient/>repeating-conic-gradient</a></p><p><a href=/css/functions/repeating-linear-gradient/>repeating-linear-gradient</a></p><p><a href=/css/functions/repeating-radial-gradient/>repeating-radial-gradient</a></p><p><a href=/css/functions/rgb/>rgb</a></p><p><a href=/css/functions/rgba/>rgba</a></p><p><a href=/css/functions/rotate/>rotate</a></p><p><a href=/css/functions/rotate3d/>rotate3d</a></p><p><a href=/css/functions/rotatex/>rotateX</a></p><p><a href=/css/functions/rotatey/>rotateY</a></p><p><a href=/css/functions/rotatez/>rotateZ</a></p><p><a href=/css/functions/round/>round</a></p><p><a href=/css/functions/scale/>scale</a></p><p><a href=/css/functions/scale3d/>scale3d</a></p><p><a href=/css/functions/scalex/>scaleX</a></p><p><a href=/css/functions/scaley/>scaleY</a></p><p><a href=/css/functions/scalez/>scaleZ</a></p><p><a href=/css/functions/sin/>sin</a></p><p><a href=/css/functions/skew/>skew</a></p><p><a href=/css/functions/skewx/>skewX</a></p><p><a href=/css/functions/skewy/>skewY</a></p><p><a href=/css/functions/src/>src</a></p><p><a href=/css/functions/tan/>tan</a></p><p><a href=/css/functions/translate/>translate</a></p><p><a href=/css/functions/translate3d/>translate3d</a></p><p><a href=/css/functions/translatex/>translateX</a></p><p><a href=/css/functions/translatey/>translateY</a></p><p><a href=/css/functions/translatez/>translateZ</a></p><p><a href=/css/functions/url/>url</a></p><p><a href=/css/functions/var/>var</a></p></div><h2 id=properties><a href=#properties>Properties</a></h2><div class=margin><p><a href=/css/properties/accent-color/>accent-color</a></p><p><a href=/css/properties/align-content/>align-content</a></p><p><a href=/css/properties/align-items/>align-items</a></p><p><a href=/css/properties/align-self/>align-self</a></p><p><a href=/css/properties/all/>all</a></p><p><a href=/css/properties/animation/>animation</a></p><p><a href=/css/properties/animation-composition/>animation-composition</a></p><p><a href=/css/properties/animation-delay/>animation-delay</a></p><p><a href=/css/properties/animation-direction/>animation-direction</a></p><p><a href=/css/properties/animation-duration/>animation-duration</a></p><p><a href=/css/properties/animation-fill-mode/>animation-fill-mode</a></p><p><a href=/css/properties/animation-iteration-count/>animation-iteration-count</a></p><p><a href=/css/properties/animation-name/>animation-name</a></p><p><a href=/css/properties/animation-play-state/>animation-play-state</a></p><p><a href=/css/properties/animation-timeline/>animation-timeline</a></p><p><a href=/css/properties/animation-timing-function/>animation-timing-function</a></p><p><a href=/css/properties/appearance/>appearance</a></p><p><a href=/css/properties/aspect-ratio/>aspect-ratio</a></p><p><a href=/css/properties/backdrop-filter/>backdrop-filter</a></p><p><a href=/css/properties/backface-visibility/>backface-visibility</a></p><p><a href=/css/properties/background/>background</a></p><p><a href=/css/properties/background-attachment/>background-attachment</a></p><p><a href=/css/properties/background-blend-mode/>background-blend-mode</a></p><p><a href=/css/properties/background-clip/>background-clip</a></p><p><a href=/css/properties/background-color/>background-color</a></p><p><a href=/css/properties/background-image/>background-image</a></p><p><a href=/css/properties/background-origin/>background-origin</a></p><p><a href=/css/properties/background-position/>background-position</a></p><p><a href=/css/properties/background-position-x/>background-position-x</a></p><p><a href=/css/properties/background-position-y/>background-position-y</a></p><p><a href=/css/properties/background-repeat/>background-repeat</a></p><p><a href=/css/properties/background-size/>background-size</a></p><p><a href=/css/properties/block-ellipsis/>block-ellipsis</a></p><p><a href=/css/properties/block-size/>block-size</a></p><p><a href=/css/properties/border/>border</a></p><p><a href=/css/properties/border-block/>border-block</a></p><p><a href=/css/properties/border-block-color/>border-block-color</a></p><p><a href=/css/properties/border-block-end/>border-block-end</a></p><p><a href=/css/properties/border-block-end-color/>border-block-end-color</a></p><p><a href=/css/properties/border-block-end-style/>border-block-end-style</a></p><p><a href=/css/properties/border-block-end-width/>border-block-end-width</a></p><p><a href=/css/properties/border-block-start/>border-block-start</a></p><p><a href=/css/properties/border-block-start-color/>border-block-start-color</a></p><p><a href=/css/properties/border-block-start-style/>border-block-start-style</a></p><p><a href=/css/properties/border-block-start-width/>border-block-start-width</a></p><p><a href=/css/properties/border-block-style/>border-block-style</a></p><p><a href=/css/properties/border-block-width/>border-block-width</a></p><p><a href=/css/properties/border-bottom/>border-bottom</a></p><p><a href=/css/properties/border-bottom-color/>border-bottom-color</a></p><p><a href=/css/properties/border-bottom-left-radius/>border-bottom-left-radius</a></p><p><a href=/css/properties/border-bottom-right-radius/>border-bottom-right-radius</a></p><p><a href=/css/properties/border-bottom-style/>border-bottom-style</a></p><p><a href=/css/properties/border-bottom-width/>border-bottom-width</a></p><p><a href=/css/properties/border-collapse/>border-collapse</a></p><p><a href=/css/properties/border-color/>border-color</a></p><p><a href=/css/properties/border-end-end-radius/>border-end-end-radius</a></p><p><a href=/css/properties/border-end-start-radius/>border-end-start-radius</a></p><p><a href=/css/properties/border-image/>border-image</a></p><p><a href=/css/properties/border-image-outset/>border-image-outset</a></p><p><a href=/css/properties/border-image-repeat/>border-image-repeat</a></p><p><a href=/css/properties/border-image-slice/>border-image-slice</a></p><p><a href=/css/properties/border-image-source/>border-image-source</a></p><p><a href=/css/properties/border-image-width/>border-image-width</a></p><p><a href=/css/properties/border-inline/>border-inline</a></p><p><a href=/css/properties/border-inline-color/>border-inline-color</a></p><p><a href=/css/properties/border-inline-end/>border-inline-end</a></p><p><a href=/css/properties/border-inline-end-color/>border-inline-end-color</a></p><p><a href=/css/properties/border-inline-end-style/>border-inline-end-style</a></p><p><a href=/css/properties/border-inline-end-width/>border-inline-end-width</a></p><p><a href=/css/properties/border-inline-start/>border-inline-start</a></p><p><a href=/css/properties/border-inline-start-color/>border-inline-start-color</a></p><p><a href=/css/properties/border-inline-start-style/>border-inline-start-style</a></p><p><a href=/css/properties/border-inline-start-width/>border-inline-start-width</a></p><p><a href=/css/properties/border-inline-style/>border-inline-style</a></p><p><a href=/css/properties/border-inline-width/>border-inline-width</a></p><p><a href=/css/properties/border-left/>border-left</a></p><p><a href=/css/properties/border-left-color/>border-left-color</a></p><p><a href=/css/properties/border-left-style/>border-left-style</a></p><p><a href=/css/properties/border-left-width/>border-left-width</a></p><p><a href=/css/properties/border-radius/>border-radius</a></p><p><a href=/css/properties/border-right/>border-right</a></p><p><a href=/css/properties/border-right-color/>border-right-color</a></p><p><a href=/css/properties/border-right-style/>border-right-style</a></p><p><a href=/css/properties/border-right-width/>border-right-width</a></p><p><a href=/css/properties/border-spacing/>border-spacing</a></p><p><a href=/css/properties/border-start-end-radius/>border-start-end-radius</a></p><p><a href=/css/properties/border-start-start-radius/>border-start-start-radius</a></p><p><a href=/css/properties/border-style/>border-style</a></p><p><a href=/css/properties/border-top/>border-top</a></p><p><a href=/css/properties/border-top-color/>border-top-color</a></p><p><a href=/css/properties/border-top-left-radius/>border-top-left-radius</a></p><p><a href=/css/properties/border-top-right-radius/>border-top-right-radius</a></p><p><a href=/css/properties/border-top-style/>border-top-style</a></p><p><a href=/css/properties/border-top-width/>border-top-width</a></p><p><a href=/css/properties/border-width/>border-width</a></p><p><a href=/css/properties/bottom/>bottom</a></p><p><a href=/css/properties/box-decoration-break/>box-decoration-break</a></p><p><a href=/css/properties/box-shadow/>box-shadow</a></p><p><a href=/css/properties/box-sizing/>box-sizing</a></p><p><a href=/css/properties/caption-side/>caption-side</a></p><p><a href=/css/properties/caret/>caret</a></p><p><a href=/css/properties/caret-color/>caret-color</a></p><p><a href=/css/properties/caret-shape/>caret-shape</a></p><p><a href=/css/properties/clear/>clear</a></p><p><a href=/css/properties/clip/>clip</a></p><p><a href=/css/properties/clip-path/>clip-path</a></p><p><a href=/css/properties/color/>color</a></p><p><a href=/css/properties/color-scheme/>color-scheme</a></p><p><a href=/css/properties/column-count/>column-count</a></p><p><a href=/css/properties/column-fill/>column-fill</a></p><p><a href=/css/properties/column-gap/>column-gap</a></p><p><a href=/css/properties/column-rule/>column-rule</a></p><p><a href=/css/properties/column-rule-color/>column-rule-color</a></p><p><a href=/css/properties/column-rule-style/>column-rule-style</a></p><p><a href=/css/properties/column-rule-width/>column-rule-width</a></p><p><a href=/css/properties/column-span/>column-span</a></p><p><a href=/css/properties/column-width/>column-width</a></p><p><a href=/css/properties/columns/>columns</a></p><p><a href=/css/properties/contain/>contain</a></p><p><a href=/css/properties/contain-intrinsic-block-size/>contain-intrinsic-block-size</a></p><p><a href=/css/properties/contain-intrinsic-height/>contain-intrinsic-height</a></p><p><a href=/css/properties/contain-intrinsic-inline-size/>contain-intrinsic-inline-size</a></p><p><a href=/css/properties/contain-intrinsic-size/>contain-intrinsic-size</a></p><p><a href=/css/properties/contain-intrinsic-width/>contain-intrinsic-width</a></p><p><a href=/css/properties/container/>container</a></p><p><a href=/css/properties/container-name/>container-name</a></p><p><a href=/css/properties/container-type/>container-type</a></p><p><a href=/css/properties/content/>content</a></p><p><a href=/css/properties/content-visibility/>content-visibility</a></p><p><a href=/css/properties/continue/>continue</a></p><p><a href=/css/properties/counter-increment/>counter-increment</a></p><p><a href=/css/properties/counter-reset/>counter-reset</a></p><p><a href=/css/properties/counter-set/>counter-set</a></p><p><a href=/css/properties/cursor/>cursor</a></p><p><a href=/css/properties/direction/>direction</a></p><p><a href=/css/properties/display/>display</a></p><p><a href=/css/properties/empty-cells/>empty-cells</a></p><p><a href=/css/properties/filter/>filter</a></p><p><a href=/css/properties/flex/>flex</a></p><p><a href=/css/properties/flex-basis/>flex-basis</a></p><p><a href=/css/properties/flex-direction/>flex-direction</a></p><p><a href=/css/properties/flex-flow/>flex-flow</a></p><p><a href=/css/properties/flex-grow/>flex-grow</a></p><p><a href=/css/properties/flex-shrink/>flex-shrink</a></p><p><a href=/css/properties/flex-wrap/>flex-wrap</a></p><p><a href=/css/properties/float/>float</a></p><p><a href=/css/properties/font/>font</a></p><p><a href=/css/properties/font-family/>font-family</a></p><p><a href=/css/properties/font-feature-settings/>font-feature-settings</a></p><p><a href=/css/properties/font-kerning/>font-kerning</a></p><p><a href=/css/properties/font-optical-sizing/>font-optical-sizing</a></p><p><a href=/css/properties/font-size/>font-size</a></p><p><a href=/css/properties/font-size-adjust/>font-size-adjust</a></p><p><a href=/css/properties/font-stretch/>font-stretch</a></p><p><a href=/css/properties/font-style/>font-style</a></p><p><a href=/css/properties/font-variant/>font-variant</a></p><p><a href=/css/properties/font-variant-caps/>font-variant-caps</a></p><p><a href=/css/properties/font-variant-ligatures/>font-variant-ligatures</a></p><p><a href=/css/properties/font-variant-numeric/>font-variant-numeric</a></p><p><a href=/css/properties/font-variant-position/>font-variant-position</a></p><p><a href=/css/properties/font-variation-settings/>font-variation-settings</a></p><p><a href=/css/properties/font-weight/>font-weight</a></p><p><a href=/css/properties/forced-color-adjust/>forced-color-adjust</a></p><p><a href=/css/properties/gap/>gap</a></p><p><a href=/css/properties/grid/>grid</a></p><p><a href=/css/properties/grid-area/>grid-area</a></p><p><a href=/css/properties/grid-auto-columns/>grid-auto-columns</a></p><p><a href=/css/properties/grid-auto-flow/>grid-auto-flow</a></p><p><a href=/css/properties/grid-auto-rows/>grid-auto-rows</a></p><p><a href=/css/properties/grid-column/>grid-column</a></p><p><a href=/css/properties/grid-column-end/>grid-column-end</a></p><p><a href=/css/properties/grid-column-start/>grid-column-start</a></p><p><a href=/css/properties/grid-row/>grid-row</a></p><p><a href=/css/properties/grid-row-end/>grid-row-end</a></p><p><a href=/css/properties/grid-row-start/>grid-row-start</a></p><p><a href=/css/properties/grid-template/>grid-template</a></p><p><a href=/css/properties/grid-template-areas/>grid-template-areas</a></p><p><a href=/css/properties/grid-template-columns/>grid-template-columns</a></p><p><a href=/css/properties/grid-template-rows/>grid-template-rows</a></p><p><a href=/css/properties/hanging-punctuation/>hanging-punctuation</a></p><p><a href=/css/properties/height/>height</a></p><p><a href=/css/properties/hyphens/>hyphens</a></p><p><a href=/css/properties/image-rendering/>image-rendering</a></p><p><a href=/css/properties/initial-letter/>initial-letter</a></p><p><a href=/css/properties/initial-letter-align/>initial-letter-align</a></p><p><a href=/css/properties/inline-size/>inline-size</a></p><p><a href=/css/properties/inset/>inset</a></p><p><a href=/css/properties/inset-block/>inset-block</a></p><p><a href=/css/properties/inset-block-end/>inset-block-end</a></p><p><a href=/css/properties/inset-block-start/>inset-block-start</a></p><p><a href=/css/properties/inset-inline/>inset-inline</a></p><p><a href=/css/properties/inset-inline-end/>inset-inline-end</a></p><p><a href=/css/properties/inset-inline-start/>inset-inline-start</a></p><p><a href=/css/properties/isolation/>isolation</a></p><p><a href=/css/properties/justify-content/>justify-content</a></p><p><a href=/css/properties/justify-items/>justify-items</a></p><p><a href=/css/properties/justify-self/>justify-self</a></p><p><a href=/css/properties/left/>left</a></p><p><a href=/css/properties/letter-spacing/>letter-spacing</a></p><p><a href=/css/properties/line-break/>line-break</a></p><p><a href=/css/properties/line-clamp/>line-clamp</a></p><p><a href=/css/properties/line-height/>line-height</a></p><p><a href=/css/properties/list-style/>list-style</a></p><p><a href=/css/properties/list-style-image/>list-style-image</a></p><p><a href=/css/properties/list-style-position/>list-style-position</a></p><p><a href=/css/properties/list-style-type/>list-style-type</a></p><p><a href=/css/properties/margin/>margin</a></p><p><a href=/css/properties/margin-block/>margin-block</a></p><p><a href=/css/properties/margin-block-end/>margin-block-end</a></p><p><a href=/css/properties/margin-block-start/>margin-block-start</a></p><p><a href=/css/properties/margin-bottom/>margin-bottom</a></p><p><a href=/css/properties/margin-inline/>margin-inline</a></p><p><a href=/css/properties/margin-inline-end/>margin-inline-end</a></p><p><a href=/css/properties/margin-inline-start/>margin-inline-start</a></p><p><a href=/css/properties/margin-left/>margin-left</a></p><p><a href=/css/properties/margin-right/>margin-right</a></p><p><a href=/css/properties/margin-top/>margin-top</a></p><p><a href=/css/properties/mask/>mask</a></p><p><a href=/css/properties/mask-border/>mask-border</a></p><p><a href=/css/properties/mask-border-mode/>mask-border-mode</a></p><p><a href=/css/properties/mask-border-outset/>mask-border-outset</a></p><p><a href=/css/properties/mask-border-repeat/>mask-border-repeat</a></p><p><a href=/css/properties/mask-border-slice/>mask-border-slice</a></p><p><a href=/css/properties/mask-border-source/>mask-border-source</a></p><p><a href=/css/properties/mask-border-width/>mask-border-width</a></p><p><a href=/css/properties/mask-clip/>mask-clip</a></p><p><a href=/css/properties/mask-composite/>mask-composite</a></p><p><a href=/css/properties/mask-image/>mask-image</a></p><p><a href=/css/properties/mask-mode/>mask-mode</a></p><p><a href=/css/properties/mask-origin/>mask-origin</a></p><p><a href=/css/properties/mask-position/>mask-position</a></p><p><a href=/css/properties/mask-repeat/>mask-repeat</a></p><p><a href=/css/properties/mask-size/>mask-size</a></p><p><a href=/css/properties/mask-type/>mask-type</a></p><p><a href=/css/properties/math-depth/>math-depth</a></p><p><a href=/css/properties/math-shift/>math-shift</a></p><p><a href=/css/properties/math-style/>math-style</a></p><p><a href=/css/properties/max-block-size/>max-block-size</a></p><p><a href=/css/properties/max-height/>max-height</a></p><p><a href=/css/properties/max-inline-size/>max-inline-size</a></p><p><a href=/css/properties/max-lines/>max-lines</a></p><p><a href=/css/properties/max-width/>max-width</a></p><p><a href=/css/properties/min-block-size/>min-block-size</a></p><p><a href=/css/properties/min-height/>min-height</a></p><p><a href=/css/properties/min-inline-size/>min-inline-size</a></p><p><a href=/css/properties/min-width/>min-width</a></p><p><a href=/css/properties/mix-blend-mode/>mix-blend-mode</a></p><p><a href=/css/properties/nav-down/>nav-down</a></p><p><a href=/css/properties/nav-left/>nav-left</a></p><p><a href=/css/properties/nav-right/>nav-right</a></p><p><a href=/css/properties/nav-up/>nav-up</a></p><p><a href=/css/properties/object-fit/>object-fit</a></p><p><a href=/css/properties/object-position/>object-position</a></p><p><a href=/css/properties/opacity/>opacity</a></p><p><a href=/css/properties/orphans/>orphans</a></p><p><a href=/css/properties/outline/>outline</a></p><p><a href=/css/properties/outline-color/>outline-color</a></p><p><a href=/css/properties/outline-offset/>outline-offset</a></p><p><a href=/css/properties/outline-style/>outline-style</a></p><p><a href=/css/properties/outline-width/>outline-width</a></p><p><a href=/css/properties/overflow/>overflow</a></p><p><a href=/css/properties/overflow-block/>overflow-block</a></p><p><a href=/css/properties/overflow-clip-margin/>overflow-clip-margin</a></p><p><a href=/css/properties/overflow-inline/>overflow-inline</a></p><p><a href=/css/properties/overflow-wrap/>overflow-wrap</a></p><p><a href=/css/properties/overflow-x/>overflow-x</a></p><p><a href=/css/properties/overflow-y/>overflow-y</a></p><p><a href=/css/properties/padding/>padding</a></p><p><a href=/css/properties/padding-block/>padding-block</a></p><p><a href=/css/properties/padding-block-end/>padding-block-end</a></p><p><a href=/css/properties/padding-block-start/>padding-block-start</a></p><p><a href=/css/properties/padding-bottom/>padding-bottom</a></p><p><a href=/css/properties/padding-inline/>padding-inline</a></p><p><a href=/css/properties/padding-inline-end/>padding-inline-end</a></p><p><a href=/css/properties/padding-inline-start/>padding-inline-start</a></p><p><a href=/css/properties/padding-left/>padding-left</a></p><p><a href=/css/properties/padding-right/>padding-right</a></p><p><a href=/css/properties/padding-top/>padding-top</a></p><p><a href=/css/properties/paint-order/>paint-order</a></p><p><a href=/css/properties/perspective/>perspective</a></p><p><a href=/css/properties/perspective-origin/>perspective-origin</a></p><p><a href=/css/properties/place-content/>place-content</a></p><p><a href=/css/properties/place-items/>place-items</a></p><p><a href=/css/properties/place-self/>place-self</a></p><p><a href=/css/properties/pointer-events/>pointer-events</a></p><p><a href=/css/properties/position/>position</a></p><p><a href=/css/properties/print-color-adjust/>print-color-adjust</a></p><p><a href=/css/properties/quotes/>quotes</a></p><p><a href=/css/properties/resize/>resize</a></p><p><a href=/css/properties/right/>right</a></p><p><a href=/css/properties/rotate/>rotate</a></p><p><a href=/css/properties/row-gap/>row-gap</a></p><p><a href=/css/properties/scale/>scale</a></p><p><a href=/css/properties/scroll-behavior/>scroll-behavior</a></p><p><a href=/css/properties/scroll-margin/>scroll-margin</a></p><p><a href=/css/properties/scroll-margin-block/>scroll-margin-block</a></p><p><a href=/css/properties/scroll-margin-block-end/>scroll-margin-block-end</a></p><p><a href=/css/properties/scroll-margin-block-start/>scroll-margin-block-start</a></p><p><a href=/css/properties/scroll-margin-bottom/>scroll-margin-bottom</a></p><p><a href=/css/properties/scroll-margin-inline/>scroll-margin-inline</a></p><p><a href=/css/properties/scroll-margin-inline-end/>scroll-margin-inline-end</a></p><p><a href=/css/properties/scroll-margin-inline-start/>scroll-margin-inline-start</a></p><p><a href=/css/properties/scroll-margin-left/>scroll-margin-left</a></p><p><a href=/css/properties/scroll-margin-right/>scroll-margin-right</a></p><p><a href=/css/properties/scroll-margin-top/>scroll-margin-top</a></p><p><a href=/css/properties/scroll-padding/>scroll-padding</a></p><p><a href=/css/properties/scroll-padding-block/>scroll-padding-block</a></p><p><a href=/css/properties/scroll-padding-block-end/>scroll-padding-block-end</a></p><p><a href=/css/properties/scroll-padding-block-start/>scroll-padding-block-start</a></p><p><a href=/css/properties/scroll-padding-bottom/>scroll-padding-bottom</a></p><p><a href=/css/properties/scroll-padding-inline/>scroll-padding-inline</a></p><p><a href=/css/properties/scroll-padding-inline-end/>scroll-padding-inline-end</a></p><p><a href=/css/properties/scroll-padding-inline-start/>scroll-padding-inline-start</a></p><p><a href=/css/properties/scroll-padding-left/>scroll-padding-left</a></p><p><a href=/css/properties/scroll-padding-right/>scroll-padding-right</a></p><p><a href=/css/properties/scroll-padding-top/>scroll-padding-top</a></p><p><a href=/css/properties/scroll-snap-align/>scroll-snap-align</a></p><p><a href=/css/properties/scroll-snap-stop/>scroll-snap-stop</a></p><p><a href=/css/properties/scroll-snap-type/>scroll-snap-type</a></p><p><a href=/css/properties/scroll-timeline/>scroll-timeline</a></p><p><a href=/css/properties/scroll-timeline-axis/>scroll-timeline-axis</a></p><p><a href=/css/properties/scroll-timeline-name/>scroll-timeline-name</a></p><p><a href=/css/properties/scrollbar-color/>scrollbar-color</a></p><p><a href=/css/properties/scrollbar-gutter/>scrollbar-gutter</a></p><p><a href=/css/properties/scrollbar-width/>scrollbar-width</a></p><p><a href=/css/properties/shape-image-threshold/>shape-image-threshold</a></p><p><a href=/css/properties/shape-margin/>shape-margin</a></p><p><a href=/css/properties/shape-outside/>shape-outside</a></p><p><a href=/css/properties/tab-size/>tab-size</a></p><p><a href=/css/properties/table-layout/>table-layout</a></p><p><a href=/css/properties/text-align/>text-align</a></p><p><a href=/css/properties/text-align-all/>text-align-all</a></p><p><a href=/css/properties/text-align-last/>text-align-last</a></p><p><a href=/css/properties/text-combine-upright/>text-combine-upright</a></p><p><a href=/css/properties/text-decoration/>text-decoration</a></p><p><a href=/css/properties/text-decoration-color/>text-decoration-color</a></p><p><a href=/css/properties/text-decoration-line/>text-decoration-line</a></p><p><a href=/css/properties/text-decoration-skip-ink/>text-decoration-skip-ink</a></p><p><a href=/css/properties/text-decoration-style/>text-decoration-style</a></p><p><a href=/css/properties/text-decoration-thickness/>text-decoration-thickness</a></p><p><a href=/css/properties/text-decoration-trim/>text-decoration-trim</a></p><p><a href=/css/properties/text-emphasis/>text-emphasis</a></p><p><a href=/css/properties/text-emphasis-color/>text-emphasis-color</a></p><p><a href=/css/properties/text-emphasis-position/>text-emphasis-position</a></p><p><a href=/css/properties/text-emphasis-style/>text-emphasis-style</a></p><p><a href=/css/properties/text-indent/>text-indent</a></p><p><a href=/css/properties/text-justify/>text-justify</a></p><p><a href=/css/properties/text-orientation/>text-orientation</a></p><p><a href=/css/properties/text-overflow/>text-overflow</a></p><p><a href=/css/properties/text-shadow/>text-shadow</a></p><p><a href=/css/properties/text-transform/>text-transform</a></p><p><a href=/css/properties/text-underline-offset/>text-underline-offset</a></p><p><a href=/css/properties/text-underline-position/>text-underline-position</a></p><p><a href=/css/properties/top/>top</a></p><p><a href=/css/properties/transform/>transform</a></p><p><a href=/css/properties/transform-box/>transform-box</a></p><p><a href=/css/properties/transform-origin/>transform-origin</a></p><p><a href=/css/properties/transform-style/>transform-style</a></p><p><a href=/css/properties/transition/>transition</a></p><p><a href=/css/properties/transition-delay/>transition-delay</a></p><p><a href=/css/properties/transition-duration/>transition-duration</a></p><p><a href=/css/properties/transition-property/>transition-property</a></p><p><a href=/css/properties/transition-timing-function/>transition-timing-function</a></p><p><a href=/css/properties/translate/>translate</a></p><p><a href=/css/properties/unicode-bidi/>unicode-bidi</a></p><p><a href=/css/properties/vertical-align/>vertical-align</a></p><p><a href=/css/properties/visibility/>visibility</a></p><p><a href=/css/properties/white-space/>white-space</a></p><p><a href=/css/properties/widows/>widows</a></p><p><a href=/css/properties/width/>width</a></p><p><a href=/css/properties/word-break/>word-break</a></p><p><a href=/css/properties/word-spacing/>word-spacing</a></p><p><a href=/css/properties/word-wrap/>word-wrap</a></p><p><a href=/css/properties/writing-mode/>writing-mode</a></p><p><a href=/css/properties/z-index/>z-index</a></p><p><a href=/css/properties/zoom/>zoom</a></p></div><h2 id=pseudo-classes><a href=#pseudo-classes>Pseudo-Classes</a></h2><div class=margin><p><a href=/css/pseudo-classes/active/>active</a></p><p><a href=/css/pseudo-classes/any-link/>any-link</a></p><p><a href=/css/pseudo-classes/autofill/>autofill</a></p><p><a href=/css/pseudo-classes/blank/>blank</a></p><p><a href=/css/pseudo-classes/checked/>checked</a></p><p><a href=/css/pseudo-classes/default/>default</a></p><p><a href=/css/pseudo-classes/defined/>defined</a></p><p><a href=/css/pseudo-classes/dir/>dir</a></p><p><a href=/css/pseudo-classes/disabled/>disabled</a></p><p><a href=/css/pseudo-classes/empty/>empty</a></p><p><a href=/css/pseudo-classes/enabled/>enabled</a></p><p><a href=/css/pseudo-classes/first-child/>first-child</a></p><p><a href=/css/pseudo-classes/first-of-type/>first-of-type</a></p><p><a href=/css/pseudo-classes/focus/>focus</a></p><p><a href=/css/pseudo-classes/focus-visible/>focus-visible</a></p><p><a href=/css/pseudo-classes/focus-within/>focus-within</a></p><p><a href=/css/pseudo-classes/fullscreen/>fullscreen</a></p><p><a href=/css/pseudo-classes/has/>has</a></p><p><a href=/css/pseudo-classes/hover/>hover</a></p><p><a href=/css/pseudo-classes/in-range/>in-range</a></p><p><a href=/css/pseudo-classes/indeterminate/>indeterminate</a></p><p><a href=/css/pseudo-classes/invalid/>invalid</a></p><p><a href=/css/pseudo-classes/is/>is</a></p><p><a href=/css/pseudo-classes/lang/>lang</a></p><p><a href=/css/pseudo-classes/last-child/>last-child</a></p><p><a href=/css/pseudo-classes/last-of-type/>last-of-type</a></p><p><a href=/css/pseudo-classes/link/>link</a></p><p><a href=/css/pseudo-classes/local-link/>local-link</a></p><p><a href=/css/pseudo-classes/modal/>modal</a></p><p><a href=/css/pseudo-classes/not/>not</a></p><p><a href=/css/pseudo-classes/nth-child/>nth-child</a></p><p><a href=/css/pseudo-classes/nth-col/>nth-col</a></p><p><a href=/css/pseudo-classes/nth-last-child/>nth-last-child</a></p><p><a href=/css/pseudo-classes/nth-last-col/>nth-last-col</a></p><p><a href=/css/pseudo-classes/nth-last-of-type/>nth-last-of-type</a></p><p><a href=/css/pseudo-classes/nth-of-type/>nth-of-type</a></p><p><a href=/css/pseudo-classes/only-child/>only-child</a></p><p><a href=/css/pseudo-classes/only-of-type/>only-of-type</a></p><p><a href=/css/pseudo-classes/optional/>optional</a></p><p><a href=/css/pseudo-classes/out-of-range/>out-of-range</a></p><p><a href=/css/pseudo-classes/picture-in-picture/>picture-in-picture</a></p><p><a href=/css/pseudo-classes/placeholder-shown/>placeholder-shown</a></p><p><a href=/css/pseudo-classes/popover-open/>popover-open</a></p><p><a href=/css/pseudo-classes/read-only/>read-only</a></p><p><a href=/css/pseudo-classes/read-write/>read-write</a></p><p><a href=/css/pseudo-classes/required/>required</a></p><p><a href=/css/pseudo-classes/root/>root</a></p><p><a href=/css/pseudo-classes/scope/>scope</a></p><p><a href=/css/pseudo-classes/target/>target</a></p><p><a href=/css/pseudo-classes/valid/>valid</a></p><p><a href=/css/pseudo-classes/visited/>visited</a></p><p><a href=/css/pseudo-classes/where/>where</a></p></div><h2 id=pseudo-elements><a href=#pseudo-elements>Pseudo-Elements</a></h2><div class=margin><p><a href=/css/pseudo-elements/after/>after</a></p><p><a href=/css/pseudo-elements/backdrop/>backdrop</a></p><p><a href=/css/pseudo-elements/before/>before</a></p><p><a href=/css/pseudo-elements/file-selector-button/>file-selector-button</a></p><p><a href=/css/pseudo-elements/first-letter/>first-letter</a></p><p><a href=/css/pseudo-elements/first-line/>first-line</a></p><p><a href=/css/pseudo-elements/highlight/>highlight</a></p><p><a href=/css/pseudo-elements/marker/>marker</a></p><p><a href=/css/pseudo-elements/part/>part</a></p><p><a href=/css/pseudo-elements/placeholder/>placeholder</a></p><p><a href=/css/pseudo-elements/selection/>selection</a></p></div><h2 id=units><a href=#units>Units</a></h2><div class=margin><p><a href=/css/units/cap/>cap</a></p><p><a href=/css/units/ch/>ch</a></p><p><a href=/css/units/cm/>cm</a></p><p><a href=/css/units/cqb/>cqb</a></p><p><a href=/css/units/cqh/>cqh</a></p><p><a href=/css/units/cqi/>cqi</a></p><p><a href=/css/units/cqmax/>cqmax</a></p><p><a href=/css/units/cqmin/>cqmin</a></p><p><a href=/css/units/cqw/>cqw</a></p><p><a href=/css/units/deg/>deg</a></p><p><a href=/css/units/dpcm/>dpcm</a></p><p><a href=/css/units/dpi/>dpi</a></p><p><a href=/css/units/dppx/>dppx</a></p><p><a href=/css/units/dvb/>dvb</a></p><p><a href=/css/units/dvh/>dvh</a></p><p><a href=/css/units/dvi/>dvi</a></p><p><a href=/css/units/dvmax/>dvmax</a></p><p><a href=/css/units/dvmin/>dvmin</a></p><p><a href=/css/units/dvw/>dvw</a></p><p><a href=/css/units/em/>em</a></p><p><a href=/css/units/ex/>ex</a></p><p><a href=/css/units/grad/>grad</a></p><p><a href=/css/units/ic/>ic</a></p><p><a href=/css/units/in/>in</a></p><p><a href=/css/units/lvb/>lvb</a></p><p><a href=/css/units/lvh/>lvh</a></p><p><a href=/css/units/lvi/>lvi</a></p><p><a href=/css/units/lvmax/>lvmax</a></p><p><a href=/css/units/lvmin/>lvmin</a></p><p><a href=/css/units/lvw/>lvw</a></p><p><a href=/css/units/mm/>mm</a></p><p><a href=/css/units/ms/>ms</a></p><p><a href=/css/units/pc/>pc</a></p><p><a href=/css/units/pt/>pt</a></p><p><a href=/css/units/px/>px</a></p><p><a href=/css/units/q/>Q</a></p><p><a href=/css/units/rad/>rad</a></p><p><a href=/css/units/rem/>rem</a></p><p><a href=/css/units/s/>s</a></p><p><a href=/css/units/svb/>svb</a></p><p><a href=/css/units/svh/>svh</a></p><p><a href=/css/units/svi/>svi</a></p><p><a href=/css/units/svmax/>svmax</a></p><p><a href=/css/units/svmin/>svmin</a></p><p><a href=/css/units/svw/>svw</a></p><p><a href=/css/units/turn/>turn</a></p><p><a href=/css/units/vb/>vb</a></p><p><a href=/css/units/vh/>vh</a></p><p><a href=/css/units/vi/>vi</a></p><p><a href=/css/units/vmax/>vmax</a></p><p><a href=/css/units/vmin/>vmin</a></p><p><a href=/css/units/vw/>vw</a></p></div></div><div class=nav-h1><a id=nav-switch-js>JS</a></div><div id=nav-content-js><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/js/>Overview</a></p></div><h2 id=abortcontroller><a href=#abortcontroller>AbortController</a></h2><div class=margin><p><a href=/js/abortcontroller/abort/>abort</a></p><p><a href=/js/abortcontroller/abortcontroller/>AbortController</a></p><p><a href=/js/abortcontroller/signal/>signal</a></p></div><h2 id=abstractrange><a href=#abstractrange>AbstractRange</a></h2><div class=margin><p><a href=/js/abstractrange/collapsed/>collapsed</a></p><p><a href=/js/abstractrange/endcontainer/>endContainer</a></p><p><a href=/js/abstractrange/endoffset/>endOffset</a></p><p><a href=/js/abstractrange/startcontainer/>startContainer</a></p><p><a href=/js/abstractrange/startoffset/>startOffset</a></p></div><h2 id=abortsignal><a href=#abortsignal>AbortSignal</a></h2><div class=margin><p><a href=/js/abortsignal/abort/>abort</a></p><p><a href=/js/abortsignal/aborted/>aborted</a></p><p><a href=/js/abortsignal/reason/>reason</a></p><p><a href=/js/abortsignal/throwifaborted/>throwIfAborted</a></p><p><a href=/js/abortsignal/timeout/>timeout</a></p></div><h2 id=childnode><a href=#childnode>ChildNode</a></h2><div class=margin><p><a href=/js/childnode/after/>after</a></p><p><a href=/js/childnode/before/>before</a></p><p><a href=/js/childnode/remove/>remove</a></p><p><a href=/js/childnode/replacewith/>replaceWith</a></p></div><h2 id=comment><a href=#comment>Comment</a></h2><div class=margin><p><a href=/js/comment/comment/>Comment</a></p></div><h2 id=console><a href=#console>console</a></h2><div class=margin><p><a href=/js/console/assert/>assert</a></p><p><a href=/js/console/clear/>clear</a></p><p><a href=/js/console/count/>count</a></p><p><a href=/js/console/countreset/>countReset</a></p><p><a href=/js/console/debug/>debug</a></p><p><a href=/js/console/dir/>dir</a> 10000 </p><p><a href=/js/console/dirxml/>dirxml</a></p><p><a href=/js/console/error/>error</a></p><p><a href=/js/console/group/>group</a></p><p><a href=/js/console/groupcollapsed/>groupCollapsed</a></p><p><a href=/js/console/groupend/>groupEnd</a></p><p><a href=/js/console/info/>info</a></p><p><a href=/js/console/log/>log</a></p><p><a href=/js/console/table/>table</a></p><p><a href=/js/console/time/>time</a></p><p><a href=/js/console/timeend/>timeEnd</a></p><p><a href=/js/console/timelog/>timeLog</a></p><p><a href=/js/console/trace/>trace</a></p><p><a href=/js/console/warn/>warn</a></p></div><h2 id=customevent><a href=#customevent>CustomEvent</a></h2><div class=margin><p><a href=/js/customevent/customevent/>CustomEvent</a></p><p><a href=/js/customevent/detail/>detail</a></p></div><h2 id=declarations><a href=#declarations>Declarations</a></h2><div class=margin><p><a href=/js/declarations/const/>const</a></p><p><a href=/js/declarations/let/>let</a></p><p><a href=/js/declarations/var/>var</a></p></div><h2 id=document><a href=#document>Document</a></h2><div class=margin><p><a href=/js/document/adoptnode/>adoptNode</a></p><p><a href=/js/document/characterset/>characterSet</a></p><p><a href=/js/document/compatmode/>compatMode</a></p><p><a href=/js/document/contenttype/>contentType</a></p><p><a href=/js/document/createcdatasection/>createCDATASection</a></p><p><a href=/js/document/createcomment/>createComment</a></p><p><a href=/js/document/createdocumentfragment/>createDocumentFragment</a></p><p><a href=/js/document/createelement/>createElement</a></p><p><a href=/js/document/createelementns/>createElementNS</a></p><p><a href=/js/document/createprocessinginstruction/>createProcessingInstruction</a></p><p><a href=/js/document/createtextnode/>createTextNode</a></p><p><a href=/js/document/doctype/>doctype</a></p><p><a href=/js/document/document/>Document</a></p><p><a href=/js/document/documentelement/>documentElement</a></p><p><a href=/js/document/documenturi/>documentURI</a></p><p><a href=/js/document/exitpictureinpicture/>exitPictureInPicture</a></p><p><a href=/js/document/getelementsbyclassname/>getElementsByClassName</a></p><p><a href=/js/document/getelementsbytagname/>getElementsByTagName</a></p><p><a href=/js/document/getelementsbytagnamens/>getElementsByTagNameNS</a></p><p><a href=/js/document/implementation/>implementation</a></p><p><a href=/js/document/importnode/>importNode</a></p><p><a href=/js/document/pictureinpictureenabled/>pictureInPictureEnabled</a></p><p><a href=/js/document/url/>URL</a></p><p><a href=/js/document/write/>write</a></p><p><a href=/js/document/writeln/>writeln</a></p></div><h2 id=documentfragment><a href=#documentfragment>DocumentFragment</a></h2><div class=margin><p><a href=/js/documentfragment/documentfragment/>DocumentFragment</a></p></div><h2 id=documentorshadowroot><a href=#documentorshadowroot>DocumentOrShadowRoot</a></h2><div class=margin><p><a href=/js/documentorshadowroot/pictureinpictureelement/>pictureInPictureElement</a></p></div><h2 id=domimplementation><a href=#domimplementation>DOMImplementation</a></h2><div class=margin><p><a href=/js/domimplementation/createdocument/>createDocument</a></p><p><a href=/js/domimplementation/createdocumenttype/>createDocumentType</a></p><p><a href=/js/domimplementation/createhtmldocument/>createHTMLDocument</a></p></div><h2 id=domtokenlist><a href=#domtokenlist>DOMTokenList</a></h2><div class=margin><p><a href=/js/domtokenlist/add/>add</a></p><p><a href=/js/domtokenlist/contains/>contains</a></p><p><a href=/js/domtokenlist/item/>item</a></p><p><a href=/js/domtokenlist/length/>length</a></p><p><a href=/js/domtokenlist/remove/>remove</a></p><p><a href=/js/domtokenlist/replace/>replace</a></p><p><a href=/js/domtokenlist/supports/>supports</a></p><p><a href=/js/domtokenlist/toggle/>toggle</a></p><p><a href=/js/domtokenlist/value/>value</a></p></div><h2 id=element><a href=#element>Element</a></h2><div class=margin><p><a href=/js/element/attachshadow/>attachShadow</a></p><p><a href=/js/element/classlist/>classList</a></p><p><a href=/js/element/classname/>className</a></p><p><a href=/js/element/closest/>closest</a></p><p><a href=/js/element/getattribute/>getAttribute</a></p><p><a href=/js/element/getattributenames/>getAttributeNames</a></p><p><a href=/js/element/getattributens/>getAttributeNS</a></p><p><a href=/js/element/hasattribute/>hasAttribute</a></p><p><a href=/js/element/hasattributens/>hasAttributeNS</a></p><p><a href=/js/element/hasattributes/>hasAttributes</a></p><p><a href=/js/element/id/>id</a></p><p><a href=/js/element/innerhtml/>innerHTML</a></p><p><a href=/js/element/insertadjacenthtml/>insertAdjacentHTML</a></p><p><a href=/js/element/localname/>localName</a></p><p><a href=/js/element/matches/>matches</a></p><p><a href=/js/element/namespaceuri/>namespaceURI</a></p><p><a href=/js/element/outerhtml/>outerHTML</a></p><p><a href=/js/element/prefix/>prefix</a></p><p><a href=/js/element/removeattribute/>removeAttribute</a></p><p><a href=/js/element/removeattributens/>removeAttributeNS</a></p><p><a href=/js/element/setattribute/>setAttribute</a></p><p><a href=/js/element/setattributens/>setAttributeNS</a></p><p><a href=/js/element/shadowroot/>shadowRoot</a></p><p><a href=/js/element/slot/>slot</a></p><p><a href=/js/element/tagname/>tagName</a></p><p><a href=/js/element/toggleattribute/>toggleAttribute</a></p></div><h2 id=event><a href=#event>Event</a></h2><div class=margin><p><a href=/js/event/bubbles/>bubbles</a></p><p><a href=/js/event/cancelable/>cancelable</a></p><p><a href=/js/event/composed/>composed</a></p><p><a href=/js/event/composedpath/>composedPath</a></p><p><a href=/js/event/currenttarget/>currentTarget</a></p><p><a href=/js/event/defaultprevented/>defaultPrevented</a></p><p><a href=/js/event/event/>Event</a></p><p><a href=/js/event/eventphase/>eventPhase</a></p><p><a href=/js/event/istrusted/>isTrusted</a></p><p><a href=/js/event/preventdefault/>preventDefault</a></p><p><a href=/js/event/stopimmediatepropagation/>stopImmediatePropagation</a></p><p><a href=/js/event/stoppropagation/>stopPropagation</a></p><p><a href=/js/event/target/>target</a></p><p><a href=/js/event/timestamp/>timeStamp</a></p><p><a href=/js/event/type/>type</a></p></div><h2 id=eventtarget><a href=#eventtarget>EventTarget</a></h2><div class=margin><p><a href=/js/eventtarget/addeventlistener/>addEventListener</a></p><p><a href=/js/eventtarget/dispatchevent/>dispatchEvent</a></p><p><a href=/js/eventtarget/eventtarget/>EventTarget</a></p><p><a href=/js/eventtarget/removeeventlistener/>removeEventListener</a></p></div><h2 id=htmlcollection><a href=#htmlcollection>HTMLCollection</a></h2><div class=margin><p><a href=/js/htmlcollection/item/>item</a></p><p><a href=/js/htmlcollection/length/>length</a></p><p><a href=/js/htmlcollection/nameditem/>namedItem</a></p></div><h2 id=htmldialogelement><a href=#htmldialogelement>HTMLDialogElement</a></h2><div class=margin><p><a href=/js/htmldialogelement/close/>close</a></p><p><a href=/js/htmldialogelement/open/>open</a></p><p><a href=/js/htmldialogelement/returnvalue/>returnValue</a></p><p><a href=/js/htmldialogelement/show/>show</a></p><p><a href=/js/htmldialogelement/showmodal/>showModal</a></p></div><h2 id=htmlvideoelement><a href=#htmlvideoelement>HTMLVideoElement</a></h2><div class=margin><p><a href=/js/htmlvideoelement/autopictureinpicture/>autoPictureInPicture</a></p><p><a href=/js/htmlvideoelement/disablepictureinpicture/>disablePictureInPicture</a></p><p><a href=/js/htmlvideoelement/requestpictureinpicture/>requestPictureInPicture</a></p></div><h2 id=iterations><a href=#iterations>Iterations</a></h2><div class=margin><p><a href=/js/iterations/do-while/>do-while</a></p><p><a href=/js/iterations/for/>for</a></p><p><a href=/js/iterations/for-await-of/>for-await-of</a></p><p><a href=/js/iterations/for-in/>for-in</a></p><p><a href=/js/iterations/for-of/>for-of</a></p><p><a href=/js/iterations/while/>while</a></p></div><h2 id=mutationobserver><a href=#mutationobserver>MutationObserver</a></h2><div class=margin><p><a href=/js/mutationobserver/disconnect/>disconnect</a></p><p><a href=/js/mutationobserver/mutationobserver/>MutationObserver</a></p><p><a href=/js/mutationobserver/observe/>observe</a></p><p><a href=/js/mutationobserver/takerecords/>takeRecords</a></p></div><h2 id=mutationrecord><a href=#mutationrecord>MutationRecord</a></h2><div class=margin><p><a href=/js/mutationrecord/addednodes/>addedNodes</a></p><p><a href=/js/mutationrecord/attributename/>attributeName</a></p><p><a href=/js/mutationrecord/attributenamespace/>attributeNamespace</a></p><p><a href=/js/mutationrecord/nextsibling/>nextSibling</a></p><p><a href=/js/mutationrecord/oldvalue/>oldValue</a></p><p><a href=/js/mutationrecord/previoussibling/>previousSibling</a></p><p><a href=/js/mutationrecord/removednodes/>removedNodes</a></p><p><a href=/js/mutationrecord/target/>target</a></p><p><a href=/js/mutationrecord/type/>type</a></p></div><h2 id=node><a href=#node>Node</a></h2><div class=margin><p><a href=/js/node/baseuri/>baseURI</a></p><p><a href=/js/node/childnodes/>childNodes</a></p><p><a href=/js/node/clonenode/>cloneNode</a></p><p><a href=/js/node/comparedocumentposition/>compareDocumentPosition</a></p><p><a href=/js/node/contains/>contains</a></p><p><a href=/js/node/firstchild/>firstChild</a></p><p><a href=/js/node/getrootnode/>getRootNode</a></p><p><a href=/js/node/haschildnodes/>hasChildNodes</a></p><p><a href=/js/node/isconnected/>isConnected</a></p><p><a href=/js/node/isequalnode/>isEqualNode</a></p><p><a href=/js/node/lastchild/>lastChild</a></p><p><a href=/js/node/nextsibling/>nextSibling</a></p><p><a href=/js/node/nodename/>nodeName</a></p><p><a href=/js/node/nodetype/>nodeType</a></p><p><a href=/js/node/normalize/>normalize</a></p><p><a href=/js/node/ownerdocument/>ownerDocument</a></p><p><a href=/js/node/parentelement/>parentElement</a></p><p><a href=/js/node/parentnode/>parentNode</a></p><p><a href=/js/node/previoussibling/>previousSibling</a></p></div><h2 id=nodelist><a href=#nodelist>NodeList</a></h2><div class=margin><p><a href=/js/nodelist/item/>item</a></p><p><a href=/js/nodelist/length/>length</a></p></div><h2 id=nondocumenttypechildnode><a href=#nondocumenttypechildnode>NonDocumentTypeChildNode</a></h2><div class=margin><p><a href=/js/nondocumenttypechildnode/nextelementsibling/>nextElementSibling</a></p><p><a href=/js/nondocumenttypechildnode/previouselementsibling/>previousElementSibling</a></p></div><h2 id=nonelementparentnode><a href=#nonelementparentnode>NonElementParentNode</a></h2><div class=margin><p><a href=/js/nonelementparentnode/getelementbyid/>getElementById</a></p></div><h2 id=parentnode><a href=#parentnode>ParentNode</a></h2><div class=margin><p><a href=/js/parentnode/append/>append</a></p><p><a href=/js/parentnode/children/>children</a></p><p><a href=/js/parentnode/firstelementchild/>firstElementChild</a></p><p><a href=/js/parentnode/lastelementchild/>lastElementChild</a></p><p><a href=/js/parentnode/prepend/>prepend</a></p><p><a href=/js/parentnode/queryselector/>querySelector</a></p><p><a href=/js/parentnode/queryselectorall/>querySelectorAll</a></p><p><a href=/js/parentnode/replacechildren/>replaceChildren</a></p></div><h2 id=prompts><a href=#prompts>Prompts</a></h2><div class=margin><p><a href=/js/prompts/alert/>alert</a></p><p><a href=/js/prompts/confirm/>confirm</a></p><p><a href=/js/prompts/prompt/>prompt</a></p></div><h2 id=range><a href=#range>Range</a></h2><div class=margin><p><a href=/js/range/commonancestorcontainer/>commonAncestorContainer</a></p><p><a href=/js/range/comparepoint/>comparePoint</a></p><p><a href=/js/range/createcontextualfragment/>createContextualFragment</a></p><p><a href=/js/range/intersectsnode/>intersectsNode</a></p><p><a href=/js/range/range/>Range</a></p></div><h2 id=slottable><a href=#slottable>Slottable</a></h2><div class=margin><p><a href=/js/slottable/assignedslot/>assignedSlot</a></p></div><h2 id=statements><a href=#statements>Statements</a></h2><div class=margin><p><a href=/js/statements/if/>if</a></p><p><a href=/js/statements/switch/>switch</a></p><p><a href=/js/statements/try/>try</a></p></div><h2 id=staticrange><a href=#staticrange>StaticRange</a></h2><div class=margin><p><a href=/js/staticrange/staticrange/>StaticRange</a></p></div><h2 id=text><a href=#text>Text</a></h2><div class=margin><p><a href=/js/text/splittext/>splitText</a></p><p><a href=/js/text/text/>Text</a></p><p><a href=/js/text/wholetext/>wholeText</a></p></div><h2 id=other><a href=#other>Other</a></h2><div class=margin><p><a href=/js/array/>Array</a></p><p><a href=/js/comments/>Comments</a></p><p><a href=/js/date/>Date</a></p><p><a href=/js/enable/>Enable</a></p><p><a href=/js/functions/>Functions</a></p><p><a href=/js/infinity/>Infinity</a></p><p><a href=/js/print/>print</a></p></div></div><div class=nav-h1><a id=nav-switch-php>PHP</a></div><div id=nav-content-php><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/php/>Overview</a></p></div><h2 id=array><a href=#array>Array</a></h2><div class=margin><p><a href=/php/array/array/>array</a></p><p><a href=/php/array/array_change_key_case/>array_change_key_case</a></p><p><a href=/php/array/array_chunk/>array_chunk</a></p><p><a href=/php/array/array_column/>array_column</a></p><p><a href=/php/array/array_combine/>array_combine</a></p><p><a href=/php/array/array_count_values/>array_count_values</a></p><p><a href=/php/array/array_diff/>array_diff</a></p><p><a href=/php/array/array_diff_assoc/>array_diff_assoc</a></p><p><a href=/php/array/array_diff_key/>array_diff_key</a></p><p><a href=/php/array/array_diff_uassoc/>array_diff_uassoc</a></p><p><a href=/php/array/array_diff_ukey/>array_diff_ukey</a></p><p><a href=/php/array/array_fill/>array_fill</a></p><p><a href=/php/array/array_fill_keys/>array_fill_keys</a></p><p><a href=/php/array/array_filter/>array_filter</a></p><p><a href=/php/array/array_flip/>array_flip</a></p><p><a href=/php/array/array_intersect/>array_intersect</a></p><p><a href=/php/array/array_intersect_assoc/>array_intersect_assoc</a></p><p><a href=/php/array/array_intersect_key/>array_intersect_key</a></p><p><a href=/php/array/array_intersect_uassoc/>array_intersect_uassoc</a></p><p><a href=/php/array/array_intersect_ukey/>array_intersect_ukey</a></p><p><a href=/php/array/array_key_exists/>array_key_exists</a></p><p><a href=/php/array/array_key_first/>array_key_first</a></p><p><a href=/php/array/array_key_last/>array_key_last</a></p><p><a href=/php/array/array_keys/>array_keys</a></p><p><a href=/php/array/array_map/>array_map</a></p><p><a href=/php/array/array_merge/>array_merge</a></p><p><a href=/php/array/array_merge_recursive/>array_merge_recursive</a></p><p><a href=/php/array/array_multisort/>array_multisort</a></p><p><a href=/php/array/array_pad/>array_pad</a></p><p><a href=/php/array/array_pop/>array_pop</a></p><p><a href=/php/array/array_product/>array_product</a></p><p><a href=/php/array/array_push/>array_push</a></p><p><a href=/php/array/array_rand/>array_rand</a></p><p><a href=/php/array/array_reduce/>array_reduce</a></p><p><a href=/php/array/array_replace/>array_replace</a></p><p><a href=/php/array/array_replace_recursive/>array_replace_recursive</a></p><p><a href=/php/array/array_reverse/>array_reverse</a></p><p><a href=/php/array/array_search/>array_search</a></p><p><a href=/php/array/array_shift/>array_shift</a></p><p><a href=/php/array/array_slice/>array_slice</a></p><p><a href=/php/array/array_splice/>array_splice</a></p><p><a href=/php/array/array_sum/>array_sum</a></p><p><a href=/php/array/array_udiff/>array_udiff</a></p><p><a href=/php/array/array_udiff_assoc/>array_udiff_assoc</a></p><p><a href=/php/array/array_udiff_uassoc/>array_udiff_uassoc</a></p><p><a href=/php/array/array_uintersect/>array_uintersect</a></p><p><a href=/php/array/array_uintersect_assoc/>array_uintersect_assoc</a></p><p><a href=/php/array/array_uintersect_uassoc/>array_uintersect_uassoc</a></p><p><a href=/php/array/array_unique/>array_unique</a></p><p><a href=/php/array/array_unshift/>array_unshift</a></p><p><a href=/php/array/array_values/>array_values</a></p><p><a href=/php/array/array_walk/>array_walk</a></p><p><a href=/php/array/array_walk_recursive/>array_walk_recursive</a></p><p><a href=/php/array/arsort/>arsort</a></p><p><a href=/php/array/asort/>asort</a></p><p><a href=/php/array/compact/>compact</a></p><p><a href=/php/array/count/>count</a></p><p><a href=/php/array/current/>current</a></p><p><a href=/php/array/end/>end</a></p><p><a href=/php/array/extract/>extract</a></p><p><a href=/php/array/in_array/>in_array</a></p><p><a href=/php/array/key/>key</a></p><p><a href=/php/array/key_exists/>key_exists</a></p><p><a href=/php/array/krsort/>krsort</a></p><p><a href=/php/array/ksort/>ksort</a></p><p><a href=/php/array/list/>list</a></p><p><a href=/php/array/natcasesort/>natcasesort</a></p><p><a href=/php/array/natsort/>natsort</a></p><p><a href=/php/array/next/>next</a></p><p><a href=/php/array/pos/>pos</a></p><p><a href=/php/array/prev/>prev</a></p><p><a href=/php/array/range/>range</a></p><p><a href=/php/array/reset/>reset</a></p><p><a href=/php/array/rsort/>rsort</a></p><p><a href=/php/array/shuffle/>shuffle</a></p><p><a href=/php/array/sizeof/>sizeof</a></p><p><a href=/php/array/sort/>sort</a></p><p><a href=/php/array/uasort/>uasort</a></p><p><a href=/php/array/uksort/>uksort</a></p><p><a href=/php/array/usort/>usort</a></p></div><h2 id=calendar><a href=#calendar>Calendar</a></h2><div class=margin><p><a href=/php/calendar/cal_days_in_month/>cal_days_in_month</a></p><p><a href=/php/calendar/cal_from_jd/>cal_from_jd</a></p><p><a href=/php/calendar/cal_info/>cal_info</a></p><p><a href=/php/calendar/cal_to_jd/>cal_to_jd</a></p><p><a href=/php/calendar/easter_date/>easter_date</a></p><p><a href=/php/calendar/easter_days/>easter_days</a></p><p><a href=/php/calendar/frenchtojd/>frenchtojd</a></p><p><a href=/php/calendar/gregoriantojd/>gregoriantojd</a></p><p><a href=/php/calendar/jddayofweek/>jddayofweek</a></p><p><a href=/php/calendar/jdmonthname/>jdmonthname</a></p><p><a href=/php/calendar/jdtofrench/>jdtofrench</a></p><p><a href=/php/calendar/jdtogregorian/>jdtogregorian</a></p><p><a href=/php/calendar/jdtojewish/>jdtojewish</a></p><p><a href=/php/calendar/jdtojulian/>jdtojulian</a></p><p><a href=/php/calendar/jdtounix/>jdtounix</a></p><p><a href=/php/calendar/jewishtojd/>jewishtojd</a></p><p><a href=/php/calendar/juliantojd/>juliantojd</a></p><p><a href=/php/calendar/unixtojd/>unixtojd</a></p></div><h2 id=class-/-object><a href=#class-/-object>Class / Object</a></h2><div class=margin><p><a href=/php/class-object/class_alias/>class_alias</a></p><p><a href=/php/class-object/class_exists/>class_exists</a></p><p><a href=/php/class-object/get_called_class/>get_called_class</a></p><p><a href=/php/class-object/get_class/>get_class</a></p><p><a href=/php/class-object/get_class_methods/>get_class_methods</a></p><p><a href=/php/class-object/get_class_vars/>get_class_vars</a></p><p><a href=/php/class-object/get_declared_classes/>get_declared_classes</a></p><p><a href=/php/class-object/get_declared_interfaces/>get_declared_interfaces</a></p><p><a href=/php/class-object/get_declared_traits/>get_declared_traits</a></p><p><a href=/php/class-object/get_object_vars/>get_object_vars</a></p><p><a href=/php/class-object/get_parent_class/>get_parent_class</a></p><p><a href=/php/class-object/interface_exists/>interface_exists</a></p><p><a href=/php/class-object/is_a/>is_a</a></p><p><a href=/php/class-object/is_subclass_of/>is_subclass_of</a></p><p><a href=/php/class-object/method_exists/>method_exists</a></p><p><a href=/php/class-object/property_exists/>property_exists</a></p><p><a href=/php/class-object/trait_exists/>trait_exists</a></p></div><h2 id=ctype><a href=#ctype>Ctype</a></h2><div class=margin><p><a href=/php/ctype/ctype_alnum/>ctype_alnum</a></p><p><a href=/php/ctype/ctype_alpha/>ctype_alpha</a></p><p><a href=/php/ctype/ctype_cntrl/>ctype_cntrl</a></p><p><a href=/php/ctype/ctype_digit/>ctype_digit</a></p><p><a href=/php/ctype/ctype_graph/>ctype_graph</a></p><p><a href=/php/ctype/ctype_lower/>ctype_lower</a></p><p><a href=/php/ctype/ctype_print/>ctype_print</a></p><p><a href=/php/ctype/ctype_punct/>ctype_punct</a></p><p><a href=/php/ctype/ctype_space/>ctype_space</a></p><p><a href=/php/ctype/ctype_upper/>ctype_upper</a></p><p><a href=/php/ctype/ctype_xdigit/>ctype_xdigit</a></p></div><h2 id=curl><a href=#curl>cURL</a></h2><div class=margin><p><a href=/php/curl/curl_close/>curl_close</a></p><p><a href=/php/curl/curl_copy_handle/>curl_copy_handle</a></p><p><a href=/php/curl/curl_errno/>curl_errno</a></p><p><a href=/php/curl/curl_error/>curl_error</a></p><p><a href=/php/curl/curl_escape/>curl_escape</a></p><p><a href=/php/curl/curl_exec/>curl_exec</a></p><p><a href=/php/curl/curl_getinfo/>curl_getinfo</a></p><p><a href=/php/curl/curl_init/>curl_init</a></p><p><a href=/php/curl/curl_multi_add_handle/>curl_multi_add_handle</a></p><p><a href=/php/curl/curl_multi_close/>curl_multi_close</a></p><p><a href=/php/curl/curl_multi_errno/>curl_multi_errno</a></p><p><a href=/php/curl/curl_multi_exec/>curl_multi_exec</a></p><p><a href=/php/curl/curl_multi_getcontent/>curl_multi_getcontent</a></p><p><a href=/php/curl/curl_multi_info_read/>curl_multi_info_read</a></p><p><a href=/php/curl/curl_multi_init/>curl_multi_init</a></p><p><a href=/php/curl/curl_multi_remove_handle/>curl_multi_remove_handle</a></p><p><a href=/php/curl/curl_multi_select/>curl_multi_select</a></p><p><a href=/php/curl/curl_multi_setopt/>curl_multi_setopt</a></p><p><a href=/php/curl/curl_multi_strerror/>curl_multi_strerror</a></p><p><a href=/php/curl/curl_pause/>curl_pause</a></p><p><a href=/php/curl/curl_reset/>curl_reset</a></p><p><a href=/php/curl/curl_setopt/>curl_setopt</a></p><p><a href=/php/curl/curl_setopt_array/>curl_setopt_array</a></p><p><a href=/php/curl/curl_share_close/>curl_share_close</a></p><p><a href=/php/curl/curl_share_errno/>curl_share_errno</a></p><p><a href=/php/curl/curl_share_init/>curl_share_init</a></p><p><a href=/php/curl/curl_share_setopt/>curl_share_setopt</a></p><p><a href=/php/curl/curl_share_strerror/>curl_share_strerror</a></p><p><a href=/php/curl/curl_strerror/>curl_strerror</a></p><p><a href=/php/curl/curl_unescape/>curl_unescape</a></p><p><a href=/php/curl/curl_upkeep/>curl_upkeep</a></p><p><a href=/php/curl/curl_version/>curl_version</a></p></div><h2 id=date-/-time><a href=#date-/-time>Date / Time</a></h2><div class=margin><p><a href=/php/date-time/checkdate/>checkdate</a></p><p><a href=/php/date-time/date/>date</a></p><p><a href=/php/date-time/date_add/>date_add</a></p><p><a href=/php/date-time/date_create/>date_create</a></p><p><a href=/php/date-time/date_create_from_format/>date_create_from_format</a></p><p><a href=/php/date-time/date_create_immutable/>date_create_immutable</a></p><p><a href=/php/date-time/date_create_immutable_from_format/>date_create_immutable_from_format</a></p><p><a href=/php/date-time/date_date_set/>date_date_set</a></p><p><a href=/php/date-time/date_default_timezone_get/>date_default_timezone_get</a></p><p><a href=/php/date-time/date_default_timezone_set/>date_default_timezone_set</a></p><p><a href=/php/date-time/date_diff/>date_diff</a></p><p><a href=/php/date-time/date_format/>date_format</a></p><p><a href=/php/date-time/date_get_last_errors/>date_get_last_errors</a></p><p><a href=/php/date-time/date_interval_create_from_date_string/>date_interval_create_from_date_string</a></p><p><a href=/php/date-time/date_interval_format/>date_interval_format</a></p><p><a href=/php/date-time/date_isodate_set/>date_isodate_set</a></p><p><a href=/php/date-time/date_modify/>date_modify</a></p><p><a href=/php/date-time/date_offset_get/>date_offset_get</a></p><p><a href=/php/date-time/date_parse/>date_parse</a></p><p><a href=/php/date-time/date_parse_from_format/>date_parse_from_format</a></p><p><a href=/php/date-time/date_sub/>date_sub</a></p><p><a href=/php/date-time/date_sun_info/>date_sun_info</a></p><p><a href=/php/date-time/date_sunrise/>date_sunrise</a></p><p><a href=/php/date-time/date_sunset/>date_sunset</a></p><p><a href=/php/date-time/date_time_set/>date_time_set</a></p><p><a href=/php/date-time/date_timestamp_get/>date_timestamp_get</a></p><p><a href=/php/date-time/date_timestamp_set/>date_timestamp_set</a></p><p><a href=/php/date-time/date_timezone_get/>date_timezone_get</a></p><p><a href=/php/date-time/date_timezone_set/>date_timezone_set</a></p><p><a href=/php/date-time/getdate/>getdate</a></p><p><a href=/php/date-time/gettimeofday/>gettimeofday</a></p><p><a href=/php/date-time/gmdate/>gmdate</a></p><p><a href=/php/date-time/gmmktime/>gmmktime</a></p><p><a href=/php/date-time/gmstrftime/>gmstrftime</a></p><p><a href=/php/date-time/idate/>idate</a></p><p><a href=/php/date-time/localtime/>localtime</a></p><p><a href=/php/date-time/microtime/>microtime</a></p><p><a href=/php/date-time/mktime/>mktime</a></p><p><a href=/php/date-time/strftime/>strftime</a></p><p><a href=/php/date-time/strptime/>strptime</a></p><p><a href=/php/date-time/strtotime/>strtotime</a></p><p><a href=/php/date-time/time/>time</a></p><p><a href=/php/date-time/timezone_abbreviations_list/>timezone_abbreviations_list</a></p><p><a href=/php/date-time/timezone_identifiers_list/>timezone_identifiers_list</a></p><p><a href=/php/date-time/timezone_location_get/>timezone_location_get</a></p><p><a href=/php/date-time/timezone_name_from_abbr/>timezone_name_from_abbr</a></p><p><a href=/php/date-time/timezone_name_get/>timezone_name_get</a></p><p><a href=/php/date-time/timezone_offset_get/>timezone_offset_get</a></p><p><a href=/php/date-time/timezone_open/>timezone_open</a></p><p><a href=/php/date-time/timezone_transitions_get/>timezone_transitions_get</a></p><p><a href=/php/date-time/timezone_version_get/>timezone_version_get</a></p></div><h2 id=directory><a href=#directory>Directory</a></h2><div class=margin><p><a href=/php/directory/chdir/>chdir</a></p><p><a href=/php/directory/chroot/>chroot</a></p><p><a href=/php/directory/closedir/>closedir</a></p><p><a href=/php/directory/dir/>dir</a></p><p><a href=/php/directory/getcwd/>getcwd</a></p><p><a href=/php/directory/opendir/>opendir</a></p><p><a href=/php/directory/readdir/>readdir</a></p><p><a href=/php/directory/rewinddir/>rewinddir</a></p><p><a href=/php/directory/scandir/>scandir</a></p></div><h2 id=error-handling><a href=#error-handling>Error Handling</a></h2><div class=margin><p><a href=/php/error-handling/debug_backtrace/>debug_backtrace</a></p><p><a href=/php/error-handling/debug_print_backtrace/>debug_print_backtrace</a></p><p><a href=/php/error-handling/error_clear_last/>error_clear_last</a></p><p><a href=/php/error-handling/error_get_last/>error_get_last</a></p><p><a href=/php/error-handling/error_log/>error_log</a></p><p><a href=/php/error-handling/error_reporting/>error_reporting</a></p><p><a href=/php/error-handling/restore_error_handler/>restore_error_handler</a></p><p><a href=/php/error-handling/restore_exception_handler/>restore_exception_handler</a></p><p><a href=/php/error-handling/set_error_handler/>set_error_handler</a></p><p><a href=/php/error-handling/set_exception_handler/>set_exception_handler</a></p><p><a href=/php/error-handling/trigger_error/>trigger_error</a></p><p><a href=/php/error-handling/user_error/>user_error</a></p></div><h2 id=filesystem><a href=#filesystem>Filesystem</a></h2><div class=margin><p><a href=/php/filesystem/basename/>basename</a></p><p><a href=/php/filesystem/chgrp/>chgrp</a></p><p><a href=/php/filesystem/chmod/>chmod</a></p><p><a href=/php/filesystem/chown/>chown</a></p><p><a href=/php/filesystem/clearstatcache/>clearstatcache</a></p><p><a href=/php/filesystem/copy/>copy</a></p><p><a href=/php/filesystem/dirname/>dirname</a></p><p><a href=/php/filesystem/disk_free_space/>disk_free_space</a></p><p><a href=/php/filesystem/disk_total_space/>disk_total_space</a></p><p><a href=/php/filesystem/diskfreespace/>diskfreespace</a></p><p><a href=/php/filesystem/fclose/>fclose</a></p><p><a href=/php/filesystem/feof/>feof</a></p><p><a href=/php/filesystem/fflush/>fflush</a></p><p><a href=/php/filesystem/fgetc/>fgetc</a></p><p><a href=/php/filesystem/fgetcsv/>fgetcsv</a></p><p><a href=/php/filesystem/fgets/>fgets</a></p><p><a href=/php/filesystem/file/>file</a></p><p><a href=/php/filesystem/file_exists/>file_exists</a></p><p><a href=/php/filesystem/file_get_contents/>file_get_contents</a></p><p><a href=/php/filesystem/file_put_contents/>file_put_contents</a></p><p><a href=/php/filesystem/fileatime/>fileatime</a></p><p><a href=/php/filesystem/filectime/>filectime</a></p><p><a href=/php/filesystem/filegroup/>filegroup</a></p><p><a href=/php/filesystem/fileinode/>fileinode</a></p><p><a href=/php/filesystem/filemtime/>filemtime</a></p><p><a href=/php/filesystem/fileowner/>fileowner</a></p><p><a href=/php/filesystem/fileperms/>fileperms</a></p><p><a href=/php/filesystem/filesize/>filesize</a></p><p><a href=/php/filesystem/filetype/>filetype</a></p><p><a href=/php/filesystem/flock/>flock</a></p><p><a href=/php/filesystem/fnmatch/>fnmatch</a></p><p><a href=/php/filesystem/fopen/>fopen</a></p><p><a href=/php/filesystem/fpassthru/>fpassthru</a></p><p><a href=/php/filesystem/fputcsv/>fputcsv</a></p><p><a href=/php/filesystem/fputs/>fputs</a></p><p><a href=/php/filesystem/fread/>fread</a></p><p><a href=/php/filesystem/fscanf/>fscanf</a></p><p><a href=/php/filesystem/fseek/>fseek</a></p><p><a href=/php/filesystem/fstat/>fstat</a></p><p><a href=/php/filesystem/ftell/>ftell</a></p><p><a href=/php/filesystem/ftruncate/>ftruncate</a></p><p><a href=/php/filesystem/fwrite/>fwrite</a></p><p><a href=/php/filesystem/glob/>glob</a></p><p><a href=/php/filesystem/is_dir/>is_dir</a></p><p><a href=/php/filesystem/is_executable/>is_executable</a></p><p><a href=/php/filesystem/is_file/>is_file</a></p><p><a href=/php/filesystem/is_link/>is_link</a></p><p><a href=/php/filesystem/is_readable/>is_readable</a></p><p><a href=/php/filesystem/is_uploaded_file/>is_uploaded_file</a></p><p><a href=/php/filesystem/is_writable/>is_writable</a></p><p><a href=/php/filesystem/is_writeable/>is_writeable</a></p><p><a href=/php/filesystem/lchgrp/>lchgrp</a></p><p><a href=/php/filesystem/lchown/>lchown</a></p><p><a href=/php/filesystem/link/>link</a></p><p><a href=/php/filesystem/linkinfo/>linkinfo</a></p><p><a href=/php/filesystem/lstat/>lstat</a></p><p><a href=/php/filesystem/mkdir/>mkdir</a></p><p><a href=/php/filesystem/move_uploaded_file/>move_uploaded_file</a></p><p><a href=/php/filesystem/pathinfo/>pathinfo</a></p><p><a href=/php/filesystem/pclose/>pclose</a></p><p><a href=/php/filesystem/popen/>popen</a></p><p><a href=/php/filesystem/readfile/>readfile</a></p><p><a href=/php/filesystem/readlink/>readlink</a></p><p><a href=/php/filesystem/realpath/>realpath</a></p><p><a href=/php/filesystem/realpath_cache_get/>realpath_cache_get</a></p><p><a href=/php/filesystem/realpath_cache_size/>realpath_cache_size</a></p><p><a href=/php/filesystem/rename/>rename</a></p><p><a href=/php/filesystem/rewind/>rewind</a></p><p><a href=/php/filesystem/rmdir/>rmdir</a></p><p><a href=/php/filesystem/set_file_buffer/>set_file_buffer</a></p><p><a href=/php/filesystem/stat/>stat</a></p><p><a href=/php/filesystem/symlink/>symlink</a></p><p><a href=/php/filesystem/tempnam/>tempnam</a></p><p><a href=/php/filesystem/tmpfile/>tmpfile</a></p><p><a href=/php/filesystem/touch/>touch</a></p><p><a href=/php/filesystem/umask/>umask</a></p><p><a href=/php/filesystem/unlink/>unlink</a></p></div><h2 id=filter><a href=#filter>Filter</a></h2><div class=margin><p><a href=/php/filter/filter_has_var/>filter_has_var</a></p><p><a href=/php/filter/filter_id/>filter_id</a></p><p><a href=/php/filter/filter_input/>filter_input</a></p><p><a href=/php/filter/filter_input_array/>filter_input_array</a></p><p><a href=/php/filter/filter_list/>filter_list</a></p><p><a href=/php/filter/filter_var/>filter_var</a></p><p><a href=/php/filter/filter_var_array/>filter_var_array</a></p></div><h2 id=function-handling><a href=#function-handling>Function Handling</a></h2><div class=margin><p><a href=/php/function-handling/call_user_func/>call_user_func</a></p><p><a href=/php/function-handling/call_user_func_array/>call_user_func_array</a></p><p><a href=/php/function-handling/forward_static_call/>forward_static_call</a></p><p><a href=/php/function-handling/forward_static_call_array/>forward_static_call_array</a></p><p><a href=/php/function-handling/func_get_arg/>func_get_arg</a></p><p><a href=/php/function-handling/func_get_args/>func_get_args</a></p><p><a href=/php/function-handling/func_num_args/>func_num_args</a></p><p><a href=/php/function-handling/function_exists/>function_exists</a></p><p><a href=/php/function-handling/get_defined_functions/>get_defined_functions</a></p><p><a href=/php/function-handling/register_shutdown_function/>register_shutdown_function</a></p><p><a href=/php/function-handling/register_tick_function/>register_tick_function</a></p><p><a href=/php/function-handling/unregister_tick_function/>unregister_tick_function</a></p></div><h2 id=hash><a href=#hash>Hash</a></h2><div class=margin><p><a href=/php/hash/hash/>hash</a></p><p><a href=/php/hash/hash_algos/>hash_algos</a></p><p><a href=/php/hash/hash_copy/>hash_copy</a></p><p><a href=/php/hash/hash_equals/>hash_equals</a></p><p><a href=/php/hash/hash_file/>hash_file</a></p><p><a href=/php/hash/hash_final/>hash_final</a></p><p><a href=/php/hash/hash_hkdf/>hash_hkdf</a></p><p><a href=/php/hash/hash_hmac/>hash_hmac</a></p><p><a href=/php/hash/hash_hmac_algos/>hash_hmac_algos</a></p><p><a href=/php/hash/hash_hmac_file/>hash_hmac_file</a></p><p><a href=/php/hash/hash_init/>hash_init</a></p><p><a href=/php/hash/hash_pbkdf2/>hash_pbkdf2</a></p><p><a href=/php/hash/hash_update/>hash_update</a></p><p><a href=/php/hash/hash_update_file/>hash_update_file</a></p><p><a href=/php/hash/hash_update_stream/>hash_update_stream</a></p></div><h2 id=image><a href=#image>Image</a></h2><div class=margin><p><a href=/php/image/gd_info/>gd_info</a></p><p><a href=/php/image/getimagesize/>getimagesize</a></p><p><a href=/php/image/getimagesizefromstring/>getimagesizefromstring</a></p><p><a href=/php/image/image_type_to_extension/>image_type_to_extension</a></p><p><a href=/php/image/image_type_to_mime_type/>image_type_to_mime_type</a></p><p><a href=/php/image/imageaffine/>imageaffine</a></p><p><a href=/php/image/imageaffinematrixconcat/>imageaffinematrixconcat</a></p><p><a href=/php/image/imageaffinematrixget/>imageaffinematrixget</a></p><p><a href=/php/image/imagealphablending/>imagealphablending</a></p><p><a href=/php/image/imageantialias/>imageantialias</a></p><p><a href=/php/image/imagearc/>imagearc</a></p><p><a href=/php/image/imageavif/>imageavif</a></p><p><a href=/php/image/imagebmp/>imagebmp</a></p><p><a href=/php/image/imagechar/>imagechar</a></p><p><a href=/php/image/imagecharup/>imagecharup</a></p><p><a href=/php/image/imagecolorallocate/>imagecolorallocate</a></p><p><a href=/php/image/imagecolorallocatealpha/>imagecolorallocatealpha</a></p><p><a href=/php/image/imagecolorat/>imagecolorat</a></p><p><a href=/php/image/imagecolorclosest/>imagecolorclosest</a></p><p><a href=/php/image/imagecolorclosestalpha/>imagecolorclosestalpha</a></p><p><a href=/php/image/imagecolorclosesthwb/>imagecolorclosesthwb</a></p><p><a href=/php/image/imagecolordeallocate/>imagecolordeallocate</a></p><p><a href=/php/image/imagecolorexact/>imagecolorexact</a></p><p><a href=/php/image/imagecolorexactalpha/>imagecolorexactalpha</a></p><p><a href=/php/image/imagecolormatch/>imagecolormatch</a></p><p><a href=/php/image/imagecolorresolve/>imagecolorresolve</a></p><p><a href=/php/image/imagecolorresolvealpha/>imagecolorresolvealpha</a></p><p><a href=/php/image/imagecolorset/>imagecolorset</a></p><p><a href=/php/image/imagecolorsforindex/>imagecolorsforindex</a></p><p><a href=/php/image/imagecolorstotal/>imagecolorstotal</a></p><p><a href=/php/image/imagecolortransparent/>imagecolortransparent</a></p><p><a href=/php/image/imageconvolution/>imageconvolution</a></p><p><a href=/php/image/imagecopy/>imagecopy</a></p><p><a href=/php/image/imagecopymerge/>imagecopymerge</a></p><p><a href=/php/image/imagecopymergegray/>imagecopymergegray</a></p><p><a href=/php/image/imagecopyresampled/>imagecopyresampled</a></p><p><a href=/php/image/imagecopyresized/>imagecopyresized</a></p><p><a href=/php/image/imagecreate/>imagecreate</a></p><p><a href=/php/image/imagecreatefromavif/>imagecreatefromavif</a></p><p><a href=/php/image/imagecreatefrombmp/>imagecreatefrombmp</a></p><p><a href=/php/image/imagecreatefromgif/>imagecreatefromgif</a></p><p><a href=/php/image/imagecreatefromjpeg/>imagecreatefromjpeg</a></p><p><a href=/php/image/imagecreatefrompng/>imagecreatefrompng</a></p><p><a href=/php/image/imagecreatefromstring/>imagecreatefromstring</a></p><p><a href=/php/image/imagecreatefromtga/>imagecreatefromtga</a></p><p><a href=/php/image/imagecreatefromwbmp/>imagecreatefromwbmp</a></p><p><a href=/php/image/imagecreatefromwebp/>imagecreatefromwebp</a></p><p><a href=/php/image/imagecreatefromxbm/>imagecreatefromxbm</a></p><p><a href=/php/image/imagecreatefromxpm/>imagecreatefromxpm</a></p><p><a href=/php/image/imagecreatetruecolor/>imagecreatetruecolor</a></p><p><a href=/php/image/imagecrop/>imagecrop</a></p><p><a href=/php/image/imagecropauto/>imagecropauto</a></p><p><a href=/php/image/imagedashedline/>imagedashedline</a></p><p><a href=/php/image/imagedestroy/>imagedestroy</a></p><p><a href=/php/image/imageellipse/>imageellipse</a></p><p><a href=/php/image/imagefill/>imagefill</a></p><p><a href=/php/image/imagefilledarc/>imagefilledarc</a></p><p><a href=/php/image/imagefilledellipse/>imagefilledellipse</a></p><p><a href=/php/image/imagefilledpolygon/>imagefilledpolygon</a></p><p><a href=/php/image/imagefilledrectangle/>imagefilledrectangle</a></p><p><a href=/php/image/imagefilltoborder/>imagefilltoborder</a></p><p><a href=/php/image/imagefilter/>imagefilter</a></p><p><a href=/php/image/imageflip/>imageflip</a></p><p><a href=/php/image/imagefontheight/>imagefontheight</a></p><p><a href=/php/image/imagefontwidth/>imagefontwidth</a></p><p><a href=/php/image/imageftbbox/>imageftbbox</a></p><p><a href=/php/image/imagefttext/>imagefttext</a></p><p><a href=/php/image/imagegammacorrect/>imagegammacorrect</a></p><p><a href=/php/image/imagegetclip/>imagegetclip</a></p><p><a href=/php/image/imagegetinterpolation/>imagegetinterpolation</a></p><p><a href=/php/image/imagegif/>imagegif</a></p><p><a href=/php/image/imageinterlace/>imageinterlace</a></p><p><a href=/php/image/imageistruecolor/>imageistruecolor</a></p><p><a href=/php/image/imagejpeg/>imagejpeg</a></p><p><a href=/php/image/imagelayereffect/>imagelayereffect</a></p><p><a href=/php/image/imageline/>imageline</a></p><p><a href=/php/image/imageloadfont/>imageloadfont</a></p><p><a href=/php/image/imageopenpolygon/>imageopenpolygon</a></p><p><a href=/php/image/imagepalettecopy/>imagepalettecopy</a></p><p><a href=/php/image/imagepalettetotruecolor/>imagepalettetotruecolor</a></p><p><a href=/php/image/imagepng/>imagepng</a></p><p><a href=/php/image/imagepolygon/>imagepolygon</a></p><p><a href=/php/image/imagerectangle/>imagerectangle</a></p><p><a href=/php/image/imageresolution/>imageresolution</a></p><p><a href=/php/image/imagerotate/>imagerotate</a></p><p><a href=/php/image/imagesavealpha/>imagesavealpha</a></p><p><a href=/php/image/imagescale/>imagescale</a></p><p><a href=/php/image/imagesetbrush/>imagesetbrush</a></p><p><a href=/php/image/imagesetclip/>imagesetclip</a></p><p><a href=/php/image/imagesetinterpolation/>imagesetinterpolation</a></p><p><a href=/php/image/imagesetpixel/>imagesetpixel</a></p><p><a href=/php/image/imagesetstyle/>imagesetstyle</a></p><p><a href=/php/image/imagesetthickness/>imagesetthickness</a></p><p><a href=/php/image/imagesettile/>imagesettile</a></p><p><a href=/php/image/imagestring/>imagestring</a></p><p><a href=/php/image/imagestringup/>imagestringup</a></p><p><a href=/php/image/imagesx/>imagesx</a></p><p><a href=/php/image/imagesy/>imagesy</a></p><p><a href=/php/image/imagetruecolortopalette/>imagetruecolortopalette</a></p><p><a href=/php/image/imagettfbbox/>imagettfbbox</a></p><p><a href=/php/image/imagettftext/>imagettftext</a></p><p><a href=/php/image/imagetypes/>imagetypes</a></p><p><a href=/php/image/imagewbmp/>imagewbmp</a></p><p><a href=/php/image/imagewebp/>imagewebp</a></p><p><a href=/php/image/imagexbm/>imagexbm</a></p><p><a href=/php/image/iptcembed/>iptcembed</a></p><p><a href=/php/image/iptcparse/>iptcparse</a></p></div><h2 id=mail><a href=#mail>Mail</a></h2><div class=margin><p><a href=/php/mail/mail/>mail</a></p></div><h2 id=math><a href=#math>Math</a></h2><div class=margin><p><a href=/php/math/abs/>abs</a></p><p><a href=/php/math/acos/>acos</a></p><p><a href=/php/math/acosh/>acosh</a></p><p><a href=/php/math/asin/>asin</a></p><p><a href=/php/math/asinh/>asinh</a></p><p><a href=/php/math/atan/>atan</a></p><p><a href=/php/math/atan2/>atan2</a></p><p><a href=/php/math/atanh/>atanh</a></p><p><a href=/php/math/base_convert/>base_convert</a></p><p><a href=/php/math/bindec/>bindec</a></p><p><a href=/php/math/ceil/>ceil</a></p><p><a href=/php/math/cos/>cos</a></p><p><a href=/php/math/cosh/>cosh</a></p><p><a href=/php/math/decbin/>decbin</a></p><p><a href=/php/math/dechex/>dechex</a></p><p><a href=/php/math/decoct/>decoct</a></p><p><a href=/php/math/deg2rad/>deg2rad</a></p><p><a href=/php/math/exp/>exp</a></p><p><a href=/php/math/expm1/>expm1</a></p><p><a href=/php/math/fdiv/>fdiv</a></p><p><a href=/php/math/floor/>floor</a></p><p><a href=/php/math/fmod/>fmod</a></p><p><a href=/php/math/hexdec/>hexdec</a></p><p><a href=/php/math/hypot/>hypot</a></p><p><a href=/php/math/intdiv/>intdiv</a></p><p><a href=/php/math/is_finite/>is_finite</a></p><p><a href=/php/math/is_infinite/>is_infinite</a></p><p><a href=/php/math/is_nan/>is_nan</a></p><p><a href=/php/math/log/>log</a></p><p><a href=/php/math/log10/>log10</a></p><p><a href=/php/math/log1p/>log1p</a></p><p><a href=/php/math/max/>max</a></p><p><a href=/php/math/min/>min</a></p><p><a href=/php/math/octdec/>octdec</a></p><p><a href=/php/math/pi/>pi</a></p><p><a href=/php/math/pow/>pow</a></p><p><a href=/php/math/rad2deg/>rad2deg</a></p><p><a href=/php/math/round/>round</a></p><p><a href=/php/math/sin/>sin</a></p><p><a href=/php/math/sinh/>sinh</a></p><p><a href=/php/math/sqrt/>sqrt</a></p><p><a href=/php/math/tan/>tan</a></p><p><a href=/php/math/tanh/>tanh</a></p></div><h2 id=miscellaneous><a href=#miscellaneous>Miscellaneous</a></h2><div class=margin><p><a href=/php/miscellaneous/__halt_compiler/>__halt_compiler</a></p><p><a href=/php/miscellaneous/connection_aborted/>connection_aborted</a></p><p><a href=/php/miscellaneous/connection_status/>connection_status</a></p><p><a href=/php/miscellaneous/constant/>constant</a></p><p><a href=/php/miscellaneous/define/>define</a></p><p><a href=/php/miscellaneous/defined/>defined</a></p><p><a href=/php/miscellaneous/die/>die</a></p><p><a href=/php/miscellaneous/eval/>eval</a></p><p><a href=/php/miscellaneous/exit/>exit</a></p><p><a href=/php/miscellaneous/highlight_file/>highlight_file</a></p><p><a href=/php/miscellaneous/highlight_string/>highlight_string</a></p><p><a href=/php/miscellaneous/hrtime/>hrtime</a></p><p><a href=/php/miscellaneous/ignore_user_abort/>ignore_user_abort</a></p><p><a href=/php/miscellaneous/pack/>pack</a></p><p><a href=/php/miscellaneous/php_strip_whitespace/>php_strip_whitespace</a></p><p><a href=/php/miscellaneous/show_source/>show_source</a></p><p><a href=/php/miscellaneous/sleep/>sleep</a></p><p><a href=/php/miscellaneous/sys_getloadavg/>sys_getloadavg</a></p><p><a href=/php/miscellaneous/time_nanosleep/>time_nanosleep</a></p><p><a href=/php/miscellaneous/time_sleep_until/>time_sleep_until</a></p><p><a href=/php/miscellaneous/uniqid/>uniqid</a></p><p><a href=/php/miscellaneous/unpack/>unpack</a></p><p><a href=/php/miscellaneous/usleep/>usleep</a></p></div><h2 id=network><a href=#network>Network</a></h2><div class=margin><p><a href=/php/network/checkdnsrr/>checkdnsrr</a></p><p><a href=/php/network/closelog/>closelog</a></p><p><a href=/php/network/dns_check_record/>dns_check_record</a></p><p><a href=/php/network/dns_get_mx/>dns_get_mx</a></p><p><a href=/php/network/dns_get_record/>dns_get_record</a></p><p><a href=/php/network/fsockopen/>fsockopen</a></p><p><a href=/php/network/gethostbyaddr/>gethostbyaddr</a></p><p><a href=/php/network/gethostbyname/>gethostbyname</a></p><p><a href=/php/network/gethostbynamel/>gethostbynamel</a></p><p><a href=/php/network/gethostname/>gethostname</a></p><p><a href=/php/network/getmxrr/>getmxrr</a></p><p><a href=/php/network/getprotobyname/>getprotobyname</a></p><p><a href=/php/network/getprotobynumber/>getprotobynumber</a></p><p><a href=/php/network/getservbyname/>getservbyname</a></p><p><a href=/php/network/getservbyport/>getservbyport</a></p><p><a href=/php/network/header/>header</a></p><p><a href=/php/network/header_register_callback/>header_register_callback</a></p><p><a href=/php/network/header_remove/>header_remove</a></p><p><a href=/php/network/headers_list/>headers_list</a></p><p><a href=/php/network/headers_sent/>headers_sent</a></p><p><a href=/php/network/http_response_code/>http_response_code</a></p><p><a href=/php/network/inet_ntop/>inet_ntop</a></p><p><a href=/php/network/inet_pton/>inet_pton</a></p><p><a href=/php/network/ip2long/>ip2long</a></p><p><a href=/php/network/long2ip/>long2ip</a></p><p><a href=/php/network/openlog/>openlog</a></p><p><a href=/php/network/pfsockopen/>pfsockopen</a></p><p><a href=/php/network/setcookie/>setcookie</a></p><p><a href=/php/network/setrawcookie/>setrawcookie</a></p><p><a href=/php/network/socket_get_status/>socket_get_status</a></p><p><a href=/php/network/socket_set_blocking/>socket_set_blocking</a></p><p><a href=/php/network/socket_set_timeout/>socket_set_timeout</a></p><p><a href=/php/network/syslog/>syslog</a></p></div><h2 id=options-/-information><a href=#options-/-information>Options / Information</a></h2><div class=margin><p><a href=/php/options-information/assert/>assert</a></p><p><a href=/php/options-information/assert_options/>assert_options</a></p><p><a href=/php/options-information/cli_get_process_title/>cli_get_process_title</a></p><p><a href=/php/options-information/cli_set_process_title/>cli_set_process_title</a></p><p><a href=/php/options-information/dl/>dl</a></p><p><a href=/php/options-information/extension_loaded/>extension_loaded</a></p><p><a href=/php/options-information/gc_collect_cycles/>gc_collect_cycles</a></p><p><a href=/php/options-information/gc_disable/>gc_disable</a></p><p><a href=/php/options-information/gc_enable/>gc_enable</a></p><p><a href=/php/options-information/gc_enabled/>gc_enabled</a></p><p><a href=/php/options-information/gc_mem_caches/>gc_mem_caches</a></p><p><a href=/php/options-information/gc_status/>gc_status</a></p><p><a href=/php/options-information/get_cfg_var/>get_cfg_var</a></p><p><a href=/php/options-information/get_current_user/>get_current_user</a></p><p><a href=/php/options-information/get_defined_constants/>get_defined_constants</a></p><p><a href=/php/options-information/get_extension_funcs/>get_extension_funcs</a></p><p><a href=/php/options-information/get_include_path/>get_include_path</a></p><p><a href=/php/options-information/get_included_files/>get_included_files</a></p><p><a href=/php/options-information/get_loaded_extensions/>get_loaded_extensions</a></p><p><a href=/php/options-information/get_required_files/>get_required_files</a></p><p><a href=/php/options-information/get_resources/>get_resources</a></p><p><a href=/php/options-information/getenv/>getenv</a></p><p><a href=/php/options-information/getlastmod/>getlastmod</a></p><p><a href=/php/options-information/getmygid/>getmygid</a></p><p><a href=/php/options-information/getmyinode/>getmyinode</a></p><p><a href=/php/options-information/getmypid/>getmypid</a></p><p><a href=/php/options-information/getmyuid/>getmyuid</a></p><p><a href=/php/options-information/getopt/>getopt</a></p><p><a href=/php/options-information/getrusage/>getrusage</a></p><p><a href=/php/options-information/ini_alter/>ini_alter</a></p><p><a href=/php/options-information/ini_get/>ini_get</a></p><p><a href=/php/options-information/ini_get_all/>ini_get_all</a></p><p><a href=/php/options-information/ini_parse_quantity/>ini_parse_quantity</a></p><p><a href=/php/options-information/ini_restore/>ini_restore</a></p><p><a href=/php/options-information/ini_set/>ini_set</a></p><p><a href=/php/options-information/memory_get_peak_usage/>memory_get_peak_usage</a></p><p><a href=/php/options-information/memory_get_usage/>memory_get_usage</a></p><p><a href=/php/options-information/memory_reset_peak_usage/>memory_reset_peak_usage</a></p><p><a href=/php/options-information/php_ini_loaded_file/>php_ini_loaded_file</a></p><p><a href=/php/options-information/php_ini_scanned_files/>php_ini_scanned_files</a></p><p><a href=/php/options-information/php_sapi_name/>php_sapi_name</a></p><p><a href=/php/options-information/php_uname/>php_uname</a></p><p><a href=/php/options-information/phpcredits/>phpcredits</a></p><p><a href=/php/options-information/phpinfo/>phpinfo</a></p><p><a href=/php/options-information/phpversion/>phpversion</a></p><p><a href=/php/options-information/putenv/>putenv</a></p><p><a href=/php/options-information/set_include_path/>set_include_path</a></p><p><a href=/php/options-information/set_time_limit/>set_time_limit</a></p><p><a href=/php/options-information/sys_get_temp_dir/>sys_get_temp_dir</a></p><p><a href=/php/options-information/version_compare/>version_compare</a></p><p><a href=/php/options-information/zend_thread_id/>zend_thread_id</a></p><p><a href=/php/options-information/zend_version/>zend_version</a></p></div><h2 id=output-control><a href=#output-control>Output Control</a></h2><div class=margin><p><a href=/php/output-control/flush/>flush</a></p><p><a href=/php/output-control/ob_clean/>ob_clean</a></p><p><a href=/php/output-control/ob_end_clean/>ob_end_clean</a></p><p><a href=/php/output-control/ob_end_flush/>ob_end_flush</a></p><p><a href=/php/output-control/ob_flush/>ob_flush</a></p><p><a href=/php/output-control/ob_get_clean/>ob_get_clean</a></p><p><a href=/php/output-control/ob_get_contents/>ob_get_contents</a></p><p><a href=/php/output-control/ob_get_flush/>ob_get_flush</a></p><p><a href=/php/output-control/ob_get_length/>ob_get_length</a></p><p><a href=/php/output-control/ob_get_level/>ob_get_level</a></p><p><a href=/php/output-control/ob_get_status/>ob_get_status</a></p><p><a href=/php/output-control/ob_gzhandler/>ob_gzhandler</a></p><p><a href=/php/output-control/ob_implicit_flush/>ob_implicit_flush</a></p><p><a href=/php/output-control/ob_list_handlers/>ob_list_handlers</a></p><p><a href=/php/output-control/ob_start/>ob_start</a></p><p><a href=/php/output-control/output_add_rewrite_var/>output_add_rewrite_var</a></p><p><a href=/php/output-control/output_reset_rewrite_vars/>output_reset_rewrite_vars</a></p></div><h2 id=pcre><a href=#pcre>PCRE</a></h2><div class=margin><p><a href=/php/pcre/preg_filter/>preg_filter</a></p><p><a href=/php/pcre/preg_grep/>preg_grep</a></p><p><a href=/php/pcre/preg_last_error/>preg_last_error</a></p><p><a href=/php/pcre/preg_match/>preg_match</a></p><p><a href=/php/pcre/preg_match_all/>preg_match_all</a></p><p><a href=/php/pcre/preg_quote/>preg_quote</a></p><p><a href=/php/pcre/preg_replace/>preg_replace</a></p><p><a href=/php/pcre/preg_replace_callback/>preg_replace_callback</a></p><p><a href=/php/pcre/preg_replace_callback_array/>preg_replace_callback_array</a></p><p><a href=/php/pcre/preg_split/>preg_split</a></p></div><h2 id=random><a href=#random>Random</a></h2><div class=margin><p><a href=/php/random/getrandmax/>getrandmax</a></p><p><a href=/php/random/lcg_value/>lcg_value</a></p><p><a href=/php/random/mt_getrandmax/>mt_getrandmax</a></p><p><a href=/php/random/mt_rand/>mt_rand</a></p><p><a href=/php/random/mt_srand/>mt_srand</a></p><p><a href=/php/random/rand/>rand</a></p><p><a href=/php/random/random_bytes/>random_bytes</a></p><p><a href=/php/random/random_int/>random_int</a></p><p><a href=/php/random/srand/>srand</a></p></div><h2 id=readline><a href=#readline>Readline</a></h2><div class=margin><p><a href=/php/readline/readline/>readline</a></p><p><a href=/php/readline/readline_add_history/>readline_add_history</a></p><p><a href=/php/readline/readline_callback_handler_install/>readline_callback_handler_install</a></p><p><a href=/php/readline/readline_callback_handler_remove/>readline_callback_handler_remove</a></p><p><a href=/php/readline/readline_callback_read_char/>readline_callback_read_char</a></p><p><a href=/php/readline/readline_clear_history/>readline_clear_history</a></p><p><a href=/php/readline/readline_completion_function/>readline_completion_function</a></p><p><a href=/php/readline/readline_info/>readline_info</a></p><p><a href=/php/readline/readline_list_history/>readline_list_history</a></p><p><a href=/php/readline/readline_on_new_line/>readline_on_new_line</a></p><p><a href=/php/readline/readline_read_history/>readline_read_history</a></p><p><a href=/php/readline/readline_redisplay/>readline_redisplay</a></p><p><a href=/php/readline/readline_write_history/>readline_write_history</a></p></div><h2 id=stream><a href=#stream>Stream</a></h2><div class=margin><p><a href=/php/stream/stream_bucket_append/>stream_bucket_append</a></p><p><a href=/php/stream/stream_bucket_make_writeable/>stream_bucket_make_writeable</a></p><p><a href=/php/stream/stream_bucket_new/>stream_bucket_new</a></p><p><a href=/php/stream/stream_bucket_prepend/>stream_bucket_prepend</a></p><p><a href=/php/stream/stream_context_create/>stream_context_create</a></p><p><a href=/php/stream/stream_context_get_default/>stream_context_get_default</a></p><p><a href=/php/stream/stream_context_get_options/>stream_context_get_options</a></p><p><a href=/php/stream/stream_context_get_params/>stream_context_get_params</a></p><p><a href=/php/stream/stream_context_set_default/>stream_context_set_default</a></p><p><a href=/php/stream/stream_context_set_option/>stream_context_set_option</a></p><p><a href=/php/stream/stream_context_set_params/>stream_context_set_params</a></p><p><a href=/php/stream/stream_copy_to_stream/>stream_copy_to_stream</a></p><p><a href=/php/stream/stream_filter_append/>stream_filter_append</a></p><p><a href=/php/stream/stream_filter_prepend/>stream_filter_prepend</a></p><p><a href=/php/stream/stream_filter_register/>stream_filter_register</a></p><p><a href=/php/stream/stream_filter_remove/>stream_filter_remove</a></p><p><a href=/php/stream/stream_get_contents/>stream_get_contents</a></p><p><a href=/php/stream/stream_get_filters/>stream_get_filters</a></p><p><a href=/php/stream/stream_get_line/>stream_get_line</a></p><p><a href=/php/stream/stream_get_meta_data/>stream_get_meta_data</a></p><p><a href=/php/stream/stream_get_transports/>stream_get_transports</a></p><p><a href=/php/stream/stream_get_wrappers/>stream_get_wrappers</a></p><p><a href=/php/stream/stream_is_local/>stream_is_local</a></p><p><a href=/php/stream/stream_isatty/>stream_isatty</a></p><p><a href=/php/stream/stream_notification_callback/>stream_notification_callback</a></p><p><a href=/php/stream/stream_register_wrapper/>stream_register_wrapper</a></p><p><a href=/php/stream/stream_resolve_include_path/>stream_resolve_include_path</a></p><p><a href=/php/stream/stream_select/>stream_select</a></p><p><a href=/php/stream/stream_set_blocking/>stream_set_blocking</a></p><p><a href=/php/stream/stream_set_chunk_size/>stream_set_chunk_size</a></p><p><a href=/php/stream/stream_set_read_buffer/>stream_set_read_buffer</a></p><p><a href=/php/stream/stream_set_timeout/>stream_set_timeout</a></p><p><a href=/php/stream/stream_set_write_buffer/>stream_set_write_buffer</a></p><p><a href=/php/stream/stream_socket_accept/>stream_socket_accept</a></p><p><a href=/php/stream/stream_socket_client/>stream_socket_client</a></p><p><a href=/php/stream/stream_socket_enable_crypto/>stream_socket_enable_crypto</a></p><p><a href=/php/stream/stream_socket_get_name/>stream_socket_get_name</a></p><p><a href=/php/stream/stream_socket_pair/>stream_socket_pair</a></p><p><a href=/php/stream/stream_socket_recvfrom/>stream_socket_recvfrom</a></p><p><a href=/php/stream/stream_socket_sendto/>stream_socket_sendto</a></p><p><a href=/php/stream/stream_socket_server/>stream_socket_server</a></p><p><a href=/php/stream/stream_socket_shutdown/>stream_socket_shutdown</a></p><p><a href=/php/stream/stream_supports_lock/>stream_supports_lock</a></p><p><a href=/php/stream/stream_wrapper_register/>stream_wrapper_register</a></p><p><a href=/php/stream/stream_wrapper_restore/>stream_wrapper_restore</a></p><p><a href=/php/stream/stream_wrapper_unregister/>stream_wrapper_unregister</a></p></div><h2 id=string><a href=#string>String</a></h2><div class=margin><p><a href=/php/string/addcslashes/>addcslashes</a></p><p><a href=/php/string/addslashes/>addslashes</a></p><p><a href=/php/string/bin2hex/>bin2hex</a></p><p><a href=/php/string/chop/>chop</a></p><p><a href=/php/string/chr/>chr</a></p><p><a href=/php/string/chunk_split/>chunk_split</a></p><p><a href=/php/string/convert_uudecode/>convert_uudecode</a></p><p><a href=/php/string/convert_uuencode/>convert_uuencode</a></p><p><a href=/php/string/count_chars/>count_chars</a></p><p><a href=/php/string/crc32/>crc32</a></p><p><a href=/php/string/crypt/>crypt</a></p><p><a href=/php/string/echo/>echo</a></p><p><a href=/php/string/explode/>explode</a></p><p><a href=/php/string/fprintf/>fprintf</a></p><p><a href=/php/string/get_html_translation_table/>get_html_translation_table</a></p><p><a href=/php/string/hebrev/>hebrev</a></p><p><a href=/php/string/hebrevc/>hebrevc</a></p><p><a href=/php/string/hex2bin/>hex2bin</a></p><p><a href=/php/string/html_entity_decode/>html_entity_decode</a></p><p><a href=/php/string/htmlentities/>htmlentities</a></p><p><a href=/php/string/htmlspecialchars/>htmlspecialchars</a></p><p><a href=/php/string/htmlspecialchars_decode/>htmlspecialchars_decode</a></p><p><a href=/php/string/implode/>implode</a></p><p><a href=/php/string/join/>join</a></p><p><a href=/php/string/lcfirst/>lcfirst</a></p><p><a href=/php/string/levenshtein/>levenshtein</a></p><p><a href=/php/string/localeconv/>localeconv</a></p><p><a href=/php/string/ltrim/>ltrim</a></p><p><a href=/php/string/md5/>md5</a></p><p><a href=/php/string/md5_file/>md5_file</a></p><p><a href=/php/string/metaphone/>metaphone</a></p><p><a href=/php/string/nl_langinfo/>nl_langinfo</a></p><p><a href=/php/string/nl2br/>nl2br</a></p><p><a href=/php/string/number_format/>number_format</a></p><p><a href=/php/string/ord/>ord</a></p><p><a href=/php/string/parse_str/>parse_str</a></p><p><a href=/php/string/print/>print</a></p><p><a href=/php/string/printf/>printf</a></p><p><a href=/php/string/quoted_printable_decode/>quoted_printable_decode</a></p><p><a href=/php/string/quoted_printable_encode/>quoted_printable_encode</a></p><p><a href=/php/string/quotemeta/>quotemeta</a></p><p><a href=/php/string/rtrim/>rtrim</a></p><p><a href=/php/string/setlocale/>setlocale</a></p><p><a href=/php/string/sha1/>sha1</a></p><p><a href=/php/string/sha1_file/>sha1_file</a></p><p><a href=/php/string/similar_text/>similar_text</a></p><p><a href=/php/string/soundex/>soundex</a></p><p><a href=/php/string/sprintf/>sprintf</a></p><p><a href=/php/string/sscanf/>sscanf</a></p><p><a href=/php/string/str_contains/>str_contains</a></p><p><a href=/php/string/str_ends_with/>str_ends_with</a></p><p><a href=/php/string/str_getcsv/>str_getcsv</a></p><p><a href=/php/string/str_ireplace/>str_ireplace</a></p><p><a href=/php/string/str_pad/>str_pad</a></p><p><a href=/php/string/str_repeat/>str_repeat</a></p><p><a href=/php/string/str_replace/>str_replace</a></p><p><a href=/php/string/str_rot13/>str_rot13</a></p><p><a href=/php/string/str_shuffle/>str_shuffle</a></p><p><a href=/php/string/str_split/>str_split</a></p><p><a href=/php/string/str_starts_with/>str_starts_with</a></p><p><a href=/php/string/str_word_count/>str_word_count</a></p><p><a href=/php/string/strcasecmp/>strcasecmp</a></p><p><a href=/php/string/strchr/>strchr</a></p><p><a href=/php/string/strcmp/>strcmp</a></p><p><a href=/php/string/strcoll/>strcoll</a></p><p><a href=/php/string/strcspn/>strcspn</a></p><p><a href=/php/string/strip_tags/>strip_tags</a></p><p><a href=/php/string/stripcslashes/>stripcslashes</a></p><p><a href=/php/string/stripos/>stripos</a></p><p><a href=/php/string/stripslashes/>stripslashes</a></p><p><a href=/php/string/stristr/>stristr</a></p><p><a href=/php/string/strlen/>strlen</a></p><p><a href=/php/string/strnatcasecmp/>strnatcasecmp</a></p><p><a href=/php/string/strnatcmp/>strnatcmp</a></p><p><a href=/php/string/strncasecmp/>strncasecmp</a></p><p><a href=/php/string/strncmp/>strncmp</a></p><p><a href=/php/string/strpbrk/>strpbrk</a></p><p><a href=/php/string/strpos/>strpos</a></p><p><a href=/php/string/strrchr/>strrchr</a></p><p><a href=/php/string/strrev/>strrev</a></p><p><a href=/php/string/strripos/>strripos</a></p><p><a href=/php/string/strrpos/>strrpos</a></p><p><a href=/php/string/strspn/>strspn</a></p><p><a href=/php/string/strstr/>strstr</a></p><p><a href=/php/string/strtok/>strtok</a></p><p><a href=/php/string/strtolower/>strtolower</a></p><p><a href=/php/string/strtoupper/>strtoupper</a></p><p><a href=/php/string/strtr/>strtr</a></p><p><a href=/php/string/substr/>substr</a></p><p><a href=/php/string/substr_compare/>substr_compare</a></p><p><a href=/php/string/substr_count/>substr_count</a></p><p><a href=/php/string/substr_replace/>substr_replace</a></p><p><a href=/php/string/trim/>trim</a></p><p><a href=/php/string/ucfirst/>ucfirst</a></p><p><a href=/php/string/ucwords/>ucwords</a></p><p><a href=/php/string/vfprintf/>vfprintf</a></p><p><a href=/php/string/vprintf/>vprintf</a></p><p><a href=/php/string/vsprintf/>vsprintf</a></p><p><a href=/php/string/wordwrap/>wordwrap</a></p></div><h2 id=tokenizer><a href=#tokenizer>Tokenizer</a></h2><div class=margin><p><a href=/php/tokenizer/token_get_all/>token_get_all</a></p><p><a href=/php/tokenizer/token_name/>token_name</a></p></div><h2 id=url><a href=#url>URL</a></h2><div class=margin><p><a href=/php/url/base64_decode/>base64_decode</a></p><p><a href=/php/url/base64_encode/>base64_encode</a></p><p><a href=/php/url/get_headers/>get_headers</a></p><p><a href=/php/url/get_meta_tags/>get_meta_tags</a></p><p><a href=/php/url/http_build_query/>http_build_query</a></p><p><a href=/php/url/parse_url/>parse_url</a></p><p><a href=/php/url/rawurldecode/>rawurldecode</a></p><p><a href=/php/url/rawurlencode/>rawurlencode</a></p><p><a href=/php/url/urldecode/>urldecode</a></p><p><a href=/php/url/urlencode/>urlencode</a></p></div><h2 id=variable-handling><a href=#variable-handling>Variable Handling</a></h2><div class=margin><p><a href=/php/variable-handling/boolval/>boolval</a></p><p><a href=/php/variable-handling/debug_zval_dump/>debug_zval_dump</a></p><p><a href=/php/variable-handling/doubleval/>doubleval</a></p><p><a href=/php/variable-handling/empty/>empty</a></p><p><a href=/php/variable-handling/floatval/>floatval</a></p><p><a href=/php/variable-handling/get_debug_type/>get_debug_type</a></p><p><a href=/php/variable-handling/get_defined_vars/>get_defined_vars</a></p><p><a href=/php/variable-handling/get_resource_id/>get_resource_id</a></p><p><a href=/php/variable-handling/get_resource_type/>get_resource_type</a></p><p><a href=/php/variable-handling/gettype/>gettype</a></p><p><a href=/php/variable-handling/intval/>intval</a></p><p><a href=/php/variable-handling/is_array/>is_array</a></p><p><a href=/php/variable-handling/is_bool/>is_bool</a></p><p><a href=/php/variable-handling/is_callable/>is_callable</a></p><p><a href=/php/variable-handling/is_countable/>is_countable</a></p><p><a href=/php/variable-handling/is_double/>is_double</a></p><p><a href=/php/variable-handling/is_float/>is_float</a></p><p><a href=/php/variable-handling/is_int/>is_int</a></p><p><a href=/php/variable-handling/is_integer/>is_integer</a></p><p><a href=/php/variable-handling/is_iterable/>is_iterable</a></p><p><a href=/php/variable-handling/is_long/>is_long</a></p><p><a href=/php/variable-handling/is_null/>is_null</a></p><p><a href=/php/variable-handling/is_numeric/>is_numeric</a></p><p><a href=/php/variable-handling/is_object/>is_object</a></p><p><a href=/php/variable-handling/is_real/>is_real</a></p><p><a href=/php/variable-handling/is_resource/>is_resource</a></p><p><a href=/php/variable-handling/is_scalar/>is_scalar</a></p><p><a href=/php/variable-handling/is_string/>is_string</a></p><p><a href=/php/variable-handling/isset/>isset</a></p><p><a href=/php/variable-handling/print_r/>print_r</a></p><p><a href=/php/variable-handling/serialize/>serialize</a></p><p><a href=/php/variable-handling/settype/>settype</a></p><p><a href=/php/variable-handling/strval/>strval</a></p><p><a href=/php/variable-handling/unserialize/>unserialize</a></p><p><a href=/php/variable-handling/unset/>unset</a></p><p><a href=/php/variable-handling/var_dump/>var_dump</a></p><p><a href=/php/variable-handling/var_export/>var_export</a></p></div></div><div class=nav-h1><a id=nav-switch-svg>SVG</a></div><div id=nav-content-svg><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/svg/>Overview</a></p></div><h2 id=attributes><a href=#attributes>Attributes</a></h2><div class=margin><p><a href=/svg/attributes/acc 7388 umulate/>accumulate</a></p><p><a href=/svg/attributes/additive/>additive</a></p><p><a href=/svg/attributes/amplitude/>amplitude</a></p><p><a href=/svg/attributes/attributename/>attributeName</a></p><p><a href=/svg/attributes/azimuth/>azimuth</a></p><p><a href=/svg/attributes/basefrequency/>baseFrequency</a></p><p><a href=/svg/attributes/begin/>begin</a></p><p><a href=/svg/attributes/bias/>bias</a></p><p><a href=/svg/attributes/by/>by</a></p><p><a href=/svg/attributes/calcmode/>calcMode</a></p><p><a href=/svg/attributes/clippathunits/>clipPathUnits</a></p><p><a href=/svg/attributes/crossorigin/>crossorigin</a></p><p><a href=/svg/attributes/cx/>cx</a></p><p><a href=/svg/attributes/cy/>cy</a></p><p><a href=/svg/attributes/d/>d</a></p><p><a href=/svg/attributes/diffuseconstant/>diffuseConstant</a></p><p><a href=/svg/attributes/divisor/>divisor</a></p><p><a href=/svg/attributes/download/>download</a></p><p><a href=/svg/attributes/dur/>dur</a></p><p><a href=/svg/attributes/dx/>dx</a></p><p><a href=/svg/attributes/dy/>dy</a></p><p><a href=/svg/attributes/edgemode/>edgeMode</a></p><p><a href=/svg/attributes/elevation/>elevation</a></p><p><a href=/svg/attributes/end/>end</a></p><p><a href=/svg/attributes/exponent/>exponent</a></p><p><a href=/svg/attributes/fill/>fill</a></p><p><a href=/svg/attributes/filterunits/>filterUnits</a></p><p><a href=/svg/attributes/flood-color/>flood-color</a></p><p><a href=/svg/attributes/flood-opacity/>flood-opacity</a></p><p><a href=/svg/attributes/fr/>fr</a></p><p><a href=/svg/attributes/from/>from</a></p><p><a href=/svg/attributes/fx/>fx</a></p><p><a href=/svg/attributes/fy/>fy</a></p><p><a href=/svg/attributes/gradienttransform/>gradientTransform</a></p><p><a href=/svg/attributes/gradientunits/>gradientUnits</a></p><p><a href=/svg/attributes/height/>height</a></p><p><a href=/svg/attributes/href/>href</a></p><p><a href=/svg/attributes/hreflang/>hreflang</a></p><p><a href=/svg/attributes/id/>id</a></p><p><a href=/svg/attributes/in/>in</a></p><p><a href=/svg/attributes/in2/>in2</a></p><p><a href=/svg/attributes/intercept/>intercept</a></p><p><a href=/svg/attributes/k1/>k1</a></p><p><a href=/svg/attributes/k2/>k2</a></p><p><a href=/svg/attributes/k3/>k3</a></p><p><a href=/svg/attributes/k4/>k4</a></p><p><a href=/svg/attributes/kernelmatrix/>kernelMatrix</a></p><p><a href=/svg/attributes/keypoints/>keyPoints</a></p><p><a href=/svg/attributes/keysplines/>keySplines</a></p><p><a href=/svg/attributes/keytimes/>keyTimes</a></p><p><a href=/svg/attributes/lengthadjust/>lengthAdjust</a></p><p><a href=/svg/attributes/limitingconeangle/>limitingConeAngle</a></p><p><a href=/svg/attributes/markerheight/>markerHeight</a></p><p><a href=/svg/attributes/markerunits/>markerUnits</a></p><p><a href=/svg/attributes/markerwidth/>markerWidth</a></p><p><a href=/svg/attributes/maskcontentunits/>maskContentUnits</a></p><p><a href=/svg/attributes/maskunits/>maskUnits</a></p><p><a href=/svg/attributes/max/>max</a></p><p><a href=/svg/attributes/media/>media</a></p><p><a href=/svg/attributes/method/>method</a></p><p><a href=/svg/attributes/min/>min</a></p><p><a href=/svg/attributes/mode/>mode</a></p><p><a href=/svg/attributes/no-composite/>no-composite</a></p><p><a href=/svg/attributes/numoctaves/>numOctaves</a></p><p><a href=/svg/attributes/offset/>offset</a></p><p><a href=/svg/attributes/onbegin/>onbegin</a></p><p><a href=/svg/attributes/onend/>onend</a></p><p><a href=/svg/attributes/onrepeat/>onrepeat</a></p><p><a href=/svg/attributes/operator/>operator</a></p><p><a href=/svg/attributes/order/>order</a></p><p><a href=/svg/attributes/orient/>orient</a></p><p><a href=/svg/attributes/origin/>origin</a></p><p><a href=/svg/attributes/path/>path</a></p><p><a href=/svg/attributes/pathlength/>pathLength</a></p><p><a href=/svg/attributes/patterncontentunits/>patternContentUnits</a></p><p><a href=/svg/attributes/patterntransform/>patternTransform</a></p><p><a href=/svg/attributes/patternunits/>patternUnits</a></p><p><a href=/svg/attributes/ping/>ping</a></p><p><a href=/svg/attributes/points/>points</a></p><p><a href=/svg/attributes/pointsatx/>pointsAtX</a></p><p><a href=/svg/attributes/pointsaty/>pointsAtY</a></p><p><a href=/svg/attributes/pointsatz/>pointsAtZ</a></p><p><a href=/svg/attributes/preservealpha/>preserveAlpha</a></p><p><a href=/svg/attributes/preserveaspectratio/>preserveAspectRatio</a></p><p><a href=/svg/attributes/primitiveunits/>primitiveUnits</a></p><p><a href=/svg/attributes/r/>r</a></p><p><a href=/svg/attributes/radius/>radius</a></p><p><a href=/svg/attributes/referrerpolicy/>referrerPolicy</a></p><p><a href=/svg/attributes/refx/>refx</a></p><p><a href=/svg/attributes/refy/>refy</a></p><p><a href=/svg/attributes/rel/>rel</a></p><p><a href=/svg/attributes/repeatcount/>repeatCount</a></p><p><a href=/svg/attributes/repeatdur/>repeatDur</a></p><p><a href=/svg/attributes/requiredextensions/>requiredExtensions</a></p><p><a href=/svg/attributes/restart/>restart</a></p><p><a href=/svg/attributes/rotate/>rotate</a></p><p><a href=/svg/attributes/rx/>rx</a></p><p><a href=/svg/attributes/ry/>ry</a></p><p><a href=/svg/attributes/scale/>scale</a></p><p><a href=/svg/attributes/seed/>seed</a></p><p><a href=/svg/attributes/side/>side</a></p><p><a href=/svg/attributes/slope/>slope</a></p><p><a href=/svg/attributes/spacing/>spacing</a></p><p><a href=/svg/attributes/specularconstant/>specularConstant</a></p><p><a href=/svg/attributes/specularexponent/>specularExponent</a></p><p><a href=/svg/attributes/spreadmethod/>spreadMethod</a></p><p><a href=/svg/attributes/startoffset/>startoffset</a></p><p><a href=/svg/attributes/stddeviation/>stdDeviation</a></p><p><a href=/svg/attributes/stitchtiles/>stitchTiles</a></p><p><a href=/svg/attributes/stop-color/>stop-color</a></p><p><a href=/svg/attributes/stop-opacity/>stop-opacity</a></p><p><a href=/svg/attributes/surfacescale/>surfaceScale</a></p><p><a href=/svg/attributes/systemlanguage/>systemLanguage</a></p><p><a href=/svg/attributes/tabindex/>tabindex</a></p><p><a href=/svg/attributes/tablevalues/>tableValues</a></p><p><a href=/svg/attributes/target/>target</a></p><p><a href=/svg/attributes/targetx/>targetX</a></p><p><a href=/svg/attributes/targety/>targetY</a></p><p><a href=/svg/attributes/textlength/>textLength</a></p><p><a href=/svg/attributes/title/>title</a></p><p><a href=/svg/attributes/to/>to</a></p><p><a href=/svg/attributes/transform/>transform</a></p><p><a href=/svg/attributes/type/>type</a></p><p><a href=/svg/attributes/values/>values</a></p><p><a href=/svg/attributes/viewbox/>viewBox</a></p><p><a href=/svg/attributes/width/>width</a></p><p><a href=/svg/attributes/x/>x</a></p><p><a href=/svg/attributes/x1/>x1</a></p><p><a href=/svg/attributes/x2/>x2</a></p><p><a href=/svg/attributes/xchannelselector/>xChannelSelector</a></p><p><a href=/svg/attributes/y/>y</a></p><p><a href=/svg/attributes/y1/>y1</a></p><p><a href=/svg/attributes/y2/>y2</a></p><p><a href=/svg/attributes/ychannelselector/>yChannelSelector</a></p><p><a href=/svg/attributes/z/>z</a></p><p><a href=/svg/attributes/zoomandpan/>zoomAndPan</a></p></div><h2 id=elements><a href=#elements>Elements</a></h2><div class=margin><p><a href=/svg/elements/a/>a</a></p><p><a href=/svg/elements/animate/>animate</a></p><p><a href=/svg/elements/animatemotion/>animateMotion</a></p><p><a href=/svg/elements/animatetransform/>animateTransform</a></p><p><a href=/svg/elements/circle/>circle</a></p><p><a href=/svg/elements/clippath/>clipPath</a></p><p><a href=/svg/elements/defs/>defs</a></p><p><a href=/svg/elements/desc/>desc</a></p><p><a href=/svg/elements/discard/>discard</a></p><p><a href=/svg/elements/ellipse/>ellipse</a></p><p><a href=/svg/elements/feblend/>feBlend</a></p><p><a href=/svg/elements/fecolormatrix/>feColorMatrix</a></p><p><a href=/svg/elements/fecomponenttransfer/>feComponentTransfer</a></p><p><a href=/svg/elements/fecomposite/>feComposite</a></p><p><a href=/svg/elements/feconvolvematrix/>feConvolveMatrix</a></p><p><a href=/svg/elements/fediffuselighting/>feDiffuseLighting</a></p><p><a href=/svg/elements/fedisplacementmap/>feDisplacementMap</a></p><p><a href=/svg/elements/fedistantlight/>feDistantLight</a></p><p><a href=/svg/elements/fedropshadow/>feDropShadow</a></p><p><a href=/svg/elements/feflood/>feFlood</a></p><p><a href=/svg/elements/fefunca/>feFuncA</a></p><p><a href=/svg/elements/fefuncb/>feFuncB</a></p><p><a href=/svg/elements/fefuncg/>feFuncG</a></p><p><a href=/svg/elements/fefuncr/>feFuncR</a></p><p><a href=/svg/elements/fegaussianblur/>feGaussianBlur</a></p><p><a href=/svg/elements/feimage/>feImage</a></p><p><a href=/svg/elements/femerge/>feMerge</a></p><p><a href=/svg/elements/femergenode/>feMergeNode</a></p><p><a href=/svg/elements/femorphology/>feMorphology</a></p><p><a href=/svg/elements/feoffset/>feOffset</a></p><p><a href=/svg/elements/fepointlight/>fePointLight</a></p><p><a href=/svg/elements/fespecularlighting/>feSpecularLighting</a></p><p><a href=/svg/elements/fespotlight/>feSpotLight</a></p><p><a href=/svg/elements/fetile/>feTile</a></p><p><a href=/svg/elements/feturbulence/>feTurbulence</a></p><p><a href=/svg/elements/filter/>filter</a></p><p><a href=/svg/elements/foreignobject/>foreignObject</a></p><p><a href=/svg/elements/g/>g</a></p><p><a href=/svg/elements/image/>image</a></p><p><a href=/svg/elements/line/>line</a></p><p><a href=/svg/elements/lineargradient/>linearGradient</a></p><p><a href=/svg/elements/marker/>marker</a></p><p><a href=/svg/elements/mask/>mask</a></p><p><a href=/svg/elements/metadata/>metadata</a></p><p><a href=/svg/elements/mpath/>mpath</a></p><p><a href=/svg/elements/path/>path</a></p><p><a href=/svg/elements/pattern/>pattern</a></p><p><a href=/svg/elements/polygon/>polygon</a></p><p><a href=/svg/elements/polyline/>polyline</a></p><p><a href=/svg/elements/radialgradient/>radialGradient</a></p><p><a href=/svg/elements/rect/>rect</a></p><p><a href=/svg/elements/script/>script</a></p><p><a href=/svg/elements/set/>set</a></p><p><a href=/svg/elements/stop/>stop</a></p><p><a href=/svg/elements/style/>style</a></p><p><a href=/svg/elements/svg/>svg</a></p><p><a href=/svg/elements/switch/>switch</a></p><p><a href=/svg/elements/symbol/>symbol</a></p><p><a href=/svg/elements/text/>text</a></p><p><a href=/svg/elements/textpath/>textPath</a></p><p><a href=/svg/elements/title/>title</a></p><p><a href=/svg/elements/tspan/>tspan</a></p><p><a href=/svg/elements/unknown/>unknown</a></p><p><a href=/svg/elements/use/>use</a></p><p><a href=/svg/elements/view/>view</a></p></div><h2 id=values><a href=#values>Values</a></h2><div class=margin><p><a href=/svg/values/_blank/>_blank</a></p><p><a href=/svg/values/_parent/>_parent</a></p><p><a href=/svg/values/_self/>_self</a></p><p><a href=/svg/values/_top/>_top</a></p><p><a href=/svg/values/a/>A</a></p><p><a href=/svg/values/align/>align</a></p><p><a href=/svg/values/alpha-value/>alpha-value</a></p><p><a href=/svg/values/always/>always</a></p><p><a href=/svg/values/angle/>angle</a></p><p><a href=/svg/values/anonymous/>anonymous</a></p><p><a href=/svg/values/arithmetic/>arithmetic</a></p><p><a href=/svg/values/atop/>atop</a></p><p><a href=/svg/values/auto/>auto</a></p><p><a href=/svg/values/auto-start-reverse/>auto-start-reverse</a></p><p><a href=/svg/values/auto-reverse/>auto-reverse</a></p><p><a href=/svg/values/b/>B</a></p><p><a href=/svg/values/backgroundalpha/>BackgroundAlpha</a></p><p><a href=/svg/values/backgroundimage/>BackgroundImage</a></p><p><a href=/svg/values/begin-value-list/>begin-value-list</a></p><p><a href=/svg/values/blend-mode/>blend-mode</a></p><p><a href=/svg/values/bottom/>bottom</a></p><p><a href=/svg/values/center/>center</a></p><p><a href=/svg/values/clock-value/>clock-value</a></p><p><a href=/svg/values/color/>color</a></p><p><a href=/svg/values/control-point/>control-point</a></p><p><a href=/svg/values/currentcolor/>currentColor</a></p><p><a href=/svg/values/default/>default</a></p><p><a href=/svg/values/dilate/>dilate</a></p><p><a href=/svg/values/disable/>disable</a></p><p><a href=/svg/values/discrete/>discrete</a></p><p><a href=/svg/values/duplicate/>duplicate</a></p><p><a href=/svg/values/empty-string/>empty-string</a></p><p><a href=/svg/values/end-value-list/>end-value-list</a></p><p><a href=/svg/values/erode/>erode</a></p><p><a href=/svg/values/exact/>exact</a></p><p><a href=/svg/values/false/>false</a></p><p><a href=/svg/values/fillpaint/>FillPaint</a></p><p><a href=/svg/values/filter-primitive-reference/>filter-primitive-reference</a></p><p><a href=/svg/values/fractalnoise/>fractalNoise</a></p><p><a href=/svg/values/freeze/>freeze</a></p><p><a href=/svg/values/g/>G</a></p><p><a href=/svg/values/gamma/>gamma</a></p><p><a href=/svg/values/height/>height</a></p><p><a href=/svg/values/huerotate/>hueRotate</a></p><p><a href=/svg/values/icccolor/>icccolor</a></p><p><a href=/svg/values/id/>id</a></p><p><a href=/svg/values/identity/>identity</a></p><p><a href=/svg/values/in/>in</a></p><p><a href=/svg/values/indefinite/>indefinite</a></p><p><a href=/svg/values/integer/>integer</a></p><p><a href=/svg/values/left/>left</a></p><p><a href=/svg/values/length/>length</a></p><p><a href=/svg/values/length-percentage/>length-percentage</a></p><p><a href=/svg/values/lighter/>lighter</a></p><p><a href=/svg/values/linear/>linear</a></p><p><a href=/svg/values/list/>list</a></p><p><a href=/svg/values/list-of-numbers/>list-of-numbers</a></p><p><a href=/svg/values/luminancetoalpha/>luminanceToAlpha</a></p><p><a href=/svg/values/magnify/>magnify</a></p><p><a href=/svg/values/matrix/>matrix</a></p><p><a href=/svg/values/media/>media</a></p><p><a href=/svg/values/meetorslice/>meetOrSlice</a></p><p><a href=/svg/values/min-x/>min-x</a></p><p><a href=/svg/values/min-y/>min-y</a></p><p><a href=/svg/values/name/>name</a></p><p><a href=/svg/values/never/>never</a></p><p><a href=/svg/values/no-composite/>no-composite</a></p><p><a href=/svg/values/no-referrer/>no-referrer</a></p><p><a href=/svg/values/no-referrer-when-downgrade/>no-referrer-when-downgrade</a></p><p><a href=/svg/values/none/>none</a></p><p><a href=/svg/values/nostitch/>noStitch</a></p><p><a href=/svg/values/number/>number</a></p><p><a href=/svg/values/number-optional-number/>number-optional-number</a></p><p><a href=/svg/values/objectboundingbox/>objectBoundingBox</a></p><p><a href=/svg/values/origin/>origin</a></p><p><a href=/svg/values/origin-when-cross-origin/>origin-when-cross-origin</a></p><p><a href=/svg/values/out/>out</a></p><p><a href=/svg/values/over/>over</a></p><p><a href=/svg/values/paced/>paced</a></p><p><a href=/svg/values/pad/>pad</a></p><p><a href=/svg/values/path-data/>path-data</a></p><p><a href=/svg/values/percentage/>percentage</a></p><p><a href=/svg/values/points/>points</a></p><p><a href=/svg/values/r/>R</a></p><p><a href=/svg/values/reflect/>reflect</a></p><p><a href=/svg/values/remove/>remove</a></p><p><a href=/svg/values/repeat/>repeat</a></p><p><a href=/svg/values/replace/>replace</a></p><p><a href=/svg/values/right/>right</a></p><p><a href=/svg/values/rotate/>rotate</a></p><p><a href=/svg/values/same-origin/>same-origin</a></p><p><a href=/svg/values/saturate/>saturate</a></p><p><a href=/svg/values/scale/>scale</a></p><p><a href=/svg/values/script/>script</a></p><p><a href=/svg/values/set-of-comma-separated-tokens/>set-of-comma-separated-tokens</a></p><p><a href=/svg/values/set-of-space-separated-tokens/>set-of-space-separated-tokens</a></p><p><a href=/svg/values/skewx/>skewx</a></p><p><a href=/svg/values/skewy/>skewy</a></p><p><a href=/svg/values/sourcealpha/>SourceAlpha</a></p><p><a href=/svg/values/sourcegraphic/>SourceGraphic</a></p><p><a href=/svg/values/spacing/>spacing</a></p><p><a href=/svg/values/spacingandglyphs/>spacingAndGlyphs</a></p><p><a href=/svg/values/spline/>spline</a></p><p><a href=/svg/values/stitch/>stitch</a></p><p><a href=/svg/values/stretch/>stretch</a></p><p><a href=/svg/values/strict-origin/>strict-origin</a></p><p><a href=/svg/values/strict-origin-when-cross-origin/>strict-origin-when-cross-origin</a></p><p><a href=/svg/values/string/>string</a></p><p><a href=/svg/values/strokepaint/>StrokePaint</a></p><p><a href=/svg/values/strokewidth/>strokeWidth</a></p><p><a href=/svg/values/sum/>sum</a></p><p><a href=/svg/values/table/>table</a></p><p><a href=/svg/values/tokens/>tokens</a></p><p><a href=/svg/values/top/>top</a></p><p><a href=/svg/values/transform-list/>transform-list</a></p><p><a href=/svg/values/translate/>translate</a></p><p><a href=/svg/values/true/>true</a></p><p><a href=/svg/values/turbulence/>turbulence</a></p><p><a href=/svg/values/unsafe-url/>unsafe-url</a></p><p><a href=/svg/values/url/>url</a></p><p><a href=/svg/values/use-credentials/>use-credentials</a></p><p><a href=/svg/values/userspaceonuse/>userSpaceOnUse</a></p><p><a href=/svg/values/valid-integer/>valid-integer</a></p><p><a href=/svg/values/value/>value</a></p><p><a href=/svg/values/whennotactive/>whenNotActive</a></p><p><a href=/svg/values/width/>width</a></p><p><a href=/svg/values/wrap/>wrap</a></p><p><a href=/svg/values/xml-name/>XML-Name</a></p><p><a href=/svg/values/xor/>xor</a></p></div></div><div class=nav-h1><a id=nav-switch-applications>APPLICATIONS</a></div><div id=nav-content-applications><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/applications/>Overview</a></p></div><h2 id=Bible><a href=#Bible>Bible</a></h2><div class=margin><p><a href=/applications/Bible-passages/>Bible Passages</a></p><p><a href=/applications/Bible-pictures/>Bible Pictures</a></p><p><a href=/applications/Jesus-loves-the-little-children/>Jesus Loves the Little Children</a></p><p><a href=/applications/merry-Christmas/>Merry Christmas</a></p><p><a href=/applications/one-man-one-woman-one-lifetime/>One Man. One Woman. One Lifetime.</a></p><p><a href=/applications/The-Armor-of-God/>The Armor of God</a></p></div><h2 id=cards><a href=#cards>Cards</a></h2><div class=margin><p><a href=/applications/euchre/>Euchre</a></p><p><a href=/applications/sevens/>Sevens</a></p><p><a href=/applications/solitaire/>Solitaire</a></p></div><h2 id=lego><a href=#lego>LEGO</a></h2><div class=margin><p><a href=/applications/lego-cannonball-bingo/>LEGO Cannonball Bingo</a></p><p><a href=/applications/lego-pandamonium/>LEGO Pandamonium</a></p><p><a href=/applications/lego-pirate-plunder/>LEGO Pirate Plunder</a></p><p><a href=/applications/lego-the-machine/>LEGO The Machine</a></p></div><h2 id=other><a href=#other>Other</a></h2><div class=margin><p><a href=/applications/miniature-golf/>Miniature Golf</a></p><p><a href=/applications/space-station/>Space Station</a></p></div></div><div class=nav-h1><a id=nav-switch-more>MORE</a></div><div id=nav-content-more><div class=nav-h2><a href=/htaccess/>.HTACCESS</a></div><div class=nav-h2><a href=/acme.sh/>ACME.SH</a></div><div class=nav-h2><a href=/editor/>EDITOR</a></div><div class=nav-h2><a href=/favicon/>FAVICON</a></div><div class=nav-h2><a id=nav-switch-flash>FLASH</a></div><div id=nav-content-flash><div class=nav-h3><a href=/flash/detect/>DETECT</a></div><div class=nav-h3><a id=nav-switch-flash-actionscript>ACTIONSCRIPT</a></div><div id=nav-content-flash-actionscript><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/flash/actionscript/>Overview</a></p></div><h3 id=other-assets><a href=#other-assets>Assets</a></h3><div class=margin><p><a href=/flash/actionscript/embed/>Embed</a></p><p><a href=/flash/actionscript/load/>Load</a></p></div></div><div class=nav-h3><a id=nav-switch-flash-as3dmod>AS3DMOD</a></div><div id=nav-content-flash-as3dmod><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/flash/as3dmod/>Overview</a></p></div><h4 id=other-overview-modifiers><a href=#other-overview-modifiers>Modifiers</a></h4><div class=margin><p><a href=/flash/as3dmod/bend/>Bend</a></p><p><a href=/flash/as3dmod/bloat/>Bloat</a></p><p><a href=/flash/as3dmod/cloth/>Cloth</a></p><p><a href=/flash/as3dmod/noise/>Noise</a></p><p><a href=/flash/as3dmod/perlin/>Perlin</a></p><p><a href=/flash/as3dmod/pivot/>Pivot</a></p><p><a href=/flash/as3dmod/skew/>Skew</a></p><p><a href=/flash/as3dmod/taper/>Taper</a></p><p><a href=/flash/as3dmod/twist/>Twist</a></p></div><h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4><div class=margin><p><a href=/flash/as3dmod/flag/>Flag</a></p></div></div><div class=nav-h3><a href=/flash/flartoolkit/>FLARTOOLKIT</a></div><div class=nav-h3><a id=nav-switch-flash-jiglibflash>JIGLIBFLASH</a></div><div id=nav-content-flash-jiglibflash><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/flash/jiglibflash/>Overview</a></p></div><h4 id=other-overview-objects><a href=#other-overview-objects>Objects</a></h4><div class=margin><p><a href=/flash/jiglibflash/jbox/>JBox</a></p><p><a href=/flash/jiglibflash/jcapsule/>JCapsule</a></p><p><a href=/flash/jiglibflash/jplane/>JPlane</a></p><p><a href=/flash/jiglibflash/jsphere/>JSphere</a></p></div><h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4><div class=margin><p><a href=/flash/jiglibflash/physics/>Physics</a></p></div></div><div class=nav-h3><a id=nav-switch-flash-papervision3d>PAPERVISION3D</a></div><div id=nav-content-flash-papervision3d><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/flash/papervision3d/>Overview</a></p></div><h4 id=other-overview-install><a href=#other-overview-install>Install</a></h4><div class=margin><p><a href=/flash/papervision3d/install/>Install</a></p></div><h4 id=other-overview-example><a href=#other-overview-example>Example</a></h4><div class=margin><p><a href=/flash/papervision3d/1/>1</a></p><p><a href=/flash/papervision3d/2/>2</a></p><p><a href=/flash/papervision3d/3/>3</a></p><p><a href=/flash/papervision3d/4/>4</a></p><p><a href=/flash/papervision3d/5/>5</a></p></div><h4 id=other-overview-cameras><a href=#other-overview-cameras>Cameras</a></h4><div class=margin><p><a href=/flash/papervision3d/camera3d/>Camera3D</a></p><p><a href=/flash/papervision3d/debugcamera3d/>DebugCamera3D</a></p><p><a href=/flash/papervision3d/springcamera3d/>SpringCamera3D</a></p></div><h4 id=other-overview-core><a href=#other-overview-core>Core</a></h4><div class=margin><p><a href=/flash/papervision3d/lines3d/>Lines3D</a></p><p><a href=/flash/papervision3d/fogfilter/>FogFilter</a></p></div><h4 id=other-overview-light><a href=#other-overview-light>Light</a></h4><div class=margin><p><a href=/flash/papervision3d/pointlight3d/>PointLight3D</a></p></div><h4 id=other-overview-materials><a href=#other-overview-materials>Materials</a></h4><div class=margin><p><a href=/flash/papervision3d/bitmapfilematerial/>BitmapFileMaterial</a></p><p><a href=/flash/papervision3d/bitmapmaterial/>BitmapMaterial</a></p><p><a href=/flash/papervision3d/bitmapviewportmaterial/>BitmapViewportMaterial</a></p><p><a href=/flash/papervision3d/colormaterial/>ColorMaterial</a></p><p><a href=/flash/papervision3d/compositematerial/>CompositeMaterial</a></p><p><a href=/flash/papervision3d/moviematerial/>MovieMaterial</a></p><p><a href=/flash/papervision3d/wireframematerial/>WireframeMaterial</a></p></div><h4 id=other-overview-shade-materials><a href=#other-overview-shade-materials>Shade Materials</a></h4><div class=margin><p><a href=/flash/papervision3d/cellmaterial/>CellMaterial</a></p><p><a href=/flash/papervision3d/envmapmaterial/>EnvMapMaterial</a></p><p><a href=/flash/papervision3d/flatshadematerial/>FlatShadeMaterial</a></p><p><a href=/flash/papervision3d/gouraudmaterial/>GouraudMaterial</a></p><p><a href=/flash/papervision3d/phongmaterial/>PhongMaterial</a></p></div><h4 id=other-overview-special-material><a href=#other-overview-special-material>Special Material</a></h4><div class=margin><p><a href=/flash/papervision3d/particlematerial/>ParticleMaterial</a></p></div><h4 id=other-overview-parser-objects><a href=#other-overview-parser-objects>Parser Objects</a></h4><div class=margin><p><a href=/flash/papervision3d/dae/>DAE</a></p><p><a href=/flash/papervision3d/kmz/>KMZ</a></p></div><h4 id=other-overview-primitive-objects><a href=#other-overview-primitive-objects>Primitive Objects</a></h4><div class=margin><p><a href=/flash/papervision3d/arrow/>Arrow</a></p><p><a href=/flash/papervision3d/cone/>Cone</a></p><p><a href=/flash/papervision3d/cube/>Cube</a></p><p><a href=/flash/papervision3d/cylinder/>Cylinder</a></p><p><a href=/flash/papervision3d/paperplane/>PaperPlane</a></p><p><a href=/flash/papervision3d/plane/>Plane</a></p><p><a href=/flash/papervision3d/sphere/>Sphere</a></p></div><h4 id=other-overview-special-objects><a href=#other-overview-special-objects>Special Objects</a></h4><div class=margin><p><a href=/flash/papervision3d/particlefield/>ParticleField</a></p><p><a href=/flash/papervision3d/ucs/>UCS</a></p></div><h4 id=other-overview-render><a href=#other-overview-render>Render</a></h4><div class=margin><p><a href=/flash/papervision3d/basicrenderengine/>BasicRenderEngine</a></p><p><a href=/flash/papervision3d/lazyrenderengine/>LazyRenderEngine</a></p><p><a href=/flash/papervision3d/quadrantrenderengine/>QuadrantRenderEngine</a></p></div><h4 id=other-overview-scene><a href=#other-overview-scene>Scene</a></h4><div class=margin><p><a href=/flash/papervision3d/scene3d/>Scene3D</a></p></div><h4 id=other-overview-typography><a href=#other-overview-typography>Typography</a></h4><div class=margin><p><a href=/flash/papervision3d/text3d/>Text3D</a></p></div><h4 id=other-overview-views><a href=#other-overview-views>Views</a></h4><div class=margin><p><a href=/flash/papervision3d/basicview/>BasicView</a></p><p><a href=/flash/papervision3d/reflectionview/>ReflectionView</a></p><p><a href=/flash/papervision3d/statsview/>StatsView</a></p><p><a href=/flash/papervision3d/viewport3d/>Viewport3D</a></p></div><h4 id=other-overview-view-layers><a href=#other-overview-view-layers>View Layers</a></h4><div class=margin><p><a href=/flash/papervision3d/bitmapeffectlayer/>BitmapEffectLayer</a></p><p><a href=/flash/papervision3d/viewportlayer/>ViewportLayer</a></p></div><h4 id=other-overview-other><a href=#other-overview-other>Other</a></h4><div class=margin><p><a href=/flash/papervision3d/anaglyph/>Anaglyph</a></p><p><a href=/flash/papervision3d/camera-move/>Camera Move</a></p><p><a href=/flash/papervision3d/camera-rotate/>Camera Rotate</a></p><p><a href=/flash/papervision3d/camera-target-move/>Camera Target Move</a></p><p><a href=/flash/papervision3d/object-move/>Object Move</a></p><p><a href=/flash/papervision3d/object-rotate/>Object Rotate</a></p><p><a href=/flash/papervision3d/object-scale/>Object Scale</a></p><p><a href=/flash/papervision3d/panorama/>Panorama</a></p></div></div></div><div class=nav-h2><a id=nav-switch-sketchup>SKETCHUP</a></div><div id=nav-content-sketchup><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/sketchup/>Overview</a></p></div><h3 id=other-plugins><a href=#other-plugins>Plugins</a></h3><div class=margin><p><a href=/sketchup/papervision3d/>Papervision3D</a></p><p><a href=/sketchup/triangulate/>Triangulate</a></p></div></div><div class=nav-h2><a id=nav-switch-unity>UNITY</a></div><div id=nav-content-unity><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/unity/>Overview</a></p></div><h3 id=other-detect><a href=#other-detect>Detect</a></h3><div class=margin><p><a href=/unity/detect/>Detect</a></p></div><h3 id=other-games><a href=#other-games>Games</a></h3><div class=margin><p><a href=/unity/air-hockey/>Air Hockey</a></p><p><a href=/unity/foosball/>Foosball</a></p><p><a href=/unity/pool/>Pool</a></p></div><h3 id=other-unity><a href=#other-unity>Unity</a></h3><div class=margin><p><a href=/unity/car/>Car</a></p><p><a href=/unity/lerpz-escapes/>Lerpz Escapes</a></p><p><a href=/unity/mecanim/>Mecanim</a></p></div></div><div class=nav-h2><a id=nav-switch-xcode>XCODE</a></div><div id=nav-content-xcode><h3 id=other-overview><a href=#other-overview>Overview</a></h3><div class=margin><p><a href=/xcode/>Overview</a></p></div><h3 id=other-example><a href=#other-example>Example</a></h3><div class=margin><p><a href=/xcode/1/>1</a></p><p><a href=/xcode/2/>2</a></p><p><a href=/xcode/3/>3</a></p><p><a href=/xcode/4/>4</a></p><p><a href=/xcode/5/>5</a></p><p><a href=/xcode/6/>6</a></p></div><h3 id=other-csv2plist><a href=#other-csv2plist>CSV2Plist</a></h3><div class=margin><p><a href=/xcode/csv2plist/>CSV2Plist</a></p></div><h3 id=other-ui><a href=#other-ui>UI</a></h3><div class=margin><p><a href=/xcode/uiactivityindicatorview/>UIActivityIndicatorView</a></p><p><a href=/xcode/uibutton/>UIButton</a></p><p><a href=/xcode/uiimageview/>UIImageView</a></p><p><a href=/xcode/uilabel/>UILabel</a></p><p><a href=/xcode/uipagecontrol/>UIPageControl</a></p><p><a href=/xcode/uiprogressview/>UIProgressView</a></p><p><a href=/xcode/uisegmentedcontrol/>UISegmentedControl</a></p><p><a href=/xcode/uislider/>UISlider</a></p><p><a href=/xcode/uistepper/>UIStepper</a></p><p><a href=/xcode/uiswitch/>UISwitch</a></p><p><a href=/xcode/uitextfield/>UITextField</a></p></div></div></div></div></div><div id=foreground><div id=foreground-header><a href=/><img alt=Home id=foreground-header-home src=/assets/svg/Home.svg title=Home></a><img alt=Menu id=foreground-header-menu src=/assets/svg/Menu.svg title=Menu><form action=/search/><input id=foreground-header-search name=search-site title=Search type=search></form></div><div id=foreground-footer><a href=#><img alt=Top id=foreground-footer-top src=/assets/svg/Top.svg title=Top></a></div></div></body></html> 0
5 · flags · STREAM_CLIENT_CONNECT
<? $transport = "tls"; $host = "osbo.com"; $port = "443"; $remote_socket = $transport . "://" . $host . ":" . $port; $timeout = ini_get("default_socket_timeout"); $flags = STREAM_CLIENT_CONNECT; $return = stream_socket_client($remote_socket, $errno, $errstr, $timeout, $flags); if (!$return) { exit("$errstr ($errno)"); } $string = "GET / HTTP/1.1\r\n"; $string .= "Host: $host\r\n"; $string .= "Connection: close\r\n\r\n"; fwrite($return, $string); $length = 1024; while (!feof($return)) { echo fgets($return, $length); } fclose($return); ?>
HTTP/1.1 200 OK Connection: close cache-control: no-cache,no-store,no-transform x-robots-tag: noarchive,noimageindex content-type: text/html; charset=UTF-8 transfer-encoding: chunked date: Thu, 21 Sep 2023 21:11:20 GMT server: LiteSpeed strict-transport-security: max-age=31536000; includeSubDomains; preload x-content-type-options: nosniff 10000 <!doctype html><html lang=en><head><meta charset=utf-8><meta content=osbo.com name=description><meta content=width=device-width name=viewport><title>osbo.com</title><link href=/assets/svg/ rel=icon><link href=/assets/css/ rel=stylesheet><script src=/assets/js/></script></head><body><div id=background><video id=background-video loop muted src=/assets/mp4/21.mp4></video></div><div id=ground><div id=ground-container><header><h1>osbo.com</h1></header><main><h2 id=html><a href=#html>HTML</a></h2><div class="editor1 margin"><form id=form1><textarea id=textarea1 spellcheck=false title=Edit><!doctype html> <html> <head> <title>HTML</title> </head> <body> <a href="/html/">HTML</a> </body> </html></textarea><input id=input11 title=Reset type=button value=↻><input id=input21 title=Editor type=button value=→></form><iframe id=iframe1 title=Editor></iframe></div><h2 id=css><a href=#css>CSS</a></h2><div class="editor1 margin"><form id=form2><textarea id=textarea2 spellcheck=false title=Edit><!doctype html> <html> <head> <title>CSS</title> <style> a, html { background-color: rgb(255 0 0 / 0.1); color: red; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/css/">CSS</a> </body> </html></textarea><input id=input12 title=Reset type=button value=↻><input id=input22 title=Editor type=button value=→></form><iframe id=iframe2 title=Editor></iframe></div><h2 id=js><a href=#js>JS</a></h2><div class="editor1 margin"><form id=form3><textarea id=textarea3 spellcheck=false title=Edit><!doctype html> <html> <head> <title>JS</title> <style> a, html { background-color: rgb(0 255 0 / 0.1); color: green; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/js/">JS</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html></textarea><input id=input13 title=Reset type=button value=↻><input id=input23 title=Editor type=button value=→></form><iframe id=iframe3 title=Editor></iframe></div><h2 id=php><a href=#php>PHP</a></h2><div class="editor3 margin"><pre><? echo '<!doctype html> <html> <head> <title>PHP</title> <style> a, html { background-color: rgb(255 0 255 / 0.1); color: purple; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html>'; ?></pre><pre><!doctype html> <html> <head> <title>PHP</title> <style> a, html { background-color: rgb(255 0 255 / 0.1); color: purple; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html></pre><iframe srcdoc="<!doctype html> <html> <head> <title>PHP</title> <style> a, html { background-color: rgb(255 0 255 / 0.1); color: purple; transition-duration: 1s; } a:hover { background-color: rgb(0 0 0 / 0.1); color: black; } </style> </head> <body> <a href="/php/">PHP</a> <script> function myfunction() { const mystyle = myelement.style; mystyle.position = "absolute"; mystyle.left = `${Math.random() * (window.innerWidth - myelement.offsetWidth)}px`; mystyle.top = `${Math.random() * (window.innerHeight - myelement.offsetHeight)}px`; } const myelement = document.querySelector("a"); myelement.addEventListener("mouseout", myfunction); </script> </body> </html>" title=Editor></iframe></div><h2 id=svg><a href=#svg>SVG</a></h2><div class="editor1 margin"><form id=form4><textarea id=textarea4 spellcheck=false title=Edit><svg xmlns="http://www.w3.org/2000/svg"> <style> circle, rect, text { fill: yellow; transition-duration: 1s; } a:hover :is(circle, text) { fill: black; } </style> <rect height="100%" opacity="0.1" width="100%"/> <a href="/svg/"> <circle cx="50%" cy="50%" opacity="0.1" r="50vh"/> <text dominant-baseline="middle" text-anchor="middle" x="50%" y="50%">SVG</text> </a> </svg></textarea><input id=input14 title=Reset type=button value=↻><input id=input24 title=Editor type=button value=→></form><iframe id=iframe4 title=Editor></iframe></div></main><footer><div class=boilerplate><a href=/Jesus/>Jesus</a> · <a href=/Bible/>Bible</a></div><div class=boilerplate><a href=/html/>HTML</a> · <a href=/css/>CSS</a> · <a href=/js/>JS</a> · <a href=/php/>PHP</a> · <a href=/svg/>SVG</a></div><div class=boilerplate><a href=/applications/>Applications</a> · <a href=/more/>More</a></div><div class=boilerplate><a href=/about/>About</a> · <a href=/terms/>Terms</a></div><p id=copyright>© 2023 Osbo Design</p></footer></div><div id=ground-nav><div class=nav-h1><a href=/Jesus/>JESUS</a></div><div class=nav-h1><a id=nav-switch-Bible>BIBLE</a></div><div id=nav-content-Bible><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/Bible/>Overview</a></p></div><h2 id=search><a href=#search>Search</a></h2><div class=margin><p><a href=/Bible/search/>Search</a></p></div><h2 id=download><a href=#download>Download</a></h2><div class=margin><p><a href=/Bible/download/>Download</a></p></div><h2 id=العربية><a href=#العربية>العربية</a></h2><div class=margin><p><a href=/Bible/asvd/>ASVD الكتاب المقدس ترجمة فانديك وسميث</a></p></div><h2 id=česky><a href=#česky>česky</a></h2><div class=margin><p><a href=/Bible/csbkr/>CSBKR Bible Kralická 1613</a></p></div><h2 id=dansk><a href=#dansk>Dansk</a></h2><div class=margin><p><a href=/Bible/da1871/>DA1871 Danske Bibel 1871</a></p></div><h2 id=deutsch><a href=#deutsch>Deutsch</a></h2><div class=margin><p><a href=/Bible/delut/>DELUT Luther Bible 1912</a></p><p><a href=/Bible/elb/>ELB Elberfelder 1905</a></p><p><a href=/Bible/elb71/>ELB71 Elberfelder 1871</a></p></div><h2 id=english><a href=#english>English</a></h2><div class=margin><p><a href=/Bible/asv/>ASV American Standard Version</a></p><p><a href=/Bible/kjv/>KJV King James Version</a></p><p><a href=/Bible/web/>WEB World English Bible</a></p></div><h2 id=español><a href=#español>Español</a></h2><div class=margin><p><a href=/Bible/rves/>RVES Reina-Valera Antigua</a></p></div><h2 id=suomi><a href=#suomi>Suomi</a></h2><div class=margin><p><a href=/Bible/fi1776/>FI1776 Finnish 1776</a></p><p><a href=/Bible/finpr/>FINPR Finnish 1938</a></p></div><h2 id=français><a href=#français>Français</a></h2><div class=margin><p><a href=/Bible/fmar/>FMAR Martin 1744</a></p><p><a href=/Bible/frdby/>FRDBY Bible Darby en français</a></p><p><a href=/Bible/lsg/>LSG Louis Segond 1910</a></p><p><a href=/Bible/ost/>OST Ostervald</a></p></div><h2 id=magyar><a href=#magyar>Magyar</a></h2><div class=margin><p><a href=/Bible/kar/>KAR Károli 1590</a></p></div><h2 id=bahasa-indonesia><a href=#bahasa-indonesia>Bahasa Indonesia</a></h2><div class=margin><p><a href=/Bible/idbar/>IDBAR Terjemahan Baru</a></p></div><h2 id=italiano><a href=#italiano>Italiano</a></h2><div class=margin><p><a href=/Bible/igd/>IGD Giovanni Diodati Bibbia</a></p><p><a href=/Bible/itriv/>ITRIV Italian Riveduta 1927</a></p></div><h2 id=日本語><a href=#日本語>日本語</a></h2><div class=margin><p><a href=/Bible/ja1955/>JA1955 Colloquial Japanese (1955)</a></p></div><h2 id=malagasy><a href=#malagasy>Malagasy</a></h2><div class=margin><p><a href=/Bible/mg1865/>MG1865 Malagasy Bible</a></p></div><h2 id=te-reo-māori><a href=#te-reo-māori>te reo Māori</a></h2><div class=margin><p><a href=/Bible/maor/>MAOR Maori Bible</a></p></div><h2 id=한국어><a href=#한국어>한국어</a></h2><div class=margin><p><a href=/Bible/korvb/>KORVB 개역한글</a></p></div><h2 id=nederlands><a href=#nederlands>Nederlands</a></h2><div class=margin><p><a href=/Bible/sv1750/>SV1750 Statenvertaling</a></p></div><h2 id=norsk><a href=#norsk>Norsk</a></h2><div class=margin><p><a href=/Bible/norsk/>NORSK Det Norsk Bibelselskap 1930</a></p></div><h2 id=polski><a href=#polski>Polski</a></h2><div class=margin><p><a href=/Bible/pbg/>PBG Biblia Gdańska</a></p></div><h2 id=português><a href=#português>Português</a></h2><div class=margin><p><a href=/Bible/aa/>AA Almeida Atualizada</a></p></div><h2 id=română><a href=#română>Română</a></h2><div class=margin><p><a href=/Bible/rmnn/>RMNN Romanian Cornilescu 1928</a></p><p><a href=/Bible/vdc/>VDC Versiunea Dumitru Cornilescu</a></p><p><a href=/Bible/vdcc/>VDCC Versiunea Dumitru Cornilescu Corectată</a></p></div><h2 id=pyccкий><a href=#pyccкий>Pyccкий</a></h2><div class=margin><p><a href=/Bible/rursv/>RURSV Синодальный перевод</a></p></div><h2 id=shqip><a href=#shqip>Shqip</a></h2><div class=margin><p><a href=/Bible/albb/>ALBB Albanian Bible</a></p></div><h2 id=svenska><a href=#svenska>Svenska</a></h2><div class=margin><p><a href=/Bible/sk73/>SK73 Karl XII 1873</a></p><p><a href=/Bible/sven/>SVEN Svenska 1917</a></p></div><h2 id=wikang-tagalog><a href=#wikang-tagalog>Wikang Tagalog</a></h2><div class=margin><p><a href=/Bible/tlab/>TLAB Ang Biblia</a></p></div><h2 id=українська><a href=#українська>українська</a></h2><div class=margin><p><a href=/Bible/ubio/>UBIO Біблія в пер. Івана Огієнка, 1962</a></p><p><a href=/Bible/ukrk/>UKRK Біблія в пер. П.Куліша та І.Пулюя, 1905</a></p></div><h2 id=tiếng-việt><a href=#tiếng-việt>Tiếng Việt</a></h2><div class=margin><p><a href=/Bible/vi1934/>VI1934 1934 Vietnamese Bible</a></p></div><h2 id=简体中文><a href=#简体中文>简体中文</a></h2><div class=margin><p><a href=/Bible/cuvs/>CUVS 简体和合本</a></p></div><h2 id=繁體中文><a href=#繁體中文>繁體中文</a></h2><div class=margin><p><a href=/Bible/cuv/>CUV 和合本</a></p></div></div><div class=nav-h1><a id=nav-switch-html>HTML</a></div><div id=nav-content-html><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/html/>Overview</a></p></div><h2 id=attributes><a href=#attributes>Attributes</a></h2><div class=margin><p><a href=/html/attributes/abbr/>abbr</a></p><p><a href=/html/attributes/accept/>accept</a></p><p><a href=/html/attributes/accept-charset/>accept-charset</a></p><p><a href=/html/attributes/accesskey/>accesskey</a></p><p><a href=/html/attributes/action/>action</a></p><p><a href=/html/attributes/alt/>alt</a></p><p><a href=/html/attributes/as/>as</a></p><p><a href=/html/attributes/async/>async</a></p><p><a href=/html/attributes/autocapitalize/>autocapitalize</a></p><p><a href=/html/attributes/autocomplete/>autocomplete</a></p><p><a href=/html/attributes/autofocus/>autofocus</a></p><p><a href=/html/attributes/autoplay/>autoplay</a></p><p><a href=/html/attributes/blocking/>blocking</a></p><p><a href=/html/attributes/charset/>charset</a></p><p><a href=/html/attributes/checked/>checked</a></p><p><a href=/html/attributes/cite/>cite</a></p><p><a href=/html/attributes/class/>class</a></p><p><a href=/html/attributes/color/>color</a></p><p><a href=/html/attributes/cols/>cols</a></p><p><a href=/html/attributes/colspan/>colspan</a></p><p><a href=/html/attributes/contenteditable/>contenteditable</a></p><p><a href=/html/attributes/controls/>controls</a></p><p><a href=/html/attributes/coords/>coords</a></p><p><a href=/html/attributes/crossorigin/>crossorigin</a></p><p><a href=/html/attributes/data/>data</a></p><p><a href=/html/attributes/datetime/>datetime</a></p><p><a href=/html/attributes/decoding/>decoding</a></p><p><a href=/html/attributes/default/>default</a></p><p><a href=/html/attributes/defer/>defer</a></p><p><a href=/html/attributes/dir/>dir</a></p><p><a href=/html/attributes/dirname/>dirname</a></p><p><a href=/html/attributes/disabled/>disabled</a></p><p><a href=/html/attributes/download/>download</a></p><p><a href=/html/attributes/draggable/>draggable</a></p><p><a href=/html/attributes/enctype/>enctype</a></p><p><a href=/html/attributes/enterkeyhint/>enterkeyhint</a></p><p><a href=/html/attributes/exportparts/>exportparts</a></p><p><a href=/html/attributes/fetchpriority/>fetchpriority</a></p><p><a href=/html/attributes/for/>for</a></p><p><a href=/html/attributes/form/>form</a></p><p><a href=/html/attributes/formaction/>formaction</a></p><p><a href=/html/attributes/formenctype/>formenctype</a></p><p><a href=/html/attributes/formmethod/>formmethod</a></p><p><a href=/html/attributes/formnovalidate/>formnovalidate</a></p><p><a href=/html/attributes/formtarget/>formtarget</a></p><p><a href=/html/attributes/headers/>headers</a></p><p><a href=/html/attributes/height/>height</a></p><p><a href=/html/attributes/hidden/>hidden</a></p><p><a href=/html/attributes/high/>high</a></p><p><a href=/html/attributes/href/>href</a></p><p><a href=/html/attributes/hreflang/>hreflang</a></p><p><a href=/html/attributes/http-equiv/>http-equiv</a></p><p><a href=/html/attributes/id/>id</a></p><p><a href=/html/attributes/imagesizes/>imagesizes</a></p><p><a href=/html/attributes/imagesrcset/>imagesrcset</a></p><p><a href=/html/attributes/inert/>inert</a></p><p><a href=/html/attributes/inputmode/>inputmode</a></p><p><a href=/html/attributes/integrity/>integrity</a></p><p><a href=/html/attributes/is/>is</a></p><p><a href=/html/attributes/ismap/>ismap</a></p><p><a href=/html/attributes/itemid/>itemid</a></p><p><a href=/html/attributes/itemprop/>itemprop</a></p><p><a href=/html/attributes/itemref/>itemref</a></p><p><a href=/html/attributes/itemscope/>itemscope</a></p><p><a href=/html/attributes/itemtype/>itemtype</a></p><p><a href=/html/attributes/kind/>kind</a></p><p><a href=/html/attributes/label/>label</a></p><p><a href=/html/attributes/lang/>lang</a></p><p><a href=/html/attributes/list/>list</a></p><p><a href=/html/attributes/loading/>loading</a></p><p><a href=/html/attributes/loop/>loop</a></p><p><a href=/html/attributes/low/>low</a></p><p><a href=/html/attributes/max/>max</a></p><p><a href=/html/attributes/maxlength/>maxlength</a></p><p><a href=/html/attributes/media/>media</a></p><p><a href=/html/attributes/method/>method</a></p><p><a href=/html/attributes/min/>min</a></p><p><a href=/html/attributes/minlength/>minlength</a></p><p><a href=/html/attributes/multiple/>multiple</a></p><p><a href=/html/attributes/muted/>muted</a></p><p><a href=/html/attributes/name/>name</a></p><p><a href=/html/attributes/nomodule/>nomodule</a></p><p><a href=/html/attributes/nonce/>nonce</a></p><p><a href=/html/attributes/novalidate/>novalidate</a></p><p><a href=/html/attributes/onabort/>onabort</a></p><p><a href=/html/attributes/onafterprint/>onafterprint</a></p><p><a href=/html/attributes/onauxclick/>onauxclick</a></p><p><a href=/html/attributes/onbeforeinput/>onbeforeinput</a></p><p><a href=/html/attributes/onbeforeprint/>onbeforeprint</a></p><p><a href=/html/attributes/onbeforetoggle/>onbeforetoggle</a></p><p><a href=/html/attributes/onbeforeunload/>onbeforeunload</a></p><p><a href=/html/attributes/onblur/>onblur</a></p><p><a href=/html/attributes/oncancel/>oncancel</a></p><p><a href=/html/attributes/oncanplay/>oncanplay</a></p><p><a href=/html/attributes/oncanplaythrough/>oncanplaythrough</a></p><p><a href=/html/attributes/onchange/>onchange</a></p><p><a href=/html/attributes/onclick/>onclick</a></p><p><a href=/html/attributes/oncontextlost/>oncontextlost</a></p><p><a href=/html/attributes/oncontextmenu/>oncontextmenu</a></p><p><a href=/html/attributes/oncontextrestored/>oncontextrestored</a></p><p><a href=/html/attributes/oncopy/>oncopy</a></p><p><a href=/html/attributes/oncut/>oncut</a></p><p><a href=/html/attributes/ondblclick/>ondblclick</a></p><p><a href=/html/attributes/ondrag/>ondrag</a></p><p><a href=/html/attributes/ondragend/>ondragend</a></p><p><a href=/html/attributes/ondragenter/>ondragenter</a></p><p><a href=/html/attributes/ondragleave/>ondragleave</a></p><p><a href=/html/attributes/ondragover/>ondragover</a></p><p><a href=/html/attributes/ondragstart/>ondragstart</a></p><p><a href=/html/attributes/ondrop/>ondrop</a></p><p><a href=/html/attributes/ondurationchange/>ondurationchange</a></p><p><a href=/html/attributes/onended/>onended</a></p><p><a href=/html/attributes/onfocus/>onfocus</a></p><p><a href=/html/attributes/onformdata/>onformdata</a></p><p><a href=/html/attributes/onhashchange/>onhashchange</a></p><p><a href=/html/attributes/oninput/>oninput</a></p><p><a href=/html/attributes/oninvalid/>oninvalid</a></p><p><a href=/html/attributes/onkeydown/>onkeydown</a></p><p><a href=/html/attributes/onkeypress/>onkeypress</a></p><p><a href=/html/attributes/onkeyup/>onkeyup</a></p><p><a href=/html/attributes/onlanguagechange/>onlanguagechange</a></p><p><a href=/html/attributes/onload/>onload</a></p><p><a href=/html/attributes/onloadeddata/>onloadeddata</a></p><p><a href=/html/attributes/onloadedmetadata/>onloadedmetadata</a></p><p><a href=/html/attributes/onloadstart/>onloadstart</a></p><p><a href=/html/attributes/onmousedown/>onmousedown</a></p><p><a href=/html/attributes/onmouseenter/>onmouseenter</a></p><p><a href=/html/attributes/onmouseleave/>onmouseleave</a></p><p><a href=/html/attributes/onmousemove/>onmousemove</a></p><p><a href=/html/attributes/onmouseout/>onmouseout</a></p><p><a href=/html/attributes/onmouseover/>onmouseover</a></p><p><a href=/html/attributes/onmouseup/>onmouseup</a></p><p><a href=/html/attributes/onmousewheel/>onmousewheel</a></p><p><a href=/html/attributes/onoffline/>onoffline</a></p><p><a href=/html/attributes/ononline/>ononline</a></p><p><a href=/html/attributes/onpagehide/>onpagehide</a></p><p><a href=/html/attributes/onpageshow/>onpageshow</a></p><p><a href=/html/attributes/onpaste/>onpaste</a></p><p><a href=/html/attributes/onpause/>onpause</a></p><p><a href=/html/attributes/onplay/>onplay</a></p><p><a href=/html/attributes/onplaying/>onplaying</a></p><p><a href=/html/attributes/onprogress/>onprogress</a></p><p><a href=/html/attributes/onratechange/>onratechange</a></p><p><a href=/html/attributes/onreset/>onreset</a></p><p><a href=/html/attributes/onresize/>onresize</a></p><p><a href=/html/attributes/onscroll/>onscroll</a></p><p><a href=/html/attributes/onscrollend/>onscrollend</a></p><p><a href=/html/attributes/onsearch/>onsearch</a></p><p><a href=/html/attributes/onseeked/>onseeked</a></p><p><a href=/html/attributes/onseeking/>onseeking</a></p><p><a href=/html/attributes/onselect/>onselect</a></p><p><a href=/html/attributes/onstorage/>onstorage</a></p><p><a href=/html/attributes/onsubmit/>onsubmit</a></p><p><a href=/html/attributes/onsuspend/>onsuspend</a></p><p><a href=/html/attributes/ontimeupdate/>ontimeupdate</a></p><p><a href=/html/attributes/ontoggle/>ontoggle</a></p><p><a href=/html/attributes/onunload/>onunload</a></p><p><a href=/html/attributes/onvolumechange/>onvolumechange</a></p><p><a href=/html/attributes/onwaiting/>onwaiting</a></p><p><a href=/html/attributes/onwheel/>onwheel</a></p><p><a href=/html/attributes/open/>open</a></p><p><a href=/html/attributes/optimum/>optimum</a></p><p><a href=/html/attributes/part/>part</a></p><p><a href=/html/attributes/pattern/>pattern</a></p><p><a href=/html/attributes/ping/>ping</a></p><p><a href=/html/attributes/placeholder/>placeholder</a></p><p><a href=/html/attributes/playsinline/>playsinline</a></p><p><a href=/html/attributes/popover/>popover</a></p><p><a href=/html/attributes/popovertarget/>popovertarget</a></p><p><a href=/html/attributes/popovertargetaction/>popovertargetaction</a></p><p><a href=/html/attributes/poster/>poster</a></p><p><a href=/html/attributes/preload/>preload</a></p><p><a href=/html/attributes/readonly/>readonly</a></p><p><a href=/html/attributes/referrerpolicy/>referrerpolicy</a></p><p><a href=/html/attributes/rel/>rel</a></p><p><a href=/html/attributes/required/>required</a></p><p><a href=/html/attributes/reversed/>reversed</a></p><p><a href=/html/attributes/rows/>rows</a></p><p><a href=/html/attributes/rowspan/>rowspan</a></p><p><a href=/html/attributes/sandbox/>sandbox</a></p><p><a href=/html/attributes/scope/>scope</a></p><p><a href=/html/attributes/selected/>selected</a></p><p><a href=/html/attributes/shape/>shape</a></p><p><a href=/html/attributes/size/>size</a></p><p><a href=/html/attributes/sizes/>sizes</a></p><p><a href=/html/attributes/slot/>slot</a></p><p><a href=/html/attributes/span/>span</a></p><p><a href=/html/attributes/spellcheck/>spellcheck</a></p><p><a href=/html/attributes/src/>src</a></p><p><a href=/html/attributes/srcdoc/>srcdoc</a></p><p><a href=/html/attributes/srclang/>srclang</a></p><p><a href=/html/attributes/srcset/>srcset</a></p><p><a href=/html/attributes/start/>start</a></p><p><a href=/html/attributes/step/>step</a></p><p><a href=/html/attributes/style/>style</a></p><p><a href=/html/attributes/tabindex/>tabindex</a></p><p><a href=/html/attributes/target/>target</a></p><p><a href=/html/attributes/title/>title</a></p><p><a href=/html/attributes/translate/>translate</a></p><p><a href=/html/attributes/type/>type</a></p><p><a href=/html/attributes/usemap/>usemap</a></p><p><a href=/html/attributes/value/>value</a></p><p><a href=/html/attributes/width/>width</a></p><p><a href=/html/attributes/wrap/>wrap</a></p></div><h2 id=elements><a href=#elements>Elements</a></h2><div class=margin><p><a href=/html/elements/!doctype/>!doctype</a></p><p><a href=/html/elements/a/>a</a></p><p><a href=/html/elements/abbr/>abbr</a></p><p><a href=/html/elements/address/>address</a></p><p><a href=/html/elements/area/>area</a></p><p><a href=/html/elements/article/>article</a></p><p><a href=/html/elements/aside/>aside</a></p><p><a href=/html/elements/audio/>audio</a></p><p><a href=/html/elements/b/>b</a></p><p><a href=/html/elements/base/>base</a></p><p><a href=/html/elements/bdi/>bdi</a></p><p><a href=/html/elements/bdo/>bdo</a></p><p><a href=/html/elements/blockquote/>blockquote</a></p><p><a href=/html/elements/body/>body</a></p><p><a href=/html/elements/br/>br</a></p><p><a href=/html/elements/button/>button</a></p><p><a href=/html/elements/canvas/>canvas</a></p><p><a href=/html/elements/caption/>caption</a></p><p><a href=/html/elements/cite/>cite</a></p><p><a href=/html/elements/code/>code</a></p><p><a href=/html/elements/col/>col</a></p><p><a href=/html/elements/colgroup/>colgroup</a></p><p><a href=/html/elements/data/>data</a></p><p><a href=/html/elements/datalist/>datalist</a></p><p><a href=/html/elements/dd/>dd</a></p><p><a href=/html/elements/del/>del</a></p><p><a href=/html/elements/details/>details</a></p><p><a href=/html/elements/dfn/>dfn</a></p><p><a href=/html/elements/dialog/>dialog</a></p><p><a href=/html/elements/div/>div</a></p><p><a href=/html/elements/dl/>dl</a></p><p><a href=/html/elements/dt/>dt</a></p><p><a href=/html/elements/em/>em</a></p><p><a href=/html/elements/embed/>embed</a></p><p><a href=/html/elements/fieldset/>fieldset</a></p><p><a href=/html/elements/figcaption/>figcaption</a></p><p><a href=/html/elements/figure/>figure</a></p><p><a href=/html/elements/footer/>footer</a></p><p><a href=/html/elements/form/>form</a></p><p><a href=/html/elements/h1/>h1</a></p><p><a href=/html/elements/h2/>h2</a></p><p><a href=/html/elements/h3/>h3</a></p><p><a href=/html/elements/h4/>h4</a></p><p><a href=/html/elements/h5/>h5</a></p><p><a href=/html/elements/h6/>h6</a></p><p><a href=/html/elements/head/>head</a></p><p><a href=/html/elements/header/>header</a></p><p><a href=/html/elements/hgroup/>hgroup</a></p><p><a href=/html/elements/hr/>hr</a></p><p><a href=/html/elements/html/>html</a></p><p><a href=/html/elements/i/>i</a></p><p><a href=/html/elements/iframe/>iframe</a></p><p><a href=/html/elements/img/>img</a></p><p><a href=/html/elements/input/>input</a></p><p><a href=/html/elements/ins/>ins</a></p><p><a href=/html/elements/kbd/>kbd</a></p><p><a href=/html/elements/label/>label</a></p><p><a href=/html/elements/legend/>legend</a></p><p><a href=/html/elements/li/>li</a></p><p><a href=/html/elements/link/>link</a></p><p><a href=/html/elements/main/>main</a></p><p><a href=/html/elements/map/>map</a></p><p><a href=/html/elements/mark/>mark</a></p><p><a href=/html/elements/menu/>menu</a></p><p><a href=/html/elements/meta/>meta</a></p><p><a href=/html/elements/meter/>meter</a></p><p><a href=/html/elements/nav/>nav</a></p><p><a href=/html/elements/noscript/>noscript</a></p><p><a href=/html/elements/object/>object</a></p><p><a href=/html/elements/ol/>ol</a></p><p><a href=/html/elements/optgroup/>optgroup</a></p><p><a href=/html/elements/option/>option</a></p><p><a href=/html/elements/output/>output</a></p><p><a href=/html/elements/p/>p</a></p><p><a href=/html/elements/param/>param</a></p><p><a href=/html/elements/picture/>picture</a></p><p><a href=/html/elements/pre/>pre</a></p><p><a href=/html/elements/progress/>progress</a></p><p><a href=/html/elements/q/>q</a></p><p><a href=/html/elements/rb/>rb</a></p><p><a href=/html/elements/rp/>rp</a></p><p><a href=/html/elements/rt/>rt</a></p><p><a href=/html/elements/rtc/>rtc</a></p><p><a href=/html/elements/ruby/>ruby</a></p><p><a href=/html/elements/s/>s</a></p><p><a href=/html/elements/samp/>samp</a></p><p><a href=/html/elements/script/>script</a></p><p><a href=/html/elements/search/>search</a></p><p><a href=/html/elements/section/>section</a></p><p><a href=/html/elements/select/>select</a></p><p><a href=/html/elements/slot/>slot</a></p><p><a href=/html/elements/small/>small</a></p><p><a href=/html/elements/source/>source</a></p><p><a href=/html/elements/span/>span</a></p><p><a href=/html/elements/strong/>strong</a></p><p><a href=/html/elements/style/>style</a></p><p><a href=/html/elements/sub/>sub</a></p><p><a href=/html/elements/summary/>summary</a></p><p><a href=/html/elements/sup/>sup</a></p><p><a href=/html/elements/table/>table</a></p><p><a href=/html/elements/tbody/>tbody</a></p><p><a href=/html/elements/td/>td</a></p><p><a href=/html/elements/template/>template</a></p><p><a href=/html/elements/textarea/>textarea</a></p><p><a href=/html/elements/tfoot/>tfoot</a></p><p><a href=/html/elements/th/>th</a></p><p><a href=/html/elements/thead/>thead</a></p><p><a href=/html/elements/time/>time</a></p><p><a href=/html/elements/title/>title</a></p><p><a href=/html/elements/tr/>tr</a></p><p><a href=/html/elements/track/>track</a></p><p><a href=/html/elements/u/>u</a></p><p><a href=/html/elements/ul/>ul</a></p><p><a href=/html/elements/var/>var</a></p><p><a href=/html/elements/video/>video</a></p><p><a href=/html/elements/wbr/>wbr</a></p></div><h2 id=other><a href=#other>Other</a></h2><div class=margin><p><a href=/html/characters/>Characters</a></p><p><a href=/html/comments/>Comments</a></p><p><a href=/html/datatypes/>Datatypes</a></p></div></div><div class=nav-h1><a id=nav-switch-css>CSS</a></div><div id=nav-content-css><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/css/>Overview</a></p></div><h2 id=functions><a href=#functions>Functions</a></h2><div class=margin><p><a href=/css/functions/abs/>abs</a></p><p><a href=/css/functions/acos/>acos</a></p><p><a href=/css/functions/asin/>asin</a></p><p><a href=/css/functions/atan/>atan</a></p><p><a href=/css/functions/atan2/>atan2</a></p><p><a href=/css/functions/attr/>attr</a></p><p><a href=/css/functions/calc/>calc</a></p><p><a href=/css/functions/clamp/>clamp</a></p><p><a href=/css/functions/color/>color</a></p><p><a href=/css/functions/conic-gradient/>conic-gradient</a></p><p><a href=/css/functions/cos/>cos</a></p><p><a href=/css/functions/counter/>counter</a></p><p><a href=/css/functions/counters/>counters</a></p><p><a href=/css/functions/hsl/>hsl</a></p><p><a href=/css/functions/hsla/>hsla</a></p><p><a href=/css/functions/hwb/>hwb</a></p><p><a href=/css/functions/lab/>lab</a></p><p><a href=/css/functions/lch/>lch</a></p><p><a href=/css/functions/linear-gradient/>linear-gradient</a></p><p><a href=/css/functions/matrix/>matrix</a></p><p><a href=/css/functions/matrix3d/>matrix3d</a></p><p><a href=/css/functions/max/>max</a></p><p><a href=/css/functions/min/>min</a></p><p><a href=/css/functions/mod/>mod</a></p><p><a href=/css/functions/oklab/>oklab</a></p><p><a href=/css/functions/oklch/>oklch</a></p><p><a href=/css/functions/param/>param</a></p><p><a href=/css/functions/perspective/>perspective</a></p><p><a href=/css/functions/radial-gradient/>radial-gradient</a></p><p><a href=/css/functions/rem/>rem</a></p><p><a href=/css/functions/repeating-conic-gradient/>repeating-conic-gradient</a></p><p><a href=/css/functions/repeating-linear-gradient/>repeating-linear-gradient</a></p><p><a href=/css/functions/repeating-radial-gradient/>repeating-radial-gradient</a></p><p><a href=/css/functions/rgb/>rgb</a></p><p><a href=/css/functions/rgba/>rgba</a></p><p><a href=/css/functions/rotate/>rotate</a></p><p><a href=/css/functions/rotate3d/>rotate3d</a></p><p><a href=/css/functions/rotatex/>rotateX</a></p><p><a href=/css/functions/rotatey/>rotateY</a></p><p><a href=/css/functions/rotatez/>rotateZ</a></p><p><a href=/css/functions/round/>round</a></p><p><a href=/css/functions/scale/>scale</a></p><p><a href=/css/functions/scale3d/>scale3d</a></p><p><a href=/css/functions/scalex/>scaleX</a></p><p><a href=/css/functions/scaley/>scaleY</a></p><p><a href=/css/functions/scalez/>scaleZ</a></p><p><a href=/css/functions/sin/>sin</a></p><p><a href=/css/functions/skew/>skew</a></p><p><a href=/css/functions/skewx/>skewX</a></p><p><a href=/css/functions/skewy/>skewY</a></p><p><a href=/css/functions/src/>src</a></p><p><a href=/css/functions/tan/>tan</a></p><p><a href=/css/functions/translate/>translate</a></p><p><a href=/css/functions/translate3d/>translate3d</a></p><p><a href=/css/functions/translatex/>translateX</a></p><p><a href=/css/functions/translatey/>translateY</a></p><p><a href=/css/functions/translatez/>translateZ</a></p><p><a href=/css/functions/url/>url</a></p><p><a href=/css/functions/var/>var</a></p></div><h2 id=properties><a href=#properties>Properties</a></h2><div class=margin><p><a href=/css/properties/accent-color/>accent-color</a></p><p><a href=/css/properties/align-content/>align-content</a></p><p><a href=/css/properties/align-items/>align-items</a></p><p><a href=/css/properties/align-self/>align-self</a></p><p><a href=/css/properties/all/>all</a></p><p><a href=/css/properties/animation/>animation</a></p><p><a href=/css/properties/animation-composition/>animation-composition</a></p><p><a href=/css/properties/animation-delay/>animation-delay</a></p><p><a href=/css/properties/animation-direction/>animation-direction</a></p><p><a href=/css/properties/animation-duration/>animation-duration</a></p><p><a href=/css/properties/animation-fill-mode/>animation-fill-mode</a></p><p><a href=/css/properties/animation-iteration-count/>animation-iteration-count</a></p><p><a href=/css/properties/animation-name/>animation-name</a></p><p><a href=/css/properties/animation-play-state/>animation-play-state</a></p><p><a href=/css/properties/animation-timeline/>animation-timeline</a></p><p><a href=/css/properties/animation-timing-function/>animation-timing-function</a></p><p><a href=/css/properties/appearance/>appearance</a></p><p><a href=/css/properties/aspect-ratio/>aspect-ratio</a></p><p><a href=/css/properties/backdrop-filter/>backdrop-filter</a></p><p><a href=/css/properties/backface-visibility/>backface-visibility</a></p><p><a href=/css/properties/background/>background</a></p><p><a href=/css/properties/background-attachment/>background-attachment</a></p><p><a href=/css/properties/background-blend-mode/>background-blend-mode</a></p><p><a href=/css/properties/background-clip/>background-clip</a></p><p><a href=/css/properties/background-color/>background-color</a></p><p><a href=/css/properties/background-image/>background-image</a></p><p><a href=/css/properties/background-origin/>background-origin</a></p><p><a href=/css/properties/background-position/>background-position</a></p><p><a href=/css/properties/background-position-x/>background-position-x</a></p><p><a href=/css/properties/background-position-y/>background-position-y</a></p><p><a href=/css/properties/background-repeat/>background-repeat</a></p><p><a href=/css/properties/background-size/>background-size</a></p><p><a href=/css/properties/block-ellipsis/>block-ellipsis</a></p><p><a href=/css/properties/block-size/>block-size</a></p><p><a href=/css/properties/border/>border</a></p><p><a href=/css/properties/border-block/>border-block</a></p><p><a href=/css/properties/border-block-color/>border-block-color</a></p><p><a href=/css/properties/border-block-end/>border-block-end</a></p><p><a href=/css/properties/border-block-end-color/>border-block-end-color</a></p><p><a href=/css/properties/border-block-end-style/>border-block-end-style</a></p><p><a href=/css/properties/border-block-end-width/>border-block-end-width</a></p><p><a href=/css/properties/border-block-start/>border-block-start</a></p><p><a href=/css/properties/border-block-start-color/>border-block-start-color</a></p><p><a href=/css/properties/border-block-start-style/>border-block-start-style</a></p><p><a href=/css/properties/border-block-start-width/>border-block-start-width</a></p><p><a href=/css/properties/border-block-style/>border-block-style</a></p><p><a href=/css/properties/border-block-width/>border-block-width</a></p><p><a href=/css/properties/border-bottom/>border-bottom</a></p><p><a href=/css/properties/border-bottom-color/>border-bottom-color</a></p><p><a href=/css/properties/border-bottom-left-radius/>border-bottom-left-radius</a></p><p><a href=/css/properties/border-bottom-right-radius/>border-bottom-right-radius</a></p><p><a href=/css/properties/border-bottom-style/>border-bottom-style</a></p><p><a href=/css/properties/border-bottom-width/>border-bottom-width</a></p><p><a href=/css/properties/border-collapse/>border-collapse</a></p><p><a href=/css/properties/border-color/>border-color</a></p><p><a href=/css/properties/border-end-end-radius/>border-end-end-radius</a></p><p><a href=/css/properties/border-end-start-radius/>border-end-start-radius</a></p><p><a href=/css/properties/border-image/>border-image</a></p><p><a href=/css/properties/border-image-outset/>border-image-outset</a></p><p><a href=/css/properties/border-image-repeat/>border-image-repeat</a></p><p><a href=/css/properties/border-image-slice/>border-image-slice</a></p><p><a href=/css/properties/border-image-source/>border-image-source</a></p><p><a href=/css/properties/border-image-width/>border-image-width</a></p><p><a href=/css/properties/border-inline/>border-inline</a></p><p><a href=/css/properties/border-inline-color/>border-inline-color</a></p><p><a href=/css/properties/border-inline-end/>border-inline-end</a></p><p><a href=/css/properties/border-inline-end-color/>border-inline-end-color</a></p><p><a href=/css/properties/border-inline-end-style/>border-inline-end-style</a></p><p><a href=/css/properties/border-inline-end-width/>border-inline-end-width</a></p><p><a href=/css/properties/border-inline-start/>border-inline-start</a></p><p><a href=/css/properties/border-inline-start-color/>border-inline-start-color</a></p><p><a href=/css/properties/border-inline-start-style/>border-inline-start-style</a></p><p><a href=/css/properties/border-inline-start-width/>border-inline-start-width</a></p><p><a href=/css/properties/border-inline-style/>border-inline-style</a></p><p><a href=/css/properties/border-inline-width/>border-inline-width</a></p><p><a href=/css/properties/border-left/>border-left</a></p><p><a href=/css/properties/border-left-color/>border-left-color</a></p><p><a href=/css/properties/border-left-style/>border-left-style</a></p><p><a href=/css/properties/border-left-width/>border-left-width</a></p><p><a href=/css/properties/border-radius/>border-radius</a></p><p><a href=/css/properties/border-right/>border-right</a></p><p><a href=/css/properties/border-right-color/>border-right-color</a></p><p><a href=/css/properties/border-right-style/>border-right-style</a></p><p><a href=/css/properties/border-right-width/>border-right-width</a></p><p><a href=/css/properties/border-spacing/>border-spacing</a></p><p><a href=/css/properties/border-start-end-radius/>border-start-end-radius</a></p><p><a href=/css/properties/border-start-start-radius/>border-start-start-radius</a></p><p><a href=/css/properties/border-style/>border-style</a></p><p><a href=/css/properties/border-top/>border-top</a></p><p><a href=/css/properties/border-top-color/>border-top-color</a></p><p><a href=/css/properties/border-top-left-radius/>border-top-left-radius</a></p><p><a href=/css/properties/border-top-right-radius/>border-top-right-radius</a></p><p><a href=/css/properties/border-top-style/>border-top-style</a></p><p><a href=/css/properties/border-top-width/>border-top-width</a></p><p><a href=/css/properties/border-width/>border-width</a></p><p><a href=/css/properties/bottom/>bottom</a></p><p><a href=/css/properties/box-decoration-break/>box-decoration-break</a></p><p><a href=/css/properties/box-shadow/>box-shadow</a></p><p><a href=/css/properties/box-sizing/>box-sizing</a></p><p><a href=/css/properties/caption-side/>caption-side</a></p><p><a href=/css/properties/caret/>caret</a></p><p><a href=/css/properties/caret-color/>caret-color</a></p><p><a href=/css/properties/caret-shape/>caret-shape</a></p><p><a href=/css/properties/clear/>clear</a></p><p><a href=/css/properties/clip/>clip</a></p><p><a href=/css/properties/clip-path/>clip-path</a></p><p><a href=/css/properties/color/>color</a></p><p><a href=/css/properties/color-scheme/>color-scheme</a></p><p><a href=/css/properties/column-count/>column-count</a></p><p><a href=/css/properties/column-fill/>column-fill</a></p><p><a href=/css/properties/column-gap/>column-gap</a></p><p><a href=/css/properties/column-rule/>column-rule</a></p><p><a href=/css/properties/column-rule-color/>column-rule-color</a></p><p><a href=/css/properties/column-rule-style/>column-rule-style</a></p><p><a href=/css/properties/column-rule-width/>column-rule-width</a></p><p><a href=/css/properties/column-span/>column-span</a></p><p><a href=/css/properties/column-width/>column-width</a></p><p><a href=/css/properties/columns/>columns</a></p><p><a href=/css/properties/contain/>contain</a></p><p><a href=/css/properties/contain-intrinsic-block-size/>contain-intrinsic-block-size</a></p><p><a href=/css/properties/contain-intrinsic-height/>contain-intrinsic-height</a></p><p><a href=/css/properties/contain-intrinsic-inline-size/>contain-intrinsic-inline-size</a></p><p><a href=/css/properties/contain-intrinsic-size/>contain-intrinsic-size</a></p><p><a href=/css/properties/contain-intrinsic-width/>contain-intrinsic-width</a></p><p><a href=/css/properties/container/>container</a></p><p><a href=/css/properties/container-name/>container-name</a></p><p><a href=/css/properties/container-type/>container-type</a></p><p><a href=/css/properties/content/>content</a></p><p><a href=/css/properties/content-visibility/>content-visibility</a></p><p><a href=/css/properties/continue/>continue</a></p><p><a href=/css/properties/counter-increment/>counter-increment</a></p><p><a href=/css/properties/counter-reset/>counter-reset</a></p><p><a href=/css/properties/counter-set/>counter-set</a></p><p><a href=/css/properties/cursor/>cursor</a></p><p><a href=/css/properties/direction/>direction</a></p><p><a href=/css/properties/display/>display</a></p><p><a href=/css/properties/empty-cells/>empty-cells</a></p><p><a href=/css/properties/filter/>filter</a></p><p><a href=/css/properties/flex/>flex</a></p><p><a href=/css/properties/flex-basis/>flex-basis</a></p><p><a href=/css/properties/flex-direction/>flex-direction</a></p><p><a href=/css/properties/flex-flow/>flex-flow</a></p><p><a href=/css/properties/flex-grow/>flex-grow</a></p><p><a href=/css/properties/flex-shrink/>flex-shrink</a></p><p><a href=/css/properties/flex-wrap/>flex-wrap</a></p><p><a href=/css/properties/float/>float</a></p><p><a href=/css/properties/font/>font</a></p><p><a href=/css/properties/font-family/>font-family</a></p><p><a href=/css/properties/font-feature-settings/>font-feature-settings</a></p><p><a href=/css/properties/font-kerning/>font-kerning</a></p><p><a href=/css/properties/font-optical-sizing/>font-optical-sizing</a></p><p><a href=/css/properties/font-size/>font-size</a></p><p><a href=/css/properties/font-size-adjust/>font-size-adjust</a></p><p><a href=/css/properties/font-stretch/>font-stretch</a></p><p><a href=/css/properties/font-style/>font-style</a></p><p><a href=/css/properties/font-variant/>font-variant</a></p><p><a href=/css/properties/font-variant-caps/>font-variant-caps</a></p><p><a href=/css/properties/font-variant-ligatures/>font-variant-ligatures</a></p><p><a href=/css/properties/font-variant-numeric/>font-variant-numeric</a></p><p><a href=/css/properties/font-variant-position/>font-variant-position</a></p><p><a href=/css/properties/font-variation-settings/>font-variation-settings</a></p><p><a href=/css/properties/font-weight/>font-weight</a></p><p><a href=/css/properties/forced-color-adjust/>forced-color-adjust</a></p><p><a href=/css/properties/gap/>gap</a></p><p><a href=/css/properties/grid/>grid</a></p><p><a href=/css/properties/grid-area/>grid-area</a></p><p><a href=/css/properties/grid-auto-columns/>grid-auto-columns</a></p><p><a href=/css/properties/grid-auto-flow/>grid-auto-flow</a></p><p><a href=/css/properties/grid-auto-rows/>grid-auto-rows</a></p><p><a href=/css/properties/grid-column/>grid-column</a></p><p><a href=/css/properties/grid-column-end/>grid-column-end</a></p><p><a href=/css/properties/grid-column-start/>grid-column-start</a></p><p><a href=/css/properties/grid-row/>grid-row</a></p><p><a href=/css/properties/grid-row-end/>grid-row-end</a></p><p><a href=/css/properties/grid-row-start/>grid-row-start</a></p><p><a href=/css/properties/grid-template/>grid-template</a></p><p><a href=/css/properties/grid-template-areas/>grid-template-areas</a></p><p><a href=/css/properties/grid-template-columns/>grid-template-columns</a></p><p><a href=/css/properties/grid-template-rows/>grid-template-rows</a></p><p><a href=/css/properties/hanging-punctuation/>hanging-punctuation</a></p><p><a href=/css/properties/height/>height</a></p><p><a href=/css/properties/hyphens/>hyphens</a></p><p><a href=/css/properties/image-rendering/>image-rendering</a></p><p><a href=/css/properties/initial-letter/>initial-letter</a></p><p><a href=/css/properties/initial-letter-align/>initial-letter-align</a></p><p><a href=/css/properties/inline-size/>inline-size</a></p><p><a href=/css/properties/inset/>inset</a></p><p><a href=/css/properties/inset-block/>inset-block</a></p><p><a href=/css/properties/inset-block-end/>inset-block-end</a></p><p><a href=/css/properties/inset-block-start/>inset-block-start</a></p><p><a href=/css/properties/inset-inline/>inset-inline</a></p><p><a href=/css/properties/inset-inline-end/>inset-inline-end</a></p><p><a href=/css/properties/inset-inline-start/>inset-inline-start</a></p><p><a href=/css/properties/isolation/>isolation</a></p><p><a href=/css/properties/justify-content/>justify-content</a></p><p><a href=/css/properties/justify-items/>justify-items</a></p><p><a href=/css/properties/justify-self/>justify-self</a></p><p><a href=/css/properties/left/>left</a></p><p><a href=/css/properties/letter-spacing/>letter-spacing</a></p><p><a href=/css/properties/line-break/>line-break</a></p><p><a href=/css/properties/line-clamp/>line-clamp</a></p><p><a href=/css/properties/line-height/>line-height</a></p><p><a href=/css/properties/list-style/>list-style</a></p><p><a href=/css/properties/list-style-image/>list-style-image</a></p><p><a href=/css/properties/list-style-position/>list-style-position</a></p><p><a href=/css/properties/list-style-type/>list-style-type</a></p><p><a href=/css/properties/margin/>margin</a></p><p><a href=/css/properties/margin-block/>margin-block</a></p><p><a href=/css/properties/margin-block-end/>margin-block-end</a></p><p><a href=/css/properties/margin-block-start/>margin-block-start</a></p><p><a href=/css/properties/margin-bottom/>margin-bottom</a></p><p><a href=/css/properties/margin-inline/>margin-inline</a></p><p><a href=/css/properties/margin-inline-end/>margin-inline-end</a></p><p><a href=/css/properties/margin-inline-start/>margin-inline-start</a></p><p><a href=/css/properties/margin-left/>margin-left</a></p><p><a href=/css/properties/margin-right/>margin-right</a></p><p><a href=/css/properties/margin-top/>margin-top</a></p><p><a href=/css/properties/mask/>mask</a></p><p><a href=/css/properties/mask-border/>mask-border</a></p><p><a href=/css/properties/mask-border-mode/>mask-border-mode</a></p><p><a href=/css/properties/mask-border-outset/>mask-border-outset</a></p><p><a href=/css/properties/mask-border-repeat/>mask-border-repeat</a></p><p><a href=/css/properties/mask-border-slice/>mask-border-slice</a></p><p><a href=/css/properties/mask-border-source/>mask-border-source</a></p><p><a href=/css/properties/mask-border-width/>mask-border-width</a></p><p><a href=/css/properties/mask-clip/>mask-clip</a></p><p><a href=/css/properties/mask-composite/>mask-composite</a></p><p><a href=/css/properties/mask-image/>mask-image</a></p><p><a href=/css/properties/mask-mode/>mask-mode</a></p><p><a href=/css/properties/mask-origin/>mask-origin</a></p><p><a href=/css/properties/mask-position/>mask-position</a></p><p><a href=/css/properties/mask-repeat/>mask-repeat</a></p><p><a href=/css/properties/mask-size/>mask-size</a></p><p><a href=/css/properties/mask-type/>mask-type</a></p><p><a href=/css/properties/math-depth/>math-depth</a></p><p><a href=/css/properties/math-shift/>math-shift</a></p><p><a href=/css/properties/math-style/>math-style</a></p><p><a href=/css/properties/max-block-size/>max-block-size</a></p><p><a href=/css/properties/max-height/>max-height</a></p><p><a href=/css/properties/max-inline-size/>max-inline-size</a></p><p><a href=/css/properties/max-lines/>max-lines</a></p><p><a href=/css/properties/max-width/>max-width</a></p><p><a href=/css/properties/min-block-size/>min-block-size</a></p><p><a href=/css/properties/min-height/>min-height</a></p><p><a href=/css/properties/min-inline-size/>min-inline-size</a></p><p><a href=/css/properties/min-width/>min-width</a></p><p><a href=/css/properties/mix-blend-mode/>mix-blend-mode</a></p><p><a href=/css/properties/nav-down/>nav-down</a></p><p><a href=/css/properties/nav-left/>nav-left</a></p><p><a href=/css/properties/nav-right/>nav-right</a></p><p><a href=/css/properties/nav-up/>nav-up</a></p><p><a href=/css/properties/object-fit/>object-fit</a></p><p><a href=/css/properties/object-position/>object-position</a></p><p><a href=/css/properties/opacity/>opacity</a></p><p><a href=/css/properties/orphans/>orphans</a></p><p><a href=/css/properties/outline/>outline</a></p><p><a href=/css/properties/outline-color/>outline-color</a></p><p><a href=/css/properties/outline-offset/>outline-offset</a></p><p><a href=/css/properties/outline-style/>outline-style</a></p><p><a href=/css/properties/outline-width/>outline-width</a></p><p><a href=/css/properties/overflow/>overflow</a></p><p><a href=/css/properties/overflow-block/>overflow-block</a></p><p><a href=/css/properties/overflow-clip-margin/>overflow-clip-margin</a></p><p><a href=/css/properties/overflow-inline/>overflow-inline</a></p><p><a href=/css/properties/overflow-wrap/>overflow-wrap</a></p><p><a href=/css/properties/overflow-x/>overflow-x</a></p><p><a href=/css/properties/overflow-y/>overflow-y</a></p><p><a href=/css/properties/padding/>padding</a></p><p><a href=/css/properties/padding-block/>padding-block</a></p><p><a href=/css/properties/padding-block-end/>padding-block-end</a></p><p><a href=/css/properties/padding-block-start/>padding-block-start</a></p><p><a href=/css/properties/padding-bottom/>padding-bottom</a></p><p><a href=/css/properties/padding-inline/>padding-inline</a></p><p><a href=/css/properties/padding-inline-end/>padding-inline-end</a></p><p><a href=/css/properties/padding-inline-start/>padding-inline-start</a></p><p><a href=/css/properties/padding-left/>padding-left</a></p><p><a href=/css/properties/padding-right/>padding-right</a></p><p><a href=/css/properties/padding-top/>padding-top</a></p><p><a href=/css/properties/paint-order/>paint-order</a></p><p><a href=/css/properties/perspective/>perspective</a></p><p><a href=/css/properties/perspective-origin/>perspective-origin</a></p><p><a href=/css/properties/place-content/>place-content</a></p><p><a href=/css/properties/place-items/>place-items</a></p><p><a href=/css/properties/place-self/>place-self</a></p><p><a href=/css/properties/pointer-events/>pointer-events</a></p><p><a href=/css/properties/position/>position</a></p><p><a href=/css/properties/print-color-adjust/>print-color-adjust</a></p><p><a href=/css/properties/quotes/>quotes</a></p><p><a href=/css/properties/resize/>resize</a></p><p><a href=/css/properties/right/>right</a></p><p><a href=/css/properties/rotate/>rotate</a></p><p><a href=/css/properties/row-gap/>row-gap</a></p><p><a href=/css/properties/scale/>scale</a></p><p><a href=/css/properties/scroll-behavior/>scroll-behavior</a></p><p><a href=/css/properties/scroll-margin/>scroll-margin</a></p><p><a href=/css/properties/scroll-margin-block/>scroll-margin-block</a></p><p><a href=/css/properties/scroll-margin-block-end/>scroll-margin-block-end</a></p><p><a href=/css/properties/scroll-margin-block-start/>scroll-margin-block-start</a></p><p><a href=/css/properties/scroll-margin-bottom/>scroll-margin-bottom</a></p><p><a href=/css/properties/scroll-margin-inline/>scroll-margin-inline</a></p><p><a href=/css/properties/scroll-margin-inline-end/>scroll-margin-inline-end</a></p><p><a href=/css/properties/scroll-margin-inline-start/>scroll-margin-inline-start</a></p><p><a href=/css/properties/scroll-margin-left/>scroll-margin-left</a></p><p><a href=/css/properties/scroll-margin-right/>scroll-margin-right</a></p><p><a href=/css/properties/scroll-margin-top/>scroll-margin-top</a></p><p><a href=/css/properties/scroll-padding/>scroll-padding</a></p><p><a href=/css/properties/scroll-padding-block/>scroll-padding-block</a></p><p><a href=/css/properties/scroll-padding-block-end/>scroll-padding-block-end</a></p><p><a href=/css/properties/scroll-padding-block-start/>scroll-padding-block-start</a></p><p><a href=/css/properties/scroll-padding-bottom/>scroll-padding-bottom</a></p><p><a href=/css/properties/scroll-padding-inline/>scroll-padding-inline</a></p><p><a href=/css/properties/scroll-padding-inline-end/>scroll-padding-inline-end</a></p><p><a href=/css/properties/scroll-padding-inline-start/>scroll-padding-inline-start</a></p><p><a href=/css/properties/scroll-padding-left/>scroll-padding-left</a></p><p><a href=/css/properties/scroll-padding-right/>scroll-padding-right</a></p><p><a href=/css/properties/scroll-padding-top/>scroll-padding-top</a></p><p><a href=/css/properties/scroll-snap-align/>scroll-snap-align</a></p><p><a href=/css/properties/scroll-snap-stop/>scroll-snap-stop</a></p><p><a href=/css/properties/scroll-snap-type/>scroll-snap-type</a></p><p><a href=/css/properties/scroll-timeline/>scroll-timeline</a></p><p><a href=/css/properties/scroll-timeline-axis/>scroll-timeline-axis</a></p><p><a href=/css/properties/scroll-timeline-name/>scroll-timeline-name</a></p><p><a href=/css/properties/scrollbar-color/>scrollbar-color</a></p><p><a href=/css/properties/scrollbar-gutter/>scrollbar-gutter</a></p><p><a href=/css/properties/scrollbar-width/>scrollbar-width</a></p><p><a href=/css/properties/shape-image-threshold/>shape-image-threshold</a></p><p><a href=/css/properties/shape-margin/>shape-margin</a></p><p><a href=/css/properties/shape-outside/>shape-outside</a></p><p><a href=/css/properties/tab-size/>tab-size</a></p><p><a href=/css/properties/table-layout/>table-layout</a></p><p><a href=/css/properties/text-align/>text-align</a></p><p><a href=/css/properties/text-align-all/>text-align-all</a></p><p><a href=/css/properties/text-align-last/>text-align-last</a></p><p><a href=/css/properties/text-combine-upright/>text-combine-upright</a></p><p><a href=/css/properties/text-decoration/>text-decoration</a></p><p><a href=/css/properties/text-decoration-color/>text-decoration-color</a></p><p><a href=/css/properties/text-decoration-line/>text-decoration-line</a></p><p><a href=/css/properties/text-decoration-skip-ink/>text-decoration-skip-ink</a></p><p><a href=/css/properties/text-decoration-style/>text-decoration-style</a></p><p><a href=/css/properties/text-decoration-thickness/>text-decoration-thickness</a></p><p><a href=/css/properties/text-decoration-trim/>text-decoration-trim</a></p><p><a href=/css/properties/text-emphasis/>text-emphasis</a></p><p><a href=/css/properties/text-emphasis-color/>text-emphasis-color</a></p><p><a href=/css/properties/text-emphasis-position/>text-emphasis-position</a></p><p><a href=/css/properties/text-emphasis-style/>text-emphasis-style</a></p><p><a href=/css/properties/text-indent/>text-indent</a></p><p><a href=/css/properties/text-justify/>text-justify</a></p><p><a href=/css/properties/text-orientation/>text-orientation</a></p><p><a href=/css/properties/text-overflow/>text-overflow</a></p><p><a href=/css/properties/text-shadow/>text-shadow</a></p><p><a href=/css/properties/text-transform/>text-transform</a></p><p><a href=/css/properties/text-underline-offset/>text-underline-offset</a></p><p><a href=/css/properties/text-underline-position/>text-underline-position</a></p><p><a href=/css/properties/top/>top</a></p><p><a href=/css/properties/transform/>transform</a></p><p><a href=/css/properties/transform-box/>transform-box</a></p><p><a href=/css/properties/transform-origin/>transform-origin</a></p><p><a href=/css/properties/transform-style/>transform-style</a></p><p><a href=/css/properties/transition/>transition</a></p><p><a href=/css/properties/transition-delay/>transition-delay</a></p><p><a href=/css/properties/transition-duration/>transition-duration</a></p><p><a href=/css/properties/transition-property/>transition-property</a></p><p><a href=/css/properties/transition-timing-function/>transition-timing-function</a></p><p><a href=/css/properties/translate/>translate</a></p><p><a href=/css/properties/unicode-bidi/>unicode-bidi</a></p><p><a href=/css/properties/vertical-align/>vertical-align</a></p><p><a href=/css/properties/visibility/>visibility</a></p><p><a href=/css/properties/white-space/>white-space</a></p><p><a href=/css/properties/widows/>widows</a></p><p><a href=/css/properties/width/>width</a></p><p><a href=/css/properties/word-break/>word-break</a></p><p><a href=/css/properties/word-spacing/>word-spacing</a></p><p><a href=/css/properties/word-wrap/>word-wrap</a></p><p><a href=/css/properties/writing-mode/>writing-mode</a></p><p><a href=/css/properties/z-index/>z-index</a></p><p><a href=/css/properties/zoom/>zoom</a></p></div><h2 id=pseudo-classes><a href=#pseudo-classes>Pseudo-Classes</a></h2><div class=margin><p><a href=/css/pseudo-classes/active/>active</a></p><p><a href=/css/pseudo-classes/any-link/>any-link</a></p><p><a href=/css/pseudo-classes/autofill/>autofill</a></p><p><a href=/css/pseudo-classes/blank/>blank</a></p><p><a href=/css/pseudo-classes/checked/>checked</a></p><p><a href=/css/pseudo-classes/default/>default</a></p><p><a href=/css/pseudo-classes/defined/>defined</a></p><p><a href=/css/pseudo-classes/dir/>dir</a></p><p><a href=/css/pseudo-classes/disabled/>disabled</a></p><p><a href=/css/pseudo-classes/empty/>empty</a></p><p><a href=/css/pseudo-classes/enabled/>enabled</a></p><p><a href=/css/pseudo-classes/first-child/>first-child</a></p><p><a href=/css/pseudo-classes/first-of-type/>first-of-type</a></p><p><a href=/css/pseudo-classes/focus/>focus</a></p><p><a href=/css/pseudo-classes/focus-visible/>focus-visible</a></p><p><a href=/css/pseudo-classes/focus-within/>focus-within</a></p><p><a href=/css/pseudo-classes/fullscreen/>fullscreen</a></p><p><a href=/css/pseudo-classes/has/>has</a></p><p><a href=/css/pseudo-classes/hover/>hover</a></p><p><a href=/css/pseudo-classes/in-range/>in-range</a></p><p><a href=/css/pseudo-classes/indeterminate/>indeterminate</a></p><p><a href=/css/pseudo-classes/invalid/>invalid</a></p><p><a href=/css/pseudo-classes/is/>is</a></p><p><a href=/css/pseudo-classes/lang/>lang</a></p><p><a href=/css/pseudo-classes/last-child/>last-child</a></p><p><a href=/css/pseudo-classes/last-of-type/>last-of-type</a></p><p><a href=/css/pseudo-classes/link/>link</a></p><p><a href=/css/pseudo-classes/local-link/>local-link</a></p><p><a href=/css/pseudo-classes/modal/>modal</a></p><p><a href=/css/pseudo-classes/not/>not</a></p><p><a href=/css/pseudo-classes/nth-child/>nth-child</a></p><p><a href=/css/pseudo-classes/nth-col/>nth-col</a></p><p><a href=/css/pseudo-classes/nth-last-child/>nth-last-child</a></p><p><a href=/css/pseudo-classes/nth-last-col/>nth-last-col</a></p><p><a href=/css/pseudo-classes/nth-last-of-type/>nth-last-of-type</a></p><p><a href=/css/pseudo-classes/nth-of-type/>nth-of-type</a></p><p><a href=/css/pseudo-classes/only-child/>only-child</a></p><p><a href=/css/pseudo-classes/only-of-type/>only-of-type</a></p><p><a href=/css/pseudo-classes/optional/>optional</a></p><p><a href=/css/pseudo-classes/out-of-range/>out-of-range</a></p><p><a href=/css/pseudo-classes/picture-in-picture/>picture-in-picture</a></p><p><a href=/css/pseudo-classes/placeholder-shown/>placeholder-shown</a></p><p><a href=/css/pseudo-classes/popover-open/>popover-open</a></p><p><a href=/css/pseudo-classes/read-only/>read-only</a></p><p><a href=/css/pseudo-classes/read-write/>read-write</a></p><p><a href=/css/pseudo-classes/required/>required</a></p><p><a href=/css/pseudo-classes/root/>root</a></p><p><a href=/css/pseudo-classes/scope/>scope</a></p><p><a href=/css/pseudo-classes/target/>target</a></p><p><a href=/css/pseudo-classes/valid/>valid</a></p><p><a href=/css/pseudo-classes/visited/>visited</a></p><p><a href=/css/pseudo-classes/where/>where</a></p></div><h2 id=pseudo-elements><a href=#pseudo-elements>Pseudo-Elements</a></h2><div class=margin><p><a href=/css/pseudo-elements/after/>after</a></p><p><a href=/css/pseudo-elements/backdrop/>backdrop</a></p><p><a href=/css/pseudo-elements/before/>before</a></p><p><a href=/css/pseudo-elements/file-selector-button/>file-selector-button</a></p><p><a href=/css/pseudo-elements/first-letter/>first-letter</a></p><p><a href=/css/pseudo-elements/first-line/>first-line</a></p><p><a href=/css/pseudo-elements/highlight/>highlight</a></p><p><a href=/css/pseudo-elements/marker/>marker</a></p><p><a href=/css/pseudo-elements/part/>part</a></p><p><a href=/css/pseudo-elements/placeholder/>placeholder</a></p><p><a href=/css/pseudo-elements/selection/>selection</a></p></div><h2 id=units><a href=#units>Units</a></h2><div class=margin><p><a href=/css/units/cap/>cap</a></p><p><a href=/css/units/ch/>ch</a></p><p><a href=/css/units/cm/>cm</a></p><p><a href=/css/units/cqb/>cqb</a></p><p><a href=/css/units/cqh/>cqh</a></p><p><a href=/css/units/cqi/>cqi</a></p><p><a href=/css/units/cqmax/>cqmax</a></p><p><a href=/css/units/cqmin/>cqmin</a></p><p><a href=/css/units/cqw/>cqw</a></p><p><a href=/css/units/deg/>deg</a></p><p><a href=/css/units/dpcm/>dpcm</a></p><p><a href=/css/units/dpi/>dpi</a></p><p><a href=/css/units/dppx/>dppx</a></p><p><a href=/css/units/dvb/>dvb</a></p><p><a href=/css/units/dvh/>dvh</a></p><p><a href=/css/units/dvi/>dvi</a></p><p><a href=/css/units/dvmax/>dvmax</a></p><p><a href=/css/units/dvmin/>dvmin</a></p><p><a href=/css/units/dvw/>dvw</a></p><p><a href=/css/units/em/>em</a></p><p><a href=/css/units/ex/>ex</a></p><p><a href=/css/units/grad/>grad</a></p><p><a href=/css/units/ic/>ic</a></p><p><a href=/css/units/in/>in</a></p><p><a href=/css/units/lvb/>lvb</a></p><p><a href=/css/units/lvh/>lvh</a></p><p><a href=/css/units/lvi/>lvi</a></p><p><a href=/css/units/lvmax/>lvmax</a></p><p><a href=/css/units/lvmin/>lvmin</a></p><p><a href=/css/units/lvw/>lvw</a></p><p><a href=/css/units/mm/>mm</a></p><p><a href=/css/units/ms/>ms</a></p><p><a href=/css/units/pc/>pc</a></p><p><a href=/css/units/pt/>pt</a></p><p><a href=/css/units/px/>px</a></p><p><a href=/css/units/q/>Q</a></p><p><a href=/css/units/rad/>rad</a></p><p><a href=/css/units/rem/>rem</a></p><p><a href=/css/units/s/>s</a></p><p><a href=/css/units/svb/>svb</a></p><p><a href=/css/units/svh/>svh</a></p><p><a href=/css/units/svi/>svi</a></p><p><a href=/css/units/svmax/>svmax</a></p><p><a href=/css/units/svmin/>svmin</a></p><p><a href=/css/units/svw/>svw</a></p><p><a href=/css/units/turn/>turn</a></p><p><a href=/css/units/vb/>vb</a></p><p><a href=/css/units/vh/>vh</a></p><p><a href=/css/units/vi/>vi</a></p><p><a href=/css/units/vmax/>vmax</a></p><p><a href=/css/units/vmin/>vmin</a></p><p><a href=/css/units/vw/>vw</a></p></div></div><div class=nav-h1><a id=nav-switch-js>JS</a></div><div id=nav-content-js><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/js/>Overview</a></p></div><h2 id=abortcontroller><a href=#abortcontroller>AbortController</a></h2><div class=margin><p><a href=/js/abortcontroller/abort/>abort</a></p><p><a href=/js/abortcontroller/abortcontroller/>AbortController</a></p><p><a href=/js/abortcontroller/signal/>signal</a></p></div><h2 id=abstractrange><a href=#abstractrange>AbstractRange</a></h2><div class=margin><p><a href=/js/abstractrange/collapsed/>collapsed</a></p><p><a href=/js/abstractrange/endcontainer/>endContainer</a></p><p><a href=/js/abstractrange/endoffset/>endOffset</a></p><p><a href=/js/abstractrange/startcontainer/>startContainer</a></p><p><a href=/js/abstractrange/startoffset/>startOffset</a></p></div><h2 id=abortsignal><a href=#abortsignal>AbortSignal</a></h2><div class=margin><p><a href=/js/abortsignal/abort/>abort</a></p><p><a href=/js/abortsignal/aborted/>aborted</a></p><p><a href=/js/abortsignal/reason/>reason</a></p><p><a href=/js/abortsignal/throwifaborted/>throwIfAborted</a></p><p><a href=/js/abortsignal/timeout/>timeout</a></p></div><h2 id=childnode><a href=#childnode>ChildNode</a></h2><div class=margin><p><a href=/js/childnode/after/>after</a></p><p><a href=/js/childnode/before/>before</a></p><p><a href=/js/childnode/remove/>remove</a></p><p><a href=/js/childnode/replacewith/>replaceWith</a></p></div><h2 id=comment><a href=#comment>Comment</a></h2><div class=margin><p><a href=/js/comment/comment/>Comment</a></p></div><h2 id=console><a href=#console>console</a></h2><div class=margin><p><a href=/js/console/assert/>assert</a></p><p><a href=/js/console/clear/>clear</a></p><p><a href=/js/console/count/>count</a></p><p><a href=/js/console/countreset/>countReset</a></p><p><a href=/js/console/debug/>debug</a></p><p><a href=/js/console/dir/>dir</a> 10000 </p><p><a href=/js/console/dirxml/>dirxml</a></p><p><a href=/js/console/error/>error</a></p><p><a href=/js/console/group/>group</a></p><p><a href=/js/console/groupcollapsed/>groupCollapsed</a></p><p><a href=/js/console/groupend/>groupEnd</a></p><p><a href=/js/console/info/>info</a></p><p><a href=/js/console/log/>log</a></p><p><a href=/js/console/table/>table</a></p><p><a href=/js/console/time/>time</a></p><p><a href=/js/console/timeend/>timeEnd</a></p><p><a href=/js/console/timelog/>timeLog</a></p><p><a href=/js/console/trace/>trace</a></p><p><a href=/js/console/warn/>warn</a></p></div><h2 id=customevent><a href=#customevent>CustomEvent</a></h2><div class=margin><p><a href=/js/customevent/customevent/>CustomEvent</a></p><p><a href=/js/customevent/detail/>detail</a></p></div><h2 id=declarations><a href=#declarations>Declarations</a></h2><div class=margin><p><a href=/js/declarations/const/>const</a></p><p><a href=/js/declarations/let/>let</a></p><p><a href=/js/declarations/var/>var</a></p></div><h2 id=document><a href=#document>Document</a></h2><div class=margin><p><a href=/js/document/adoptnode/>adoptNode</a></p><p><a href=/js/document/characterset/>characterSet</a></p><p><a href=/js/document/compatmode/>compatMode</a></p><p><a href=/js/document/contenttype/>contentType</a></p><p><a href=/js/document/createcdatasection/>createCDATASection</a></p><p><a href=/js/document/createcomment/>createComment</a></p><p><a href=/js/document/createdocumentfragment/>createDocumentFragment</a></p><p><a href=/js/document/createelement/>createElement</a></p><p><a href=/js/document/createelementns/>createElementNS</a></p><p><a href=/js/document/createprocessinginstruction/>createProcessingInstruction</a></p><p><a href=/js/document/createtextnode/>createTextNode</a></p><p><a href=/js/document/doctype/>doctype</a></p><p><a href=/js/document/document/>Document</a></p><p><a href=/js/document/documentelement/>documentElement</a></p><p><a href=/js/document/documenturi/>documentURI</a></p><p><a href=/js/document/exitpictureinpicture/>exitPictureInPicture</a></p><p><a href=/js/document/getelementsbyclassname/>getElementsByClassName</a></p><p><a href=/js/document/getelementsbytagname/>getElementsByTagName</a></p><p><a href=/js/document/getelementsbytagnamens/>getElementsByTagNameNS</a></p><p><a href=/js/document/implementation/>implementation</a></p><p><a href=/js/document/importnode/>importNode</a></p><p><a href=/js/document/pictureinpictureenabled/>pictureInPictureEnabled</a></p><p><a href=/js/document/url/>URL</a></p><p><a href=/js/document/write/>write</a></p><p><a href=/js/document/writeln/>writeln</a></p></div><h2 id=documentfragment><a href=#documentfragment>DocumentFragment</a></h2><div class=margin><p><a href=/js/documentfragment/documentfragment/>DocumentFragment</a></p></div><h2 id=documentorshadowroot><a href=#documentorshadowroot>DocumentOrShadowRoot</a></h2><div class=margin><p><a href=/js/documentorshadowroot/pictureinpictureelement/>pictureInPictureElement</a></p></div><h2 id=domimplementation><a href=#domimplementation>DOMImplementation</a></h2><div class=margin><p><a href=/js/domimplementation/createdocument/>createDocument</a></p><p><a href=/js/domimplementation/createdocumenttype/>createDocumentType</a></p><p><a href=/js/domimplementation/createhtmldocument/>createHTMLDocument</a></p></div><h2 id=domtokenlist><a href=#domtokenlist>DOMTokenList</a></h2><div class=margin><p><a href=/js/domtokenlist/add/>add</a></p><p><a href=/js/domtokenlist/contains/>contains</a></p><p><a href=/js/domtokenlist/item/>item</a></p><p><a href=/js/domtokenlist/length/>length</a></p><p><a href=/js/domtokenlist/remove/>remove</a></p><p><a href=/js/domtokenlist/replace/>replace</a></p><p><a href=/js/domtokenlist/supports/>supports</a></p><p><a href=/js/domtokenlist/toggle/>toggle</a></p><p><a href=/js/domtokenlist/value/>value</a></p></div><h2 id=element><a href=#element>Element</a></h2><div class=margin><p><a href=/js/element/attachshadow/>attachShadow</a></p><p><a href=/js/element/classlist/>classList</a></p><p><a href=/js/element/classname/>className</a></p><p><a href=/js/element/closest/>closest</a></p><p><a href=/js/element/getattribute/>getAttribute</a></p><p><a href=/js/element/getattributenames/>getAttributeNames</a></p><p><a href=/js/element/getattributens/>getAttributeNS</a></p><p><a href=/js/element/hasattribute/>hasAttribute</a></p><p><a href=/js/element/hasattributens/>hasAttributeNS</a></p><p><a href=/js/element/hasattributes/>hasAttributes</a></p><p><a href=/js/element/id/>id</a></p><p><a href=/js/element/innerhtml/>innerHTML</a></p><p><a href=/js/element/insertadjacenthtml/>insertAdjacentHTML</a></p><p><a href=/js/element/localname/>localName</a></p><p><a href=/js/element/matches/>matches</a></p><p><a href=/js/element/namespaceuri/>namespaceURI</a></p><p><a href=/js/element/outerhtml/>outerHTML</a></p><p><a href=/js/element/prefix/>prefix</a></p><p><a href=/js/element/removeattribute/>removeAttribute</a></p><p><a href=/js/element/removeattributens/>removeAttributeNS</a></p><p><a href=/js/element/setattribute/>setAttribute</a></p><p><a href=/js/element/setattributens/>setAttributeNS</a></p><p><a href=/js/element/shadowroot/>shadowRoot</a></p><p><a href=/js/element/slot/>slot</a></p><p><a href=/js/element/tagname/>tagName</a></p><p><a href=/js/element/toggleattribute/>toggleAttribute</a></p></div><h2 id=event><a href=#event>Event</a></h2><div class=margin><p><a href=/js/event/bubbles/>bubbles</a></p><p><a href=/js/event/cancelable/>cancelable</a></p><p><a href=/js/event/composed/>composed</a></p><p><a href=/js/event/composedpath/>composedPath</a></p><p><a href=/js/event/currenttarget/>currentTarget</a></p><p><a href=/js/event/defaultprevented/>defaultPrevented</a></p><p><a href=/js/event/event/>Event</a></p><p><a href=/js/event/eventphase/>eventPhase</a></p><p><a href=/js/event/istrusted/>isTrusted</a></p><p><a href=/js/event/preventdefault/>preventDefault</a></p><p><a href=/js/event/stopimmediatepropagation/>stopImmediatePropagation</a></p><p><a href=/js/event/stoppropagation/>stopPropagation</a></p><p><a href=/js/event/target/>target</a></p><p><a href=/js/event/timestamp/>timeStamp</a></p><p><a href=/js/event/type/>type</a></p></div><h2 id=eventtarget><a href=#eventtarget>EventTarget</a></h2><div class=margin><p><a href=/js/eventtarget/addeventlistener/>addEventListener</a></p><p><a href=/js/eventtarget/dispatchevent/>dispatchEvent</a></p><p><a href=/js/eventtarget/eventtarget/>EventTarget</a></p><p><a href=/js/eventtarget/removeeventlistener/>removeEventListener</a></p></div><h2 id=htmlcollection><a href=#htmlcollection>HTMLCollection</a></h2><div class=margin><p><a href=/js/htmlcollection/item/>item</a></p><p><a href=/js/htmlcollection/length/>length</a></p><p><a href=/js/htmlcollection/nameditem/>namedItem</a></p></div><h2 id=htmldialogelement><a href=#htmldialogelement>HTMLDialogElement</a></h2><div class=margin><p><a href=/js/htmldialogelement/close/>close</a></p><p><a href=/js/htmldialogelement/open/>open</a></p><p><a href=/js/htmldialogelement/returnvalue/>returnValue</a></p><p><a href=/js/htmldialogelement/show/>show</a></p><p><a href=/js/htmldialogelement/showmodal/>showModal</a></p></div><h2 id=htmlvideoelement><a href=#htmlvideoelement>HTMLVideoElement</a></h2><div class=margin><p><a href=/js/htmlvideoelement/autopictureinpicture/>autoPictureInPicture</a></p><p><a href=/js/htmlvideoelement/disablepictureinpicture/>disablePictureInPicture</a></p><p><a href=/js/htmlvideoelement/requestpictureinpicture/>requestPictureInPicture</a></p></div><h2 id=iterations><a href=#iterations>Iterations</a></h2><div class=margin><p><a href=/js/iterations/do-while/>do-while</a></p><p><a href=/js/iterations/for/>for</a></p><p><a href=/js/iterations/for-await-of/>for-await-of</a></p><p><a href=/js/iterations/for-in/>for-in</a></p><p><a href=/js/iterations/for-of/>for-of</a></p><p><a href=/js/iterations/while/>while</a></p></div><h2 id=mutationobserver><a href=#mutationobserver>MutationObserver</a></h2><div class=margin><p><a href=/js/mutationobserver/disconnect/>disconnect</a></p><p><a href=/js/mutationobserver/mutationobserver/>MutationObserver</a></p><p><a href=/js/mutationobserver/observe/>observe</a></p><p><a href=/js/mutationobserver/takerecords/>takeRecords</a></p></div><h2 id=mutationrecord><a href=#mutationrecord>MutationRecord</a></h2><div class=margin><p><a href=/js/mutationrecord/addednodes/>addedNodes</a></p><p><a href=/js/mutationrecord/attributename/>attributeName</a></p><p><a href=/js/mutationrecord/attributenamespace/>attributeNamespace</a></p><p><a href=/js/mutationrecord/nextsibling/>nextSibling</a></p><p><a href=/js/mutationrecord/oldvalue/>oldValue</a></p><p><a href=/js/mutationrecord/previoussibling/>previousSibling</a></p><p><a href=/js/mutationrecord/removednodes/>removedNodes</a></p><p><a href=/js/mutationrecord/target/>target</a></p><p><a href=/js/mutationrecord/type/>type</a></p></div><h2 id=node><a href=#node>Node</a></h2><div class=margin><p><a href=/js/node/baseuri/>baseURI</a></p><p><a href=/js/node/childnodes/>childNodes</a></p><p><a href=/js/node/clonenode/>cloneNode</a></p><p><a href=/js/node/comparedocumentposition/>compareDocumentPosition</a></p><p><a href=/js/node/contains/>contains</a></p><p><a href=/js/node/firstchild/>firstChild</a></p><p><a href=/js/node/getrootnode/>getRootNode</a></p><p><a href=/js/node/haschildnodes/>hasChildNodes</a></p><p><a href=/js/node/isconnected/>isConnected</a></p><p><a href=/js/node/isequalnode/>isEqualNode</a></p><p><a href=/js/node/lastchild/>lastChild</a></p><p><a href=/js/node/nextsibling/>nextSibling</a></p><p><a href=/js/node/nodename/>nodeName</a></p><p><a href=/js/node/nodetype/>nodeType</a></p><p><a href=/js/node/normalize/>normalize</a></p><p><a href=/js/node/ownerdocument/>ownerDocument</a></p><p><a href=/js/node/parentelement/>parentElement</a></p><p><a href=/js/node/parentnode/>parentNode</a></p><p><a href=/js/node/previoussibling/>previousSibling</a></p></div><h2 id=nodelist><a href=#nodelist>NodeList</a></h2><div class=margin><p><a href=/js/nodelist/item/>item</a></p><p><a href=/js/nodelist/length/>length</a></p></div><h2 id=nondocumenttypechildnode><a href=#nondocumenttypechildnode>NonDocumentTypeChildNode</a></h2><div class=margin><p><a href=/js/nondocumenttypechildnode/nextelementsibling/>nextElementSibling</a></p><p><a href=/js/nondocumenttypechildnode/previouselementsibling/>previousElementSibling</a></p></div><h2 id=nonelementparentnode><a href=#nonelementparentnode>NonElementParentNode</a></h2><div class=margin><p><a href=/js/nonelementparentnode/getelementbyid/>getElementById</a></p></div><h2 id=parentnode><a href=#parentnode>ParentNode</a></h2><div class=margin><p><a href=/js/parentnode/append/>append</a></p><p><a href=/js/parentnode/children/>children</a></p><p><a href=/js/parentnode/firstelementchild/>firstElementChild</a></p><p><a href=/js/parentnode/lastelementchild/>lastElementChild</a></p><p><a href=/js/parentnode/prepend/>prepend</a></p><p><a href=/js/parentnode/queryselector/>querySelector</a></p><p><a href=/js/parentnode/queryselectorall/>querySelectorAll</a></p><p><a href=/js/parentnode/replacechildren/>replaceChildren</a></p></div><h2 id=prompts><a href=#prompts>Prompts</a></h2><div class=margin><p><a href=/js/prompts/alert/>alert</a></p><p><a href=/js/prompts/confirm/>confirm</a></p><p><a href=/js/prompts/prompt/>prompt</a></p></div><h2 id=range><a href=#range>Range</a></h2><div class=margin><p><a href=/js/range/commonancestorcontainer/>commonAncestorContainer</a></p><p><a href=/js/range/comparepoint/>comparePoint</a></p><p><a href=/js/range/createcontextualfragment/>createContextualFragment</a></p><p><a href=/js/range/intersectsnode/>intersectsNode</a></p><p><a href=/js/range/range/>Range</a></p></div><h2 id=slottable><a href=#slottable>Slottable</a></h2><div class=margin><p><a href=/js/slottable/assignedslot/>assignedSlot</a></p></div><h2 id=statements><a href=#statements>Statements</a></h2><div class=margin><p><a href=/js/statements/if/>if</a></p><p><a href=/js/statements/switch/>switch</a></p><p><a href=/js/statements/try/>try</a></p></div><h2 id=staticrange><a href=#staticrange>StaticRange</a></h2><div class=margin><p><a href=/js/staticrange/staticrange/>StaticRange</a></p></div><h2 id=text><a href=#text>Text</a></h2><div class=margin><p><a href=/js/text/splittext/>splitText</a></p><p><a href=/js/text/text/>Text</a></p><p><a href=/js/text/wholetext/>wholeText</a></p></div><h2 id=other><a href=#other>Other</a></h2><div class=margin><p><a href=/js/array/>Array</a></p><p><a href=/js/comments/>Comments</a></p><p><a href=/js/date/>Date</a></p><p><a href=/js/enable/>Enable</a></p><p><a href=/js/functions/>Functions</a></p><p><a href=/js/infinity/>Infinity</a></p><p><a href=/js/print/>print</a></p></div></div><div class=nav-h1><a id=nav-switch-php>PHP</a></div><div id=nav-content-php><h2 id=overview><a href=#overview>Overview</a></h2><div class=margin><p><a href=/php/>Overview</a></p></div><h2 id=array><a href=#array>Array</a></h2><div class=margin><p><a href=/php/array/array/>array</a></p><p><a href=/php/array/array_change_key_case/>array_change_key_case</a></p><p><a href=/php/array/array_chunk/>array_chunk</a></p><p><a href=/php/array/array_column/>array_column</a></p><p><a href=/php/array/array_combine/>array_combine</a></p><p><a href=/php/array/array_count_values/>array_count_values</a></p><p><a href=/php/array/array_diff/>array_diff</a></p><p><a href=/php/array/array_diff_assoc/>array_diff_assoc</a></p><p><a href=/php/array/array_diff_key/>array_diff_key</a></p><p><a href=/php/array/array_diff_uassoc/>array_diff_uassoc</a></p><p><a href=/php/array/array_diff_ukey/>array_diff_ukey</a></p><p><a href=/php/array/array_fill/>array_fill</a></p><p><a href=/php/array/array_fill_keys/>array_fill_keys</a></p><p><a href=/php/array/array_filter/>array_filter</a></p><p><a href=/php/array/array_flip/>array_flip</a></p><p><a href=/php/array/array_intersect/>array_intersect</a></p><p><a href=/php/array/array_intersect_assoc/>array_intersect_assoc</a></p><p><a href=/php/array/array_intersect_key/>array_intersect_key</a></p><p><a href=/php/array/array_intersect_uassoc/>array_intersect_uassoc</a></p><p><a href=/php/array/array_intersect_ukey/>array_intersect_ukey</a></p><p><a href=/php/array/array_key_exists/>array_key_exists</a></p><p><a href=/php/array/array_key_first/>array_key_first</a></p><p><a href=/php/array/array_key_last/>array_key_last</a></p><p><a href=/php/array/array_keys/>array_keys</a></p><p><a href=/php/array/array_map/>array_map</a></p><p><a href=/php/array/array_merge/>array_merge</a></p><p><a href=/php/array/array_merge_recursive/>array_merge_recursive</a></p><p><a href=/php/array/array_multisort/>array_multisort</a></p><p><a href=/php/array/array_pad/>array_pad</a></p><p><a href=/php/array/array_pop/>array_pop</a></p><p><a href=/php/array/array_product/>array_product</a></p><p><a href=/php/array/array_push/>array_push</a></p><p><a href=/php/array/array_rand/>array_rand</a></p><p><a href=/php/array/array_reduce/>array_reduce</a></p><p><a href=/php/array/array_replace/>array_replace</a></p><p><a href=/php/array/array_replace_recursive/>array_replace_recursive</a></p><p><a href=/php/array/array_reverse/>array_reverse</a></p><p><a href=/php/array/array_search/>array_search</a></p><p><a href=/php/array/array_shift/>array_shift</a></p><p><a href=/php/array/array_slice/>array_slice</a></p><p><a href=/php/array/array_splice/>array_splice</a></p><p><a href=/php/array/array_sum/>array_sum</a></p><p><a href=/php/array/array_udiff/>array_udiff</a></p><p><a href=/php/array/array_udiff_assoc/>array_udiff_assoc</a></p><p><a href=/php/array/array_udiff_uassoc/>array_udiff_uassoc</a></p><p><a href=/php/array/array_uintersect/>array_uintersect</a></p><p><a href=/php/array/array_uintersect_assoc/>array_uintersect_assoc</a></p><p><a href=/php/array/array_uintersect_uassoc/>array_uintersect_uassoc</a></p><p><a href=/php/array/array_unique/>array_unique</a></p><p><a href=/php/array/array_unshift/>array_unshift</a></p><p><a href=/php/array/array_values/>array_values</a></p><p><a href=/php/array/array_walk/>array_walk</a></p><p><a href=/php/array/array_walk_recursive/>array_walk_recursive</a></p><p><a href=/php/array/arsort/>arsort</a></p><p><a href=/php/array/asort/>asort</a></p><p><a href=/php/array/compact/>compact</a></p><p><a href=/php/array/count/>count</a></p><p><a href=/php/array/current/>current</a></p><p><a href=/php/array/end/>end</a></p><p><a href=/php/array/extract/>extract</a></p><p><a href=/php/array/in_array/>in_array</a></p><p><a href=/php/array/key/>key</a></p><p><a href=/php/array/key_exists/>key_exists</a></p><p><a href=/php/array/krsort/>krsort</a></p><p><a href=/php/array/ksort/>ksort</a></p><p><a href=/php/array/list/>list</a></p><p><a href=/php/array/natcasesort/>natcasesort</a></p><p><a href=/php/array/natsort/>natsort</a></p><p><a href=/php/array/next/>next</a></p><p><a href=/php/array/pos/>pos</a></p><p><a href=/php/array/prev/>prev</a></p><p><a href=/php/array/range/>range</a></p><p><a href=/php/array/reset/>reset</a></p><p><a href=/php/array/rsort/>rsort</a></p><p><a href=/php/array/shuffle/>shuffle</a></p><p><a href=/php/array/sizeof/>sizeof</a></p><p><a href=/php/array/sort/>sort</a></p><p><a href=/php/array/uasort/>uasort</a></p><p><a href=/php/array/uksort/>uksort</a></p><p><a href=/php/array/usort/>usort</a></p></div><h2 id=calendar><a href=#calendar>Calendar</a></h2><div class=margin><p><a href=/php/calendar/cal_days_in_month/>cal_days_in_month</a></p><p><a href=/php/calendar/cal_from_jd/>cal_from_jd</a></p><p><a href=/php/calendar/cal_info/>cal_info</a></p><p><a href=/php/calendar/cal_to_jd/>cal_to_jd</a></p><p><a href=/php/calendar/easter_date/>easter_date</a></p><p><a href=/php/calendar/easter_days/>easter_days</a></p><p><a href=/php/calendar/frenchtojd/>frenchtojd</a></p><p><a href=/php/calendar/gregoriantojd/>gregoriantojd</a></p><p><a href=/php/calendar/jddayofweek/>jddayofweek</a></p><p><a href=/php/calendar/jdmonthname/>jdmonthname</a></p><p><a href=/php/calendar/jdtofrench/>jdtofrench</a></p><p><a href=/php/calendar/jdtogregorian/>jdtogregorian</a></p><p><a href=/php/calendar/jdtojewish/>jdtojewish</a></p><p><a href=/php/calendar/jdtojulian/>jdtojulian</a></p><p><a href=/php/calendar/jdtounix/>jdtounix</a></p><p><a href=/php/calendar/jewishtojd/>jewishtojd</a></p><p><a href=/php/calendar/juliantojd/>juliantojd</a></p><p><a href=/php/calendar/unixtojd/>unixtojd</a></p></div><h2 id=class-/-object><a href=#class-/-object>Class / Object</a></h2><div class=margin><p><a href=/php/class-object/class_alias/>class_alias</a></p><p><a href=/php/class-object/class_exists/>class_exists</a></p><p><a href=/php/class-object/get_called_class/>get_called_class</a></p><p><a href=/php/class-object/get_class/>get_class</a></p><p><a href=/php/class-object/get_class_methods/>get_class_methods</a></p><p><a href=/php/class-object/get_class_vars/>get_class_vars</a></p><p><a href=/php/class-object/get_declared_classes/>get_declared_classes</a></p><p><a href=/php/class-object/get_declared_interfaces/>get_declared_interfaces</a></p><p><a href=/php/class-object/get_declared_traits/>get_declared_traits</a></p><p><a href=/php/class-object/get_object_vars/>get_object_vars</a></p><p><a href=/php/class-object/get_parent_class/>get_parent_class</a></p><p><a href=/php/class-object/interface_exists/>interface_exists</a></p><p><a href=/php/class-object/is_a/>is_a</a></p><p><a href=/php/class-object/is_subclass_of/>is_subclass_of</a></p><p><a href=/php/class-object/method_exists/>method_exists</a></p><p><a href=/php/class-object/property_exists/>property_exists</a></p><p><a href=/php/class-object/trait_exists/>trait_exists</a></p></div><h2 id=ctype><a href=#ctype>Ctype</a></h2><div class=margin><p><a href=/php/ctype/ctype_alnum/>ctype_alnum</a></p><p><a href=/php/ctype/ctype_alpha/>ctype_alpha</a></p><p><a href=/php/ctype/ctype_cntrl/>ctype_cntrl</a></p><p><a href=/php/ctype/ctype_digit/>ctype_digit</a></p><p><a href=/php/ctype/ctype_graph/>ctype_graph</a></p><p><a href=/php/ctype/ctype_lower/>ctype_lower</a></p><p><a href=/php/ctype/ctype_print/>ctype_print</a></p><p><a href=/php/ctype/ctype_punct/>ctype_punct</a></p><p><a href=/php/ctype/ctype_space/>ctype_space</a></p><p><a href=/php/ctype/ctype_upper/>ctype_upper</a></p><p><a href=/php/ctype/ctype_xdigit/>ctype_xdigit</a></p></div><h2 id=curl><a href=#curl>cURL</a></h2><div class=margin><p><a href=/php/curl/curl_close/>curl_close</a></p><p><a href=/php/curl/curl_copy_handle/>curl_copy_handle</a></p><p><a href=/php/curl/curl_errno/>curl_errno</a></p><p><a href=/php/curl/curl_error/>curl_error</a></p><p><a href=/php/curl/curl_escape/>curl_escape</a></p><p><a href=/php/curl/curl_exec/>curl_exec</a></p><p><a href=/php/curl/curl_getinfo/>curl_getinfo</a></p><p><a href=/php/curl/curl_init/>curl_init</a></p><p><a href=/php/curl/curl_multi_add_handle/>curl_multi_add_handle</a></p><p><a href=/php/curl/curl_multi_close/>curl_multi_close</a></p><p><a href=/php/curl/curl_multi_errno/>curl_multi_errno</a></p><p><a href=/php/curl/curl_multi_exec/>curl_multi_exec</a></p><p><a href=/php/curl/curl_multi_getcontent/>curl_multi_getcontent</a></p><p><a href=/php/curl/curl_multi_info_read/>curl_multi_info_read</a></p><p><a href=/php/curl/curl_multi_init/>curl_multi_init</a></p><p><a href=/php/curl/curl_multi_remove_handle/>curl_multi_remove_handle</a></p><p><a href=/php/curl/curl_multi_select/>curl_multi_select</a></p><p><a href=/php/curl/curl_multi_setopt/>curl_multi_setopt</a></p><p><a href=/php/curl/curl_multi_strerror/>curl_multi_strerror</a></p><p><a href=/php/curl/curl_pause/>curl_pause</a></p><p><a href=/php/curl/curl_reset/>curl_reset</a></p><p><a href=/php/curl/curl_setopt/>curl_setopt</a></p><p><a href=/php/curl/curl_setopt_array/>curl_setopt_array</a></p><p><a href=/php/curl/curl_share_close/>curl_share_close</a></p><p><a href=/php/curl/curl_share_errno/>curl_share_errno</a></p><p><a href=/php/curl/curl_share_init/>curl_share_init</a></p><p><a href=/php/curl/curl_share_setopt/>curl_share_setopt</a></p><p><a href=/php/curl/curl_share_strerror/>curl_share_strerror</a></p><p><a href=/php/curl/curl_strerror/>curl_strerror</a></p><p><a href=/php/curl/curl_unescape/>curl_unescape</a></p><p><a href=/php/curl/curl_upkeep/>curl_upkeep</a></p><p><a href=/php/curl/curl_version/>curl_version</a></p></div><h2 id=date-/-time><a href=#date-/-time>Date / Time</a></h2><div class=margin><p><a href=/php/date-time/checkdate/>checkdate</a></p><p><a href=/php/date-time/date/>date</a></p><p><a href=/php/date-time/date_add/>date_add</a></p><p><a href=/php/date-time/date_create/>date_create</a></p><p><a href=/php/date-time/date_create_from_format/>date_create_from_format</a></p><p><a href=/php/date-time/date_create_immutable/>date_create_immutable</a></p><p><a href=/php/date-time/date_create_immutable_from_format/>date_create_immutable_from_format</a></p><p><a href=/php/date-time/date_date_set/>date_date_set</a></p><p><a href=/php/date-time/date_default_timezone_get/>date_default_timezone_get</a></p><p><a href=/php/date-time/date_default_timezone_set/>date_default_timezone_set</a></p><p><a href=/php/date-time/date_diff/>date_diff</a></p><p><a href=/php/date-time/date_format/>date_format</a></p><p><a href=/php/date-time/date_get_last_errors/>date_get_last_errors</a></p><p><a href=/php/date-time/date_interval_create_from_date_string/>date_interval_create_from_date_string</a></p><p><a href=/php/date-time/date_interval_format/>date_interval_format</a></p><p><a href=/php/date-time/date_isodate_set/>date_isodate_set</a></p><p><a href=/php/date-time/date_modify/>date_modify</a></p><p><a href=/php/date-time/date_offset_get/>date_offset_get</a></p><p><a href=/php/date-time/date_parse/>date_parse</a></p><p><a href=/php/date-time/date_parse_from_format/>date_parse_from_format</a></p><p><a href=/php/date-time/date_sub/>date_sub</a></p><p><a href=/php/date-time/date_sun_info/>date_sun_info</a></p><p><a href=/php/date-time/date_sunrise/>date_sunrise</a></p><p><a href=/php/date-time/date_sunset/>date_sunset</a></p><p><a href=/php/date-time/date_time_set/>date_time_set</a></p><p><a href=/php/date-time/date_timestamp_get/>date_timestamp_get</a></p><p><a href=/php/date-time/date_timestamp_set/>date_timestamp_set</a></p><p><a href=/php/date-time/date_timezone_get/>date_timezone_get</a></p><p><a href=/php/date-time/date_timezone_set/>date_timezone_set</a></p><p><a href=/php/date-time/getdate/>getdate</a></p><p><a href=/php/date-time/gettimeofday/>gettimeofday</a></p><p><a href=/php/date-time/gmdate/>gmdate</a></p><p><a href=/php/date-time/gmmktime/>gmmktime</a></p><p><a href=/php/date-time/gmstrftime/>gmstrftime</a></p><p><a href=/php/date-time/idate/>idate</a></p><p><a href=/php/date-time/localtime/>localtime</a></p><p><a href=/php/date-time/microtime/>microtime</a></p><p><a href=/php/date-time/mktime/>mktime</a></p><p><a href=/php/date-time/strftime/>strftime</a></p><p><a href=/php/date-time/strptime/>strptime</a></p><p><a href=/php/date-time/strtotime/>strtotime</a></p><p><a href=/php/date-time/time/>time</a></p><p><a href=/php/date-time/timezone_abbreviations_list/>timezone_abbreviations_list</a></p><p><a href=/php/date-time/timezone_identifiers_list/>timezone_identifiers_list</a></p><p><a href=/php/date-time/timezone_location_get/>timezone_location_get</a></p><p><a href=/php/date-time/timezone_name_from_abbr/>timezone_name_from_abbr</a></p><p><a href=/php/date-time/timezone_name_get/>timezone_name_get</a></p><p><a href=/php/date-time/timezone_offset_get/>timezone_offset_get</a></p><p><a href=/php/date-time/timezone_open/>timezone_open</a></p><p><a href=/php/date-time/timezone_transitions_get/>timezone_transitions_get</a></p><p><a href=/php/date-time/timezone_version_get/>timezone_version_get</a></p></div><h2 id=directory><a href=#directory>Directory</a></h2><div class=margin><p><a href=/php/directory/chdir/>chdir</a></p><p><a href=/php/directory/chroot/>chroot</a></p><p><a href=/php/directory/closedir/>closedir</a></p><p><a href=/php/directory/dir/>dir</a></p><p><a href=/php/directory/getcwd/>getcwd</a></p><p><a href=/php/directory/opendir/>opendir</a></p><p><a href=/php/directory/readdir/>readdir</a></p><p><a href=/php/directory/rewinddir/>rewinddir</a></p><p><a href=/php/directory/scandir/>scandir</a></p></div><h2 id=error-handling><a href=#error-handling>Error Handling</a></h2><div class=margin><p><a href=/php/error-handling/debug_backtrace/>debug_backtrace</a></p><p><a href=/php/error-handling/debug_print_backtrace/>debug_print_backtrace</a></p><p><a href=/php/error-handling/error_clear_last/>error_clear_last</a></p><p><a href=/php/error-handling/error_get_last/>error_get_last</a></p><p><a href=/php/error-handling/error_log/>error_log</a></p><p><a href=/php/error-handling/error_reporting/>error_reporting</a></p><p><a href=/php/error-handling/restore_error_handler/>restore_error_handler</a></p><p><a href=/php/error-handling/restore_exception_handler/>restore_exception_handler</a></p><p><a href=/php/error-handling/set_error_handler/>set_error_handler</a></p><p><a href=/php/error-handling/set_exception_handler/>set_exception_handler</a></p><p><a href=/php/error-handling/trigger_error/>trigger_error</a></p><p><a href=/php/error-handling/user_error/>user_error</a></p></div><h2 id=filesystem><a href=#filesystem>Filesystem</a></h2><div class=margin><p><a href=/php/filesystem/basename/>basename</a></p><p><a href=/php/filesystem/chgrp/>chgrp</a></p><p><a href=/php/filesystem/chmod/>chmod</a></p><p><a href=/php/filesystem/chown/>chown</a></p><p><a href=/php/filesystem/clearstatcache/>clearstatcache</a></p><p><a href=/php/filesystem/copy/>copy</a></p><p><a href=/php/filesystem/dirname/>dirname</a></p><p><a href=/php/filesystem/disk_free_space/>disk_free_space</a></p><p><a href=/php/filesystem/disk_total_space/>disk_total_space</a></p><p><a href=/php/filesystem/diskfreespace/>diskfreespace</a></p><p><a href=/php/filesystem/fclose/>fclose</a></p><p><