├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── integrate.yaml ├── appendices ├── about.xml ├── aliases.xml ├── comparisons.xml ├── configure │ ├── index.xml │ ├── misc.xml │ ├── php.xml │ └── servers.xml ├── debugger.xml ├── filters.xml ├── history.xml ├── ini.core.xml ├── ini.list.xml ├── ini.sections.xml ├── ini.xml ├── migration56.xml ├── migration56 │ ├── changed-functions.xml │ ├── constants.xml │ ├── deprecated.xml │ ├── extensions.xml │ ├── incompatible.xml │ ├── new-features.xml │ ├── new-functions.xml │ └── openssl.xml ├── migration70.xml ├── migration70 │ ├── changed-functions.xml │ ├── classes.xml │ ├── constants.xml │ ├── deprecated.xml │ ├── incompatible.xml │ ├── incompatible │ │ ├── error-handling.xml │ │ ├── foreach.xml │ │ ├── integers.xml │ │ ├── other.xml │ │ ├── removed-functions.xml │ │ ├── removed-ini-directives.xml │ │ ├── strings.xml │ │ └── variable-handling.xml │ ├── new-features.xml │ ├── new-functions.xml │ ├── other-changes.xml │ ├── removed-exts-sapis.xml │ └── sapi-changes.xml ├── migration71.xml ├── migration71 │ ├── changed-functions.xml │ ├── constants.xml │ ├── deprecated.xml │ ├── incompatible.xml │ ├── new-features.xml │ ├── new-functions.xml │ ├── other-changes.xml │ └── windows-support.xml ├── migration72.xml ├── migration72 │ ├── constants.xml │ ├── deprecated.xml │ ├── incompatible.xml │ ├── new-features.xml │ ├── new-functions.xml │ └── other-changes.xml ├── migration73.xml ├── migration73 │ ├── constants.xml │ ├── deprecated.xml │ ├── incompatible.xml │ ├── new-features.xml │ ├── new-functions.xml │ ├── other-changes.xml │ └── windows-support.xml ├── migration74.xml ├── migration74 │ ├── constants.xml │ ├── deprecated.xml │ ├── incompatible.xml │ ├── new-classes.xml │ ├── new-features.xml │ ├── new-functions.xml │ ├── other-changes.xml │ ├── removed-extensions.xml │ └── windows-support.xml ├── migration80.xml ├── migration80 │ ├── deprecated.xml │ ├── incompatible.xml │ ├── new-classes.xml │ ├── new-features.xml │ └── other-changes.xml ├── migration81.xml ├── migration81 │ ├── constants.xml │ ├── deprecated.xml │ ├── incompatible.xml │ ├── new-classes.xml │ ├── new-features.xml │ ├── new-functions.xml │ └── other-changes.xml ├── migration82.xml ├── migration82 │ ├── constants.xml │ ├── deprecated.xml │ ├── incompatible.xml │ ├── new-features.xml │ ├── new-functions.xml │ ├── other-changes.xml │ └── windows-support.xml ├── migration83.xml ├── migration83 │ ├── constants.xml │ ├── deprecated.xml │ ├── incompatible.xml │ ├── new-classes.xml │ ├── new-features.xml │ ├── new-functions.xml │ ├── other-changes.xml │ └── windows-support.xml ├── reserved.constants.core.xml ├── reserved.constants.standard.xml ├── reserved.xml ├── resources.xml ├── tokens.xml ├── transports.xml └── userlandnaming.xml ├── bookinfo.xml ├── chapters ├── intro.xml └── tutorial.xml ├── chmonly └── aboutchm.xml ├── extensions.ent ├── faq ├── build.xml ├── com.xml ├── databases.xml ├── general.xml ├── html.xml ├── installation.xml ├── mailinglist.xml ├── misc.xml ├── obtaining.xml ├── passwords.xml └── using.xml ├── features ├── commandline.xml ├── connection-handling.xml ├── cookies.xml ├── dtrace.xml ├── file-upload.xml ├── gc.xml ├── http-auth.xml ├── persistent-connections.xml ├── remote-files.xml └── sessions.xml ├── install ├── cloud │ ├── azure.xml │ ├── digitalocean.xml │ ├── ec2.xml │ └── index.xml ├── fpm │ ├── configuration.xml │ ├── index.xml │ └── install.xml ├── ini.xml ├── intro.xml ├── macos │ ├── bundled.xml │ ├── compile.xml │ ├── index.xml │ └── packages.xml ├── pecl.xml ├── problems.xml ├── unix │ ├── apache2.xml │ ├── commandline.xml │ ├── debian.xml │ ├── index.xml │ ├── lighttpd-14.xml │ ├── litespeed.xml │ ├── nginx.xml │ ├── openbsd.xml │ └── solaris.xml └── windows │ ├── apache2.xml │ ├── building.xml │ ├── commandline.xml │ ├── index.xml │ ├── manual.xml │ ├── recommended.xml │ └── tools.xml ├── language-defs.ent ├── language-snippets.ent ├── language ├── attributes.xml ├── basic-syntax.xml ├── constants.xml ├── context.xml ├── context │ ├── ftp.xml │ ├── http.xml │ ├── parameters.xml │ ├── phar.xml │ ├── socket.xml │ ├── ssl.xml │ ├── zip.xml │ └── zlib.xml ├── control-structures.xml ├── control-structures │ ├── alternative-syntax.xml │ ├── break.xml │ ├── continue.xml │ ├── declare.xml │ ├── do-while.xml │ ├── else.xml │ ├── elseif.xml │ ├── for.xml │ ├── foreach.xml │ ├── goto.xml │ ├── if.xml │ ├── include-once.xml │ ├── include.xml │ ├── match.xml │ ├── require-once.xml │ ├── require.xml │ ├── return.xml │ ├── switch.xml │ └── while.xml ├── enumerations.xml ├── errors.xml ├── errors │ ├── basics.xml │ └── php7.xml ├── exceptions.xml ├── expressions.xml ├── fibers.xml ├── functions.xml ├── generators.xml ├── namespaces.xml ├── oop5.xml ├── oop5 │ ├── abstract.xml │ ├── anonymous.xml │ ├── autoload.xml │ ├── basic.xml │ ├── changelog.xml │ ├── cloning.xml │ ├── constants.xml │ ├── decon.xml │ ├── final.xml │ ├── inheritance.xml │ ├── interfaces.xml │ ├── iterations.xml │ ├── late-static-bindings.xml │ ├── magic.xml │ ├── object-comparison.xml │ ├── overloading.xml │ ├── paamayim-nekudotayim.xml │ ├── properties.xml │ ├── references.xml │ ├── serialization.xml │ ├── static.xml │ ├── traits.xml │ ├── variance.xml │ └── visibility.xml ├── operators.xml ├── operators │ ├── arithmetic.xml │ ├── array.xml │ ├── assignment.xml │ ├── bitwise.xml │ ├── comparison.xml │ ├── errorcontrol.xml │ ├── execution.xml │ ├── increment.xml │ ├── logical.xml │ ├── precedence.xml │ ├── string.xml │ └── type.xml ├── predefined │ ├── allowdynamicproperties │ │ └── construct.xml │ ├── argumentcounterror.xml │ ├── arithmeticerror.xml │ ├── arrayaccess.xml │ ├── arrayaccess │ │ ├── offsetexists.xml │ │ ├── offsetget.xml │ │ ├── offsetset.xml │ │ └── offsetunset.xml │ ├── assertionerror.xml │ ├── attribute │ │ └── construct.xml │ ├── attributes.xml │ ├── attributes │ │ ├── allowdynamicproperties.xml │ │ ├── attribute.xml │ │ ├── deprecated.xml │ │ ├── deprecated │ │ │ └── construct.xml │ │ ├── override.xml │ │ ├── override │ │ │ └── construct.xml │ │ ├── returntypewillchange.xml │ │ └── sensitiveparameter.xml │ ├── backedenum.xml │ ├── backedenum │ │ ├── from.xml │ │ └── tryfrom.xml │ ├── closedgeneratorexception.xml │ ├── closure.xml │ ├── closure │ │ ├── bind.xml │ │ ├── bindto.xml │ │ ├── call.xml │ │ ├── construct.xml │ │ └── fromcallable.xml │ ├── compileerror.xml │ ├── countable │ │ └── count.xml │ ├── divisionbyzeroerror.xml │ ├── error.xml │ ├── error │ │ ├── clone.xml │ │ ├── construct.xml │ │ ├── getcode.xml │ │ ├── getfile.xml │ │ ├── getline.xml │ │ ├── getmessage.xml │ │ ├── getprevious.xml │ │ ├── gettrace.xml │ │ ├── gettraceasstring.xml │ │ └── tostring.xml │ ├── errorexception.xml │ ├── errorexception │ │ ├── construct.xml │ │ └── getseverity.xml │ ├── exception.xml │ ├── exception │ │ ├── clone.xml │ │ ├── construct.xml │ │ ├── getcode.xml │ │ ├── getfile.xml │ │ ├── getline.xml │ │ ├── getmessage.xml │ │ ├── getprevious.xml │ │ ├── gettrace.xml │ │ ├── gettraceasstring.xml │ │ └── tostring.xml │ ├── exceptions.xml │ ├── fiber.xml │ ├── fiber │ │ ├── construct.xml │ │ ├── getcurrent.xml │ │ ├── getreturn.xml │ │ ├── isrunning.xml │ │ ├── isstarted.xml │ │ ├── issuspended.xml │ │ ├── isterminated.xml │ │ ├── resume.xml │ │ ├── start.xml │ │ ├── suspend.xml │ │ └── throw.xml │ ├── fibererror.xml │ ├── fibererror │ │ └── construct.xml │ ├── generator.xml │ ├── generator │ │ ├── current.xml │ │ ├── getreturn.xml │ │ ├── key.xml │ │ ├── next.xml │ │ ├── rewind.xml │ │ ├── send.xml │ │ ├── throw.xml │ │ ├── valid.xml │ │ └── wakeup.xml │ ├── interfaces.xml │ ├── internaliterator.xml │ ├── internaliterator │ │ ├── construct.xml │ │ ├── current.xml │ │ ├── key.xml │ │ ├── next.xml │ │ ├── rewind.xml │ │ └── valid.xml │ ├── iterator.xml │ ├── iterator │ │ ├── current.xml │ │ ├── key.xml │ │ ├── next.xml │ │ ├── rewind.xml │ │ └── valid.xml │ ├── iteratoraggregate.xml │ ├── iteratoraggregate │ │ └── getiterator.xml │ ├── parseerror.xml │ ├── php-incomplete-class.xml │ ├── returntypewillchange │ │ └── construct.xml │ ├── sensitiveparameter │ │ └── construct.xml │ ├── sensitiveparametervalue.xml │ ├── sensitiveparametervalue │ │ ├── construct.xml │ │ ├── debuginfo.xml │ │ └── getvalue.xml │ ├── serializable.xml │ ├── serializable │ │ ├── serialize.xml │ │ └── unserialize.xml │ ├── stdclass.xml │ ├── stringable.xml │ ├── stringable │ │ └── tostring.xml │ ├── throwable.xml │ ├── throwable │ │ ├── getcode.xml │ │ ├── getfile.xml │ │ ├── getline.xml │ │ ├── getmessage.xml │ │ ├── getprevious.xml │ │ ├── gettrace.xml │ │ ├── gettraceasstring.xml │ │ └── tostring.xml │ ├── traversable.xml │ ├── typeerror.xml │ ├── unhandledmatcherror.xml │ ├── unitenum.xml │ ├── unitenum │ │ └── cases.xml │ ├── valueerror.xml │ ├── variables.xml │ ├── variables │ │ ├── argc.xml │ │ ├── argv.xml │ │ ├── cookie.xml │ │ ├── env.xml │ │ ├── files.xml │ │ ├── get.xml │ │ ├── globals.xml │ │ ├── httpresponseheader.xml │ │ ├── phperrormsg.xml │ │ ├── post.xml │ │ ├── request.xml │ │ ├── server.xml │ │ ├── session.xml │ │ └── superglobals.xml │ ├── weakmap.xml │ ├── weakmap │ │ ├── count.xml │ │ ├── getiterator.xml │ │ ├── offsetexists.xml │ │ ├── offsetget.xml │ │ ├── offsetset.xml │ │ └── offsetunset.xml │ ├── weakreference.xml │ └── weakreference │ │ ├── construct.xml │ │ ├── create.xml │ │ └── get.xml ├── references.xml ├── types.xml ├── types │ ├── array.xml │ ├── boolean.xml │ ├── callable.xml │ ├── declarations.xml │ ├── enumerations.xml │ ├── float.xml │ ├── integer.xml │ ├── iterable.xml │ ├── mixed.xml │ ├── never.xml │ ├── null.xml │ ├── numeric-strings.xml │ ├── object.xml │ ├── relative-class-types.xml │ ├── resource.xml │ ├── singleton.xml │ ├── string.xml │ ├── type-juggling.xml │ ├── type-system.xml │ └── void.xml ├── variables.xml ├── wrappers.xml └── wrappers │ ├── audio.xml │ ├── compression.xml │ ├── data.xml │ ├── expect.xml │ ├── file.xml │ ├── ftp.xml │ ├── glob.xml │ ├── http.xml │ ├── phar.xml │ ├── php.xml │ ├── rar.xml │ └── ssh2.xml ├── make_chm_index_de.html ├── preface.xml ├── reference ├── apache │ ├── book.xml │ ├── functions │ │ ├── apache-child-terminate.xml │ │ ├── apache-get-modules.xml │ │ ├── apache-get-version.xml │ │ ├── apache-getenv.xml │ │ ├── apache-lookup-uri.xml │ │ ├── apache-note.xml │ │ ├── apache-request-headers.xml │ │ ├── apache-response-headers.xml │ │ ├── apache-setenv.xml │ │ ├── getallheaders.xml │ │ └── virtual.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── array │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── array-change-key-case.xml │ │ ├── array-chunk.xml │ │ ├── array-column.xml │ │ ├── array-combine.xml │ │ ├── array-count-values.xml │ │ ├── array-diff-assoc.xml │ │ ├── array-diff-key.xml │ │ ├── array-diff-uassoc.xml │ │ ├── array-diff-ukey.xml │ │ ├── array-diff.xml │ │ ├── array-fill-keys.xml │ │ ├── array-fill.xml │ │ ├── array-filter.xml │ │ ├── array-flip.xml │ │ ├── array-intersect-assoc.xml │ │ ├── array-intersect-key.xml │ │ ├── array-intersect-uassoc.xml │ │ ├── array-intersect-ukey.xml │ │ ├── array-intersect.xml │ │ ├── array-is-list.xml │ │ ├── array-key-exists.xml │ │ ├── array-key-first.xml │ │ ├── array-key-last.xml │ │ ├── array-keys.xml │ │ ├── array-map.xml │ │ ├── array-merge-recursive.xml │ │ ├── array-merge.xml │ │ ├── array-multisort.xml │ │ ├── array-pad.xml │ │ ├── array-pop.xml │ │ ├── array-product.xml │ │ ├── array-push.xml │ │ ├── array-rand.xml │ │ ├── array-reduce.xml │ │ ├── array-replace-recursive.xml │ │ ├── array-replace.xml │ │ ├── array-reverse.xml │ │ ├── array-search.xml │ │ ├── array-shift.xml │ │ ├── array-slice.xml │ │ ├── array-splice.xml │ │ ├── array-sum.xml │ │ ├── array-udiff-assoc.xml │ │ ├── array-udiff-uassoc.xml │ │ ├── array-udiff.xml │ │ ├── array-uintersect-assoc.xml │ │ ├── array-uintersect-uassoc.xml │ │ ├── array-uintersect.xml │ │ ├── array-unique.xml │ │ ├── array-unshift.xml │ │ ├── array-values.xml │ │ ├── array-walk-recursive.xml │ │ ├── array-walk.xml │ │ ├── array.xml │ │ ├── arsort.xml │ │ ├── asort.xml │ │ ├── compact.xml │ │ ├── count.xml │ │ ├── current.xml │ │ ├── each.xml │ │ ├── end.xml │ │ ├── extract.xml │ │ ├── in-array.xml │ │ ├── key-exists.xml │ │ ├── key.xml │ │ ├── krsort.xml │ │ ├── ksort.xml │ │ ├── list.xml │ │ ├── natcasesort.xml │ │ ├── natsort.xml │ │ ├── next.xml │ │ ├── pos.xml │ │ ├── prev.xml │ │ ├── range.xml │ │ ├── reset.xml │ │ ├── rsort.xml │ │ ├── shuffle.xml │ │ ├── sizeof.xml │ │ ├── sort.xml │ │ ├── uasort.xml │ │ ├── uksort.xml │ │ └── usort.xml │ ├── reference.xml │ └── sorting.xml ├── bc │ ├── book.xml │ ├── configure.xml │ ├── functions │ │ ├── bcadd.xml │ │ ├── bccomp.xml │ │ ├── bcdiv.xml │ │ ├── bcmod.xml │ │ ├── bcmul.xml │ │ ├── bcpow.xml │ │ ├── bcpowmod.xml │ │ ├── bcscale.xml │ │ ├── bcsqrt.xml │ │ └── bcsub.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── bzip2 │ ├── book.xml │ ├── configure.xml │ ├── examples.xml │ ├── functions │ │ ├── bzclose.xml │ │ ├── bzcompress.xml │ │ ├── bzdecompress.xml │ │ ├── bzerrno.xml │ │ ├── bzerror.xml │ │ ├── bzerrstr.xml │ │ ├── bzflush.xml │ │ ├── bzopen.xml │ │ ├── bzread.xml │ │ └── bzwrite.xml │ ├── reference.xml │ └── setup.xml ├── calendar │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── cal-days-in-month.xml │ │ ├── cal-from-jd.xml │ │ ├── cal-info.xml │ │ ├── cal-to-jd.xml │ │ ├── easter-date.xml │ │ ├── easter-days.xml │ │ ├── frenchtojd.xml │ │ ├── gregoriantojd.xml │ │ ├── jddayofweek.xml │ │ ├── jdmonthname.xml │ │ ├── jdtofrench.xml │ │ ├── jdtogregorian.xml │ │ ├── jdtojewish.xml │ │ ├── jdtojulian.xml │ │ ├── jdtounix.xml │ │ ├── jewishtojd.xml │ │ ├── juliantojd.xml │ │ └── unixtojd.xml │ ├── reference.xml │ └── setup.xml ├── classobj │ ├── book.xml │ ├── examples.xml │ ├── functions │ │ ├── autoload.xml │ │ ├── class-alias.xml │ │ ├── class-exists.xml │ │ ├── enum-exists.xml │ │ ├── get-called-class.xml │ │ ├── get-class-methods.xml │ │ ├── get-class-vars.xml │ │ ├── get-class.xml │ │ ├── get-declared-classes.xml │ │ ├── get-declared-interfaces.xml │ │ ├── get-declared-traits.xml │ │ ├── get-mangled-object-vars.xml │ │ ├── get-object-vars.xml │ │ ├── get-parent-class.xml │ │ ├── interface-exists.xml │ │ ├── is-a.xml │ │ ├── is-subclass-of.xml │ │ ├── method-exists.xml │ │ ├── property-exists.xml │ │ └── trait-exists.xml │ └── reference.xml ├── com │ ├── com-exception.xml │ ├── com.xml │ ├── com │ │ └── construct.xml │ ├── functions │ │ └── com-load-typelib.xml │ ├── variant.xml │ └── variant │ │ └── construct.xml ├── ctype │ ├── book.xml │ ├── configure.xml │ ├── functions │ │ ├── ctype-alnum.xml │ │ ├── ctype-alpha.xml │ │ ├── ctype-cntrl.xml │ │ ├── ctype-digit.xml │ │ ├── ctype-graph.xml │ │ ├── ctype-lower.xml │ │ ├── ctype-print.xml │ │ ├── ctype-punct.xml │ │ ├── ctype-space.xml │ │ ├── ctype-upper.xml │ │ └── ctype-xdigit.xml │ ├── reference.xml │ └── setup.xml ├── curl │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── constants_curl_error.xml │ ├── constants_curl_getinfo.xml │ ├── constants_curl_multi.xml │ ├── constants_curl_multi_setopt.xml │ ├── constants_curl_pause.xml │ ├── constants_curl_setopt.xml │ ├── constants_curl_share_setopt.xml │ ├── constants_curlproto.xml │ ├── curlfile.xml │ ├── curlfile │ │ ├── construct.xml │ │ ├── getfilename.xml │ │ ├── getmimetype.xml │ │ ├── getpostfilename.xml │ │ ├── setmimetype.xml │ │ └── setpostfilename.xml │ ├── curlhandle.xml │ ├── curlmultihandle.xml │ ├── curlsharehandle.xml │ ├── curlstringfile.xml │ ├── curlstringfile │ │ └── construct.xml │ ├── examples.xml │ ├── functions │ │ ├── curl-close.xml │ │ ├── curl-copy-handle.xml │ │ ├── curl-errno.xml │ │ ├── curl-error.xml │ │ ├── curl-escape.xml │ │ ├── curl-exec.xml │ │ ├── curl-getinfo.xml │ │ ├── curl-init.xml │ │ ├── curl-multi-add-handle.xml │ │ ├── curl-multi-close.xml │ │ ├── curl-multi-errno.xml │ │ ├── curl-multi-exec.xml │ │ ├── curl-multi-getcontent.xml │ │ ├── curl-multi-info-read.xml │ │ ├── curl-multi-init.xml │ │ ├── curl-multi-remove-handle.xml │ │ ├── curl-multi-select.xml │ │ ├── curl-multi-setopt.xml │ │ ├── curl-multi-strerror.xml │ │ ├── curl-pause.xml │ │ ├── curl-reset.xml │ │ ├── curl-setopt-array.xml │ │ ├── curl-setopt.xml │ │ ├── curl-share-close.xml │ │ ├── curl-share-errno.xml │ │ ├── curl-share-init.xml │ │ ├── curl-share-setopt.xml │ │ ├── curl-share-strerror.xml │ │ ├── curl-strerror.xml │ │ ├── curl-unescape.xml │ │ ├── curl-upkeep.xml │ │ └── curl-version.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── datetime │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── dateerror.xml │ ├── dateexception.xml │ ├── dateinterval.xml │ ├── dateinterval │ │ ├── construct.xml │ │ ├── createfromdatestring.xml │ │ └── format.xml │ ├── dateinvalidoperationexception.xml │ ├── dateinvalidtimezoneexception.xml │ ├── datemalformedintervalstringexception.xml │ ├── datemalformedperiodstringexception.xml │ ├── datemalformedstringexception.xml │ ├── dateobjecterror.xml │ ├── dateperiod.xml │ ├── dateperiod │ │ ├── construct.xml │ │ ├── createfromiso8601string.xml │ │ ├── getdateinterval.xml │ │ ├── getenddate.xml │ │ ├── getrecurrences.xml │ │ └── getstartdate.xml │ ├── daterangeerror.xml │ ├── datetime.xml │ ├── datetime │ │ ├── add.xml │ │ ├── construct.xml │ │ ├── createfromformat.xml │ │ ├── createfromimmutable.xml │ │ ├── createfrominterface.xml │ │ ├── getlasterrors.xml │ │ ├── modify.xml │ │ ├── set-state.xml │ │ ├── setdate.xml │ │ ├── setisodate.xml │ │ ├── settime.xml │ │ ├── settimestamp.xml │ │ ├── settimezone.xml │ │ └── sub.xml │ ├── datetimeimmutable.xml │ ├── datetimeimmutable │ │ ├── add.xml │ │ ├── construct.xml │ │ ├── createfromformat.xml │ │ ├── createfrominterface.xml │ │ ├── createfrommutable.xml │ │ ├── getlasterrors.xml │ │ ├── modify.xml │ │ ├── set-state.xml │ │ ├── setdate.xml │ │ ├── setisodate.xml │ │ ├── settime.xml │ │ ├── settimestamp.xml │ │ ├── settimezone.xml │ │ └── sub.xml │ ├── datetimeinterface.xml │ ├── datetimeinterface │ │ ├── diff.xml │ │ ├── format.xml │ │ ├── getoffset.xml │ │ ├── gettimestamp.xml │ │ ├── gettimezone.xml │ │ └── wakeup.xml │ ├── datetimezone.xml │ ├── datetimezone │ │ ├── construct.xml │ │ ├── getlocation.xml │ │ ├── getname.xml │ │ ├── getoffset.xml │ │ ├── gettransitions.xml │ │ ├── listabbreviations.xml │ │ └── listidentifiers.xml │ ├── examples.xml │ ├── formats.xml │ ├── functions │ │ ├── checkdate.xml │ │ ├── date-add.xml │ │ ├── date-create-from-format.xml │ │ ├── date-create-immutable-from-format.xml │ │ ├── date-create-immutable.xml │ │ ├── date-create.xml │ │ ├── date-date-set.xml │ │ ├── date-default-timezone-get.xml │ │ ├── date-default-timezone-set.xml │ │ ├── date-diff.xml │ │ ├── date-format.xml │ │ ├── date-get-last-errors.xml │ │ ├── date-interval-create-from-date-string.xml │ │ ├── date-interval-format.xml │ │ ├── date-isodate-set.xml │ │ ├── date-modify.xml │ │ ├── date-offset-get.xml │ │ ├── date-parse-from-format.xml │ │ ├── date-parse.xml │ │ ├── date-sub.xml │ │ ├── date-sun-info.xml │ │ ├── date-sunrise.xml │ │ ├── date-sunset.xml │ │ ├── date-time-set.xml │ │ ├── date-timestamp-get.xml │ │ ├── date-timestamp-set.xml │ │ ├── date-timezone-get.xml │ │ ├── date-timezone-set.xml │ │ ├── date.xml │ │ ├── getdate.xml │ │ ├── gettimeofday.xml │ │ ├── gmdate.xml │ │ ├── gmmktime.xml │ │ ├── gmstrftime.xml │ │ ├── idate.xml │ │ ├── localtime.xml │ │ ├── microtime.xml │ │ ├── mktime.xml │ │ ├── strftime.xml │ │ ├── strptime.xml │ │ ├── strtotime.xml │ │ ├── time.xml │ │ ├── timezone-abbreviations-list.xml │ │ ├── timezone-identifiers-list.xml │ │ ├── timezone-location-get.xml │ │ ├── timezone-name-from-abbr.xml │ │ ├── timezone-name-get.xml │ │ ├── timezone-offset-get.xml │ │ ├── timezone-open.xml │ │ ├── timezone-transitions-get.xml │ │ └── timezone-version-get.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── dba │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── dba-close.xml │ │ ├── dba-delete.xml │ │ ├── dba-exists.xml │ │ ├── dba-fetch.xml │ │ ├── dba-firstkey.xml │ │ ├── dba-handlers.xml │ │ ├── dba-insert.xml │ │ ├── dba-key-split.xml │ │ ├── dba-list.xml │ │ ├── dba-nextkey.xml │ │ ├── dba-open.xml │ │ ├── dba-optimize.xml │ │ ├── dba-popen.xml │ │ ├── dba-replace.xml │ │ └── dba-sync.xml │ ├── reference.xml │ └── setup.xml ├── dbase │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── dbase-add-record.xml │ │ ├── dbase-close.xml │ │ ├── dbase-create.xml │ │ ├── dbase-delete-record.xml │ │ ├── dbase-get-header-info.xml │ │ ├── dbase-get-record-with-names.xml │ │ ├── dbase-get-record.xml │ │ ├── dbase-numfields.xml │ │ ├── dbase-numrecords.xml │ │ ├── dbase-open.xml │ │ ├── dbase-pack.xml │ │ └── dbase-replace-record.xml │ ├── reference.xml │ └── setup.xml ├── dio │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── dio-close.xml │ │ ├── dio-fcntl.xml │ │ ├── dio-open.xml │ │ ├── dio-read.xml │ │ ├── dio-seek.xml │ │ ├── dio-stat.xml │ │ ├── dio-tcsetattr.xml │ │ ├── dio-truncate.xml │ │ └── dio-write.xml │ ├── reference.xml │ └── setup.xml ├── dir │ ├── book.xml │ ├── constants.xml │ ├── directory.xml │ ├── directory │ │ ├── close.xml │ │ ├── read.xml │ │ └── rewind.xml │ ├── functions │ │ ├── chdir.xml │ │ ├── chroot.xml │ │ ├── closedir.xml │ │ ├── dir.xml │ │ ├── getcwd.xml │ │ ├── opendir.xml │ │ ├── readdir.xml │ │ ├── rewinddir.xml │ │ └── scandir.xml │ └── reference.xml ├── dom │ ├── book.xml │ ├── domelement.xml │ ├── domentityreference.xml │ ├── domexception.xml │ ├── domnotation.xml │ ├── domprocessinginstruction.xml │ ├── domxpath.xml │ └── functions │ │ └── dom-import-simplexml.xml ├── errorfunc │ ├── book.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── debug-backtrace.xml │ │ ├── debug-print-backtrace.xml │ │ ├── error-clear-last.xml │ │ ├── error-get-last.xml │ │ ├── error-log.xml │ │ ├── error-reporting.xml │ │ ├── restore-error-handler.xml │ │ ├── restore-exception-handler.xml │ │ ├── set-error-handler.xml │ │ ├── set-exception-handler.xml │ │ ├── trigger-error.xml │ │ └── user-error.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── event │ ├── eventbuffer │ │ └── write.xml │ └── eventbufferevent │ │ └── write.xml ├── exec │ ├── book.xml │ ├── functions │ │ ├── escapeshellarg.xml │ │ ├── escapeshellcmd.xml │ │ ├── exec.xml │ │ ├── passthru.xml │ │ ├── proc-close.xml │ │ ├── proc-get-status.xml │ │ ├── proc-nice.xml │ │ ├── proc-open.xml │ │ ├── proc-terminate.xml │ │ ├── shell-exec.xml │ │ └── system.xml │ ├── reference.xml │ └── setup.xml ├── exif │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── exif-imagetype.xml │ │ ├── exif-read-data.xml │ │ ├── exif-tagname.xml │ │ ├── exif-thumbnail.xml │ │ └── read-exif-data.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── expect │ └── setup.xml ├── fdf │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── fdf-add-doc-javascript.xml │ │ ├── fdf-add-template.xml │ │ ├── fdf-close.xml │ │ ├── fdf-create.xml │ │ ├── fdf-enum-values.xml │ │ ├── fdf-errno.xml │ │ ├── fdf-error.xml │ │ ├── fdf-get-encoding.xml │ │ ├── fdf-get-file.xml │ │ ├── fdf-get-flags.xml │ │ ├── fdf-get-opt.xml │ │ ├── fdf-get-status.xml │ │ ├── fdf-get-value.xml │ │ ├── fdf-get-version.xml │ │ ├── fdf-header.xml │ │ ├── fdf-next-field-name.xml │ │ ├── fdf-open.xml │ │ ├── fdf-save.xml │ │ ├── fdf-set-ap.xml │ │ ├── fdf-set-encoding.xml │ │ ├── fdf-set-file.xml │ │ ├── fdf-set-flags.xml │ │ ├── fdf-set-javascript-action.xml │ │ ├── fdf-set-opt.xml │ │ ├── fdf-set-status.xml │ │ ├── fdf-set-submit-form-action.xml │ │ └── fdf-set-value.xml │ ├── reference.xml │ └── setup.xml ├── fileinfo │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── finfo-close.xml │ │ ├── finfo-file.xml │ │ ├── finfo-open.xml │ │ ├── finfo-set-flags.xml │ │ └── mime-content-type.xml │ ├── reference.xml │ └── setup.xml ├── filesystem │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── basename.xml │ │ ├── chgrp.xml │ │ ├── chmod.xml │ │ ├── chown.xml │ │ ├── clearstatcache.xml │ │ ├── copy.xml │ │ ├── delete.xml │ │ ├── dirname.xml │ │ ├── disk-free-space.xml │ │ ├── disk-total-space.xml │ │ ├── diskfreespace.xml │ │ ├── fclose.xml │ │ ├── feof.xml │ │ ├── fflush.xml │ │ ├── fgetc.xml │ │ ├── fgetcsv.xml │ │ ├── fgets.xml │ │ ├── fgetss.xml │ │ ├── file-exists.xml │ │ ├── file-get-contents.xml │ │ ├── file-put-contents.xml │ │ ├── file.xml │ │ ├── fileatime.xml │ │ ├── filectime.xml │ │ ├── filegroup.xml │ │ ├── fileinode.xml │ │ ├── filemtime.xml │ │ ├── fileowner.xml │ │ ├── fileperms.xml │ │ ├── filesize.xml │ │ ├── filetype.xml │ │ ├── flock.xml │ │ ├── fopen.xml │ │ ├── fpassthru.xml │ │ ├── fputs.xml │ │ ├── fread.xml │ │ ├── fscanf.xml │ │ ├── fseek.xml │ │ ├── fstat.xml │ │ ├── ftell.xml │ │ ├── ftruncate.xml │ │ ├── fwrite.xml │ │ ├── glob.xml │ │ ├── is-dir.xml │ │ ├── is-executable.xml │ │ ├── is-file.xml │ │ ├── is-link.xml │ │ ├── is-readable.xml │ │ ├── is-uploaded-file.xml │ │ ├── is-writable.xml │ │ ├── is-writeable.xml │ │ ├── link.xml │ │ ├── linkinfo.xml │ │ ├── lstat.xml │ │ ├── mkdir.xml │ │ ├── move-uploaded-file.xml │ │ ├── parse-ini-file.xml │ │ ├── parse-ini-string.xml │ │ ├── pathinfo.xml │ │ ├── pclose.xml │ │ ├── popen.xml │ │ ├── readfile.xml │ │ ├── readlink.xml │ │ ├── realpath.xml │ │ ├── rename.xml │ │ ├── rewind.xml │ │ ├── rmdir.xml │ │ ├── set-file-buffer.xml │ │ ├── stat.xml │ │ ├── symlink.xml │ │ ├── tempnam.xml │ │ ├── tmpfile.xml │ │ ├── touch.xml │ │ ├── umask.xml │ │ └── unlink.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── filter │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── filter-has-var.xml │ │ ├── filter-id.xml │ │ ├── filter-input-array.xml │ │ ├── filter-input.xml │ │ ├── filter-list.xml │ │ ├── filter-var-array.xml │ │ └── filter-var.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── fpm │ ├── book.xml │ ├── observability.xml │ ├── reference.xml │ └── setup.xml ├── ftp │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── ftp.connection.xml │ ├── functions │ │ ├── ftp-alloc.xml │ │ ├── ftp-append.xml │ │ ├── ftp-cdup.xml │ │ ├── ftp-chdir.xml │ │ ├── ftp-chmod.xml │ │ ├── ftp-close.xml │ │ ├── ftp-connect.xml │ │ ├── ftp-delete.xml │ │ ├── ftp-exec.xml │ │ ├── ftp-fget.xml │ │ ├── ftp-fput.xml │ │ ├── ftp-get-option.xml │ │ ├── ftp-get.xml │ │ ├── ftp-login.xml │ │ ├── ftp-mdtm.xml │ │ ├── ftp-mkdir.xml │ │ ├── ftp-mlsd.xml │ │ ├── ftp-nb-continue.xml │ │ ├── ftp-nb-fget.xml │ │ ├── ftp-nb-fput.xml │ │ ├── ftp-nb-get.xml │ │ ├── ftp-nb-put.xml │ │ ├── ftp-nlist.xml │ │ ├── ftp-pasv.xml │ │ ├── ftp-put.xml │ │ ├── ftp-pwd.xml │ │ ├── ftp-quit.xml │ │ ├── ftp-raw.xml │ │ ├── ftp-rawlist.xml │ │ ├── ftp-rename.xml │ │ ├── ftp-rmdir.xml │ │ ├── ftp-set-option.xml │ │ ├── ftp-site.xml │ │ ├── ftp-size.xml │ │ ├── ftp-ssl-connect.xml │ │ └── ftp-systype.xml │ ├── reference.xml │ └── setup.xml ├── funchand │ ├── book.xml │ ├── functions │ │ ├── call-user-func.xml │ │ ├── create-function.xml │ │ ├── func-get-arg.xml │ │ ├── func-get-args.xml │ │ ├── func-num-args.xml │ │ ├── function-exists.xml │ │ ├── get-defined-functions.xml │ │ └── register-shutdown-function.xml │ └── reference.xml ├── gender │ ├── book.xml │ ├── examples.xml │ └── setup.xml ├── gettext │ ├── book.xml │ ├── configure.xml │ ├── functions │ │ ├── bind-textdomain-codeset.xml │ │ ├── bindtextdomain.xml │ │ ├── dcgettext.xml │ │ ├── dcngettext.xml │ │ ├── dgettext.xml │ │ ├── dngettext.xml │ │ ├── gettext.xml │ │ ├── ngettext.xml │ │ └── textdomain.xml │ ├── reference.xml │ └── setup.xml ├── gmagick │ └── gmagickpixel │ │ ├── construct.xml │ │ └── getcolor.xml ├── gmp │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── reference.xml │ └── setup.xml ├── gnupg │ ├── book.xml │ ├── configure.xml │ ├── examples.xml │ ├── functions │ │ ├── gnupg-adddecryptkey.xml │ │ ├── gnupg-addencryptkey.xml │ │ ├── gnupg-addsignkey.xml │ │ ├── gnupg-cleardecryptkeys.xml │ │ ├── gnupg-clearencryptkeys.xml │ │ ├── gnupg-clearsignkeys.xml │ │ ├── gnupg-decrypt.xml │ │ ├── gnupg-decryptverify.xml │ │ ├── gnupg-deletekey.xml │ │ ├── gnupg-encrypt.xml │ │ ├── gnupg-encryptsign.xml │ │ ├── gnupg-export.xml │ │ ├── gnupg-getengineinfo.xml │ │ ├── gnupg-geterror.xml │ │ ├── gnupg-geterrorinfo.xml │ │ ├── gnupg-getprotocol.xml │ │ ├── gnupg-gettrustlist.xml │ │ ├── gnupg-import.xml │ │ ├── gnupg-init.xml │ │ ├── gnupg-keyinfo.xml │ │ ├── gnupg-listsignatures.xml │ │ ├── gnupg-setarmor.xml │ │ ├── gnupg-seterrormode.xml │ │ ├── gnupg-setsignmode.xml │ │ ├── gnupg-sign.xml │ │ └── gnupg-verify.xml │ ├── reference.xml │ └── setup.xml ├── hash │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── hash-algos.xml │ │ ├── hash-copy.xml │ │ ├── hash-file.xml │ │ ├── hash-final.xml │ │ ├── hash-hmac-file.xml │ │ ├── hash-hmac.xml │ │ ├── hash-init.xml │ │ ├── hash-update-file.xml │ │ ├── hash-update-stream.xml │ │ ├── hash-update.xml │ │ └── hash.xml │ ├── reference.xml │ └── setup.xml ├── ibase │ └── functions │ │ ├── ibase-add-user.xml │ │ ├── ibase-affected-rows.xml │ │ ├── ibase-backup.xml │ │ ├── ibase-blob-add.xml │ │ ├── ibase-blob-cancel.xml │ │ ├── ibase-blob-close.xml │ │ ├── ibase-blob-create.xml │ │ ├── ibase-blob-echo.xml │ │ ├── ibase-blob-get.xml │ │ ├── ibase-blob-import.xml │ │ ├── ibase-blob-info.xml │ │ ├── ibase-blob-open.xml │ │ ├── ibase-close.xml │ │ ├── ibase-commit-ret.xml │ │ ├── ibase-commit.xml │ │ ├── ibase-connect.xml │ │ ├── ibase-db-info.xml │ │ ├── ibase-delete-user.xml │ │ ├── ibase-drop-db.xml │ │ ├── ibase-errcode.xml │ │ ├── ibase-errmsg.xml │ │ ├── ibase-execute.xml │ │ ├── ibase-fetch-assoc.xml │ │ ├── ibase-fetch-object.xml │ │ ├── ibase-fetch-row.xml │ │ ├── ibase-field-info.xml │ │ ├── ibase-free-event-handler.xml │ │ ├── ibase-free-query.xml │ │ ├── ibase-free-result.xml │ │ ├── ibase-gen-id.xml │ │ ├── ibase-maintain-db.xml │ │ ├── ibase-modify-user.xml │ │ ├── ibase-name-result.xml │ │ ├── ibase-num-fields.xml │ │ ├── ibase-num-params.xml │ │ ├── ibase-param-info.xml │ │ ├── ibase-pconnect.xml │ │ ├── ibase-prepare.xml │ │ ├── ibase-query.xml │ │ ├── ibase-restore.xml │ │ ├── ibase-rollback-ret.xml │ │ ├── ibase-rollback.xml │ │ ├── ibase-server-info.xml │ │ ├── ibase-service-attach.xml │ │ ├── ibase-service-detach.xml │ │ ├── ibase-set-event-handler.xml │ │ ├── ibase-trans.xml │ │ └── ibase-wait-event.xml ├── iconv │ └── functions │ │ ├── iconv-get-encoding.xml │ │ ├── iconv-set-encoding.xml │ │ ├── iconv.xml │ │ └── ob-iconv-handler.xml ├── image │ ├── book.xml │ ├── examples.xml │ ├── functions │ │ ├── gd-info.xml │ │ ├── getimagesize.xml │ │ ├── getimagesizefromstring.xml │ │ ├── imagearc.xml │ │ ├── imagechar.xml │ │ ├── imagecharup.xml │ │ ├── imagecolorallocate.xml │ │ ├── imagecolorat.xml │ │ ├── imagecolorclosest.xml │ │ ├── imagecolordeallocate.xml │ │ ├── imagecolorexact.xml │ │ ├── imagecolorresolve.xml │ │ ├── imagecolorset.xml │ │ ├── imagecolorsforindex.xml │ │ ├── imagecolorstotal.xml │ │ ├── imagecolortransparent.xml │ │ ├── imagecopy.xml │ │ ├── imagecopyresized.xml │ │ ├── imagecreate.xml │ │ ├── imagecreatefromgif.xml │ │ ├── imagecreatefromjpeg.xml │ │ ├── imagecreatefrompng.xml │ │ ├── imagedashedline.xml │ │ ├── imagedestroy.xml │ │ ├── imagefill.xml │ │ ├── imagefilledpolygon.xml │ │ ├── imagefilledrectangle.xml │ │ ├── imagefilltoborder.xml │ │ ├── imagefontheight.xml │ │ ├── imagefontwidth.xml │ │ ├── imagegammacorrect.xml │ │ ├── imagegif.xml │ │ ├── imageinterlace.xml │ │ ├── imagejpeg.xml │ │ ├── imageline.xml │ │ ├── imageloadfont.xml │ │ ├── imagepng.xml │ │ ├── imagepolygon.xml │ │ ├── imagerectangle.xml │ │ ├── imagesavealpha.xml │ │ ├── imagesetpixel.xml │ │ ├── imagestring.xml │ │ ├── imagestringup.xml │ │ ├── imagesx.xml │ │ ├── imagesy.xml │ │ ├── imagettfbbox.xml │ │ ├── imagettftext.xml │ │ ├── imagetypes.xml │ │ └── jpeg2wbmp.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── imagick │ ├── imagick │ │ └── pingimage.xml │ ├── imagickdraw.xml │ ├── imagickkernel.xml │ ├── imagickkernelexception.xml │ ├── imagickpixel.xml │ └── imagickpixeliterator.xml ├── imap │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── imap-8bit.xml │ │ ├── imap-alerts.xml │ │ ├── imap-append.xml │ │ ├── imap-base64.xml │ │ ├── imap-binary.xml │ │ ├── imap-body.xml │ │ ├── imap-bodystruct.xml │ │ ├── imap-check.xml │ │ ├── imap-clearflag-full.xml │ │ ├── imap-close.xml │ │ ├── imap-create.xml │ │ ├── imap-createmailbox.xml │ │ ├── imap-delete.xml │ │ ├── imap-deletemailbox.xml │ │ ├── imap-errors.xml │ │ ├── imap-expunge.xml │ │ ├── imap-fetch-overview.xml │ │ ├── imap-fetchbody.xml │ │ ├── imap-fetchheader.xml │ │ ├── imap-fetchstructure.xml │ │ ├── imap-fetchtext.xml │ │ ├── imap-gc.xml │ │ ├── imap-get-quota.xml │ │ ├── imap-get-quotaroot.xml │ │ ├── imap-getacl.xml │ │ ├── imap-getmailboxes.xml │ │ ├── imap-getsubscribed.xml │ │ ├── imap-header.xml │ │ ├── imap-headerinfo.xml │ │ ├── imap-headers.xml │ │ ├── imap-last-error.xml │ │ ├── imap-list.xml │ │ ├── imap-listmailbox.xml │ │ ├── imap-listscan.xml │ │ ├── imap-listsubscribed.xml │ │ ├── imap-lsub.xml │ │ ├── imap-mail-compose.xml │ │ ├── imap-mail-copy.xml │ │ ├── imap-mail-move.xml │ │ ├── imap-mail.xml │ │ ├── imap-mailboxmsginfo.xml │ │ ├── imap-mime-header-decode.xml │ │ ├── imap-msgno.xml │ │ ├── imap-num-msg.xml │ │ ├── imap-num-recent.xml │ │ ├── imap-open.xml │ │ ├── imap-ping.xml │ │ ├── imap-qprint.xml │ │ ├── imap-rename.xml │ │ ├── imap-renamemailbox.xml │ │ ├── imap-reopen.xml │ │ ├── imap-rfc822-parse-adrlist.xml │ │ ├── imap-rfc822-parse-headers.xml │ │ ├── imap-rfc822-write-address.xml │ │ ├── imap-savebody.xml │ │ ├── imap-scan.xml │ │ ├── imap-scanmailbox.xml │ │ ├── imap-search.xml │ │ ├── imap-set-quota.xml │ │ ├── imap-setacl.xml │ │ ├── imap-setflag-full.xml │ │ ├── imap-sort.xml │ │ ├── imap-status.xml │ │ ├── imap-subscribe.xml │ │ ├── imap-thread.xml │ │ ├── imap-timeout.xml │ │ ├── imap-uid.xml │ │ ├── imap-undelete.xml │ │ ├── imap-unsubscribe.xml │ │ ├── imap-utf7-decode.xml │ │ ├── imap-utf7-encode.xml │ │ └── imap-utf8.xml │ ├── imap.connection.xml │ ├── reference.xml │ └── setup.xml ├── info │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── assert-options.xml │ │ ├── assert.xml │ │ ├── dl.xml │ │ ├── extension-loaded.xml │ │ ├── get-cfg-var.xml │ │ ├── get-current-user.xml │ │ ├── get-extension-funcs.xml │ │ ├── get-included-files.xml │ │ ├── get-loaded-extensions.xml │ │ ├── get-magic-quotes-gpc.xml │ │ ├── get-magic-quotes-runtime.xml │ │ ├── get-required-files.xml │ │ ├── getenv.xml │ │ ├── getlastmod.xml │ │ ├── getmyinode.xml │ │ ├── getmypid.xml │ │ ├── getmyuid.xml │ │ ├── getrusage.xml │ │ ├── php-ini-scanned-files.xml │ │ ├── php-sapi-name.xml │ │ ├── phpinfo.xml │ │ ├── phpversion.xml │ │ ├── putenv.xml │ │ ├── set-include-path.xml │ │ ├── set-time-limit.xml │ │ ├── version-compare.xml │ │ ├── zend-thread-id.xml │ │ └── zend-version.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── intl │ ├── intlchar.xml │ └── uconverter.xml ├── json │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── json-decode.xml │ │ ├── json-encode.xml │ │ ├── json-last-error-msg.xml │ │ └── json-last-error.xml │ ├── jsonserializable.xml │ ├── jsonserializable │ │ └── jsonserialize.xml │ ├── reference.xml │ └── setup.xml ├── ldap │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── ldap-8859-to-t61.xml │ │ ├── ldap-add.xml │ │ ├── ldap-bind.xml │ │ ├── ldap-close.xml │ │ ├── ldap-compare.xml │ │ ├── ldap-connect.xml │ │ ├── ldap-count-entries.xml │ │ ├── ldap-delete.xml │ │ ├── ldap-dn2ufn.xml │ │ ├── ldap-err2str.xml │ │ ├── ldap-errno.xml │ │ ├── ldap-error.xml │ │ ├── ldap-explode-dn.xml │ │ ├── ldap-first-attribute.xml │ │ ├── ldap-first-entry.xml │ │ ├── ldap-first-reference.xml │ │ ├── ldap-free-result.xml │ │ ├── ldap-get-attributes.xml │ │ ├── ldap-get-dn.xml │ │ ├── ldap-get-entries.xml │ │ ├── ldap-get-option.xml │ │ ├── ldap-get-values-len.xml │ │ ├── ldap-get-values.xml │ │ ├── ldap-list.xml │ │ ├── ldap-mod-add.xml │ │ ├── ldap-mod-del.xml │ │ ├── ldap-mod-replace.xml │ │ ├── ldap-modify.xml │ │ ├── ldap-next-attribute.xml │ │ ├── ldap-next-entry.xml │ │ ├── ldap-next-reference.xml │ │ ├── ldap-parse-reference.xml │ │ ├── ldap-parse-result.xml │ │ ├── ldap-read.xml │ │ ├── ldap-rename.xml │ │ ├── ldap-search.xml │ │ ├── ldap-set-option.xml │ │ ├── ldap-set-rebind-proc.xml │ │ ├── ldap-sort.xml │ │ ├── ldap-start-tls.xml │ │ ├── ldap-t61-to-8859.xml │ │ └── ldap-unbind.xml │ ├── ini.xml │ ├── ldap.connection.xml │ ├── ldap.result.xml │ ├── ldap.resultentry.xml │ ├── reference.xml │ ├── setup.xml │ └── using.xml ├── mail │ ├── book.xml │ ├── functions │ │ ├── ezmlm-hash.xml │ │ └── mail.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── math │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── abs.xml │ │ ├── acos.xml │ │ ├── acosh.xml │ │ ├── asin.xml │ │ ├── asinh.xml │ │ ├── atan.xml │ │ ├── atan2.xml │ │ ├── atanh.xml │ │ ├── base-convert.xml │ │ ├── bindec.xml │ │ ├── ceil.xml │ │ ├── cos.xml │ │ ├── cosh.xml │ │ ├── decbin.xml │ │ ├── dechex.xml │ │ ├── decoct.xml │ │ ├── deg2rad.xml │ │ ├── exp.xml │ │ ├── expm1.xml │ │ ├── fdiv.xml │ │ ├── floor.xml │ │ ├── fmod.xml │ │ ├── hexdec.xml │ │ ├── hypot.xml │ │ ├── intdiv.xml │ │ ├── is-finite.xml │ │ ├── is-infinite.xml │ │ ├── is-nan.xml │ │ ├── log.xml │ │ ├── log10.xml │ │ ├── log1p.xml │ │ ├── max.xml │ │ ├── min.xml │ │ ├── octdec.xml │ │ ├── pi.xml │ │ ├── pow.xml │ │ ├── rad2deg.xml │ │ ├── round.xml │ │ ├── sin.xml │ │ ├── sinh.xml │ │ ├── sqrt.xml │ │ ├── tan.xml │ │ └── tanh.xml │ └── reference.xml ├── mcrypt │ ├── book.xml │ ├── ciphers.xml │ ├── configure.xml │ ├── constants.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── memcache │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── ini.xml │ ├── memcache.xml │ ├── reference.xml │ └── setup.xml ├── mhash │ └── functions │ │ ├── mhash-count.xml │ │ ├── mhash-get-block-size.xml │ │ ├── mhash-get-hash-name.xml │ │ └── mhash.xml ├── misc │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── connection-aborted.xml │ │ ├── connection-status.xml │ │ ├── constant.xml │ │ ├── define.xml │ │ ├── defined.xml │ │ ├── die.xml │ │ ├── eval.xml │ │ ├── exit.xml │ │ ├── get-browser.xml │ │ ├── halt-compiler.xml │ │ ├── highlight-file.xml │ │ ├── highlight-string.xml │ │ ├── ignore-user-abort.xml │ │ ├── pack.xml │ │ ├── show-source.xml │ │ ├── sleep.xml │ │ ├── sys-getloadavg.xml │ │ ├── time-nanosleep.xml │ │ ├── time-sleep-until.xml │ │ ├── uniqid.xml │ │ ├── unpack.xml │ │ └── usleep.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── mysql │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── mysql-affected-rows.xml │ │ ├── mysql-client-encoding.xml │ │ ├── mysql-close.xml │ │ ├── mysql-connect.xml │ │ ├── mysql-create-db.xml │ │ ├── mysql-data-seek.xml │ │ ├── mysql-db-name.xml │ │ ├── mysql-db-query.xml │ │ ├── mysql-drop-db.xml │ │ ├── mysql-errno.xml │ │ ├── mysql-error.xml │ │ ├── mysql-escape-string.xml │ │ ├── mysql-fetch-array.xml │ │ ├── mysql-fetch-assoc.xml │ │ ├── mysql-fetch-field.xml │ │ ├── mysql-fetch-lengths.xml │ │ ├── mysql-fetch-object.xml │ │ ├── mysql-fetch-row.xml │ │ ├── mysql-field-flags.xml │ │ ├── mysql-field-len.xml │ │ ├── mysql-field-name.xml │ │ ├── mysql-field-seek.xml │ │ ├── mysql-field-table.xml │ │ ├── mysql-field-type.xml │ │ ├── mysql-free-result.xml │ │ ├── mysql-get-client-info.xml │ │ ├── mysql-get-host-info.xml │ │ ├── mysql-get-proto-info.xml │ │ ├── mysql-get-server-info.xml │ │ ├── mysql-info.xml │ │ ├── mysql-insert-id.xml │ │ ├── mysql-list-dbs.xml │ │ ├── mysql-list-fields.xml │ │ ├── mysql-list-processes.xml │ │ ├── mysql-list-tables.xml │ │ ├── mysql-num-fields.xml │ │ ├── mysql-num-rows.xml │ │ ├── mysql-pconnect.xml │ │ ├── mysql-ping.xml │ │ ├── mysql-query.xml │ │ ├── mysql-real-escape-string.xml │ │ ├── mysql-result.xml │ │ ├── mysql-select-db.xml │ │ ├── mysql-set-charset.xml │ │ ├── mysql-stat.xml │ │ ├── mysql-tablename.xml │ │ ├── mysql-thread-id.xml │ │ └── mysql-unbuffered-query.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── mysql_xdevapi │ ├── book.xml │ ├── changelog.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── mysql-xdevapi.expression.xml │ │ └── mysql-xdevapi.getsession.xml │ ├── ini.xml │ ├── mysql-xdevapi.baseresult.xml │ ├── mysql-xdevapi.client.xml │ ├── mysql-xdevapi.collection.xml │ ├── mysql-xdevapi.collectionadd.xml │ ├── mysql-xdevapi.collectionfind.xml │ ├── mysql-xdevapi.collectionmodify.xml │ ├── mysql-xdevapi.collectionremove.xml │ ├── mysql-xdevapi.columnresult.xml │ ├── mysql-xdevapi.crudoperationbindable.xml │ ├── mysql-xdevapi.crudoperationlimitable.xml │ ├── mysql-xdevapi.crudoperationskippable.xml │ ├── mysql-xdevapi.crudoperationsortable.xml │ ├── mysql-xdevapi.databaseobject.xml │ ├── mysql-xdevapi.docresult.xml │ ├── mysql-xdevapi.driver.xml │ ├── mysql-xdevapi.exception.xml │ ├── mysql-xdevapi.executable.xml │ ├── mysql-xdevapi.executionstatus.xml │ ├── mysql-xdevapi.expression.xml │ ├── mysql-xdevapi.fieldmetadata.xml │ ├── mysql-xdevapi.result.xml │ ├── mysql-xdevapi.rowresult.xml │ ├── mysql-xdevapi.schema.xml │ ├── mysql-xdevapi.schemaobject.xml │ ├── mysql-xdevapi.session.xml │ ├── mysql-xdevapi.sqlstatement.xml │ ├── mysql-xdevapi.sqlstatementresult.xml │ ├── mysql-xdevapi.statement.xml │ ├── mysql-xdevapi.table.xml │ ├── mysql-xdevapi.tabledelete.xml │ ├── mysql-xdevapi.tableinsert.xml │ ├── mysql-xdevapi.tableselect.xml │ ├── mysql-xdevapi.tableupdate.xml │ ├── mysql-xdevapi.warning.xml │ ├── mysql_xdevapi │ │ ├── baseresult │ │ │ ├── getwarnings.xml │ │ │ └── getwarningscount.xml │ │ ├── client │ │ │ ├── close.xml │ │ │ ├── construct.xml │ │ │ └── getsession.xml │ │ ├── collection │ │ │ ├── add.xml │ │ │ ├── addorreplaceone.xml │ │ │ ├── construct.xml │ │ │ ├── count.xml │ │ │ ├── createindex.xml │ │ │ ├── dropindex.xml │ │ │ ├── existsindatabase.xml │ │ │ ├── find.xml │ │ │ ├── getname.xml │ │ │ ├── getone.xml │ │ │ ├── getschema.xml │ │ │ ├── getsession.xml │ │ │ ├── modify.xml │ │ │ ├── remove.xml │ │ │ ├── removeone.xml │ │ │ └── replaceone.xml │ │ ├── collectionadd │ │ │ ├── construct.xml │ │ │ └── execute.xml │ │ ├── collectionfind │ │ │ ├── bind.xml │ │ │ ├── construct.xml │ │ │ ├── execute.xml │ │ │ ├── fields.xml │ │ │ ├── groupby.xml │ │ │ ├── having.xml │ │ │ ├── limit.xml │ │ │ ├── lockexclusive.xml │ │ │ ├── lockshared.xml │ │ │ ├── offset.xml │ │ │ └── sort.xml │ │ ├── collectionmodify │ │ │ ├── arrayappend.xml │ │ │ ├── arrayinsert.xml │ │ │ ├── bind.xml │ │ │ ├── construct.xml │ │ │ ├── execute.xml │ │ │ ├── limit.xml │ │ │ ├── patch.xml │ │ │ ├── replace.xml │ │ │ ├── set.xml │ │ │ ├── skip.xml │ │ │ ├── sort.xml │ │ │ └── unset.xml │ │ ├── collectionremove │ │ │ ├── bind.xml │ │ │ ├── construct.xml │ │ │ ├── execute.xml │ │ │ ├── limit.xml │ │ │ └── sort.xml │ │ ├── columnresult │ │ │ ├── construct.xml │ │ │ ├── getcharactersetname.xml │ │ │ ├── getcollationname.xml │ │ │ ├── getcolumnlabel.xml │ │ │ ├── getcolumnname.xml │ │ │ ├── getfractionaldigits.xml │ │ │ ├── getlength.xml │ │ │ ├── getschemaname.xml │ │ │ ├── gettablelabel.xml │ │ │ ├── gettablename.xml │ │ │ ├── gettype.xml │ │ │ ├── isnumbersigned.xml │ │ │ └── ispadded.xml │ │ ├── crudoperationbindable │ │ │ └── bind.xml │ │ ├── crudoperationlimitable │ │ │ └── limit.xml │ │ ├── crudoperationskippable │ │ │ └── skip.xml │ │ ├── crudoperationsortable │ │ │ └── sort.xml │ │ ├── databaseobject │ │ │ ├── existsindatabase.xml │ │ │ ├── getname.xml │ │ │ └── getsession.xml │ │ ├── docresult │ │ │ ├── construct.xml │ │ │ ├── fetchall.xml │ │ │ ├── fetchone.xml │ │ │ ├── getwarnings.xml │ │ │ └── getwarningscount.xml │ │ ├── executable │ │ │ └── execute.xml │ │ ├── executionstatus │ │ │ └── construct.xml │ │ ├── expression │ │ │ └── construct.xml │ │ ├── result │ │ │ ├── construct.xml │ │ │ ├── getaffecteditemscount.xml │ │ │ ├── getautoincrementvalue.xml │ │ │ ├── getgeneratedids.xml │ │ │ ├── getwarnings.xml │ │ │ └── getwarningscount.xml │ │ ├── rowresult │ │ │ ├── construct.xml │ │ │ ├── fetchall.xml │ │ │ ├── fetchone.xml │ │ │ ├── getcolumncount.xml │ │ │ ├── getcolumnnames.xml │ │ │ ├── getcolumns.xml │ │ │ ├── getwarnings.xml │ │ │ └── getwarningscount.xml │ │ ├── schema │ │ │ ├── construct.xml │ │ │ ├── createcollection.xml │ │ │ ├── dropcollection.xml │ │ │ ├── existsindatabase.xml │ │ │ ├── getcollection.xml │ │ │ ├── getcollectionastable.xml │ │ │ ├── getcollections.xml │ │ │ ├── getname.xml │ │ │ ├── getsession.xml │ │ │ ├── gettable.xml │ │ │ └── gettables.xml │ │ ├── schemaobject │ │ │ └── getschema.xml │ │ ├── session │ │ │ ├── close.xml │ │ │ ├── commit.xml │ │ │ ├── construct.xml │ │ │ ├── createschema.xml │ │ │ ├── dropschema.xml │ │ │ ├── generateuuid.xml │ │ │ ├── getdefaultschema.xml │ │ │ ├── getschema.xml │ │ │ ├── getschemas.xml │ │ │ ├── getserverversion.xml │ │ │ ├── listclients.xml │ │ │ ├── quotename.xml │ │ │ ├── releasesavepoint.xml │ │ │ ├── rollback.xml │ │ │ ├── rollbackto.xml │ │ │ ├── setsavepoint.xml │ │ │ ├── sql.xml │ │ │ └── starttransaction.xml │ │ ├── sqlstatement │ │ │ ├── bind.xml │ │ │ ├── construct.xml │ │ │ ├── execute.xml │ │ │ ├── getnextresult.xml │ │ │ ├── getresult.xml │ │ │ └── hasmoreresults.xml │ │ ├── sqlstatementresult │ │ │ ├── construct.xml │ │ │ ├── fetchall.xml │ │ │ ├── fetchone.xml │ │ │ ├── getaffecteditemscount.xml │ │ │ ├── getcolumncount.xml │ │ │ ├── getcolumnnames.xml │ │ │ ├── getcolumns.xml │ │ │ ├── getgeneratedids.xml │ │ │ ├── getlastinsertid.xml │ │ │ ├── getwarnings.xml │ │ │ ├── getwarningscount.xml │ │ │ ├── hasdata.xml │ │ │ └── nextresult.xml │ │ ├── statement │ │ │ ├── construct.xml │ │ │ ├── getnextresult.xml │ │ │ ├── getresult.xml │ │ │ └── hasmoreresults.xml │ │ ├── table │ │ │ ├── construct.xml │ │ │ ├── count.xml │ │ │ ├── delete.xml │ │ │ ├── existsindatabase.xml │ │ │ ├── getname.xml │ │ │ ├── getschema.xml │ │ │ ├── getsession.xml │ │ │ ├── insert.xml │ │ │ ├── isview.xml │ │ │ ├── select.xml │ │ │ └── update.xml │ │ ├── tabledelete │ │ │ ├── bind.xml │ │ │ ├── construct.xml │ │ │ ├── execute.xml │ │ │ ├── limit.xml │ │ │ ├── orderby.xml │ │ │ └── where.xml │ │ ├── tableinsert │ │ │ ├── construct.xml │ │ │ ├── execute.xml │ │ │ └── values.xml │ │ ├── tableselect │ │ │ ├── bind.xml │ │ │ ├── construct.xml │ │ │ ├── execute.xml │ │ │ ├── groupby.xml │ │ │ ├── having.xml │ │ │ ├── limit.xml │ │ │ ├── lockexclusive.xml │ │ │ ├── lockshared.xml │ │ │ ├── offset.xml │ │ │ ├── orderby.xml │ │ │ └── where.xml │ │ ├── tableupdate │ │ │ ├── bind.xml │ │ │ ├── construct.xml │ │ │ ├── execute.xml │ │ │ ├── limit.xml │ │ │ ├── orderby.xml │ │ │ ├── set.xml │ │ │ └── where.xml │ │ └── warning │ │ │ └── construct.xml │ ├── reference.xml │ └── setup.xml ├── mysqli │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── mysqli-connect.xml │ │ ├── mysqli-escape-string.xml │ │ ├── mysqli-execute.xml │ │ ├── mysqli-get-client-stats.xml │ │ ├── mysqli-get-links-stats.xml │ │ ├── mysqli-report.xml │ │ └── mysqli-set-opt.xml │ ├── ini.xml │ ├── mysqli.xml │ ├── mysqli │ │ ├── affected-rows.xml │ │ ├── autocommit.xml │ │ ├── begin-transaction.xml │ │ ├── change-user.xml │ │ ├── character-set-name.xml │ │ ├── close.xml │ │ ├── commit.xml │ │ ├── connect-errno.xml │ │ ├── connect-error.xml │ │ ├── construct.xml │ │ ├── debug.xml │ │ ├── dump-debug-info.xml │ │ ├── errno.xml │ │ ├── error-list.xml │ │ ├── error.xml │ │ ├── execute-query.xml │ │ ├── field-count.xml │ │ ├── get-charset.xml │ │ ├── get-client-info.xml │ │ ├── get-client-version.xml │ │ ├── get-connection-stats.xml │ │ ├── get-host-info.xml │ │ ├── get-proto-info.xml │ │ ├── get-server-info.xml │ │ ├── get-server-version.xml │ │ ├── get-warnings.xml │ │ ├── info.xml │ │ ├── init.xml │ │ ├── insert-id.xml │ │ ├── kill.xml │ │ ├── more-results.xml │ │ ├── multi-query.xml │ │ ├── next-result.xml │ │ ├── options.xml │ │ ├── ping.xml │ │ ├── poll.xml │ │ ├── prepare.xml │ │ ├── query.xml │ │ ├── real-connect.xml │ │ ├── real-escape-string.xml │ │ ├── real-query.xml │ │ ├── reap-async-query.xml │ │ ├── refresh.xml │ │ ├── release-savepoint.xml │ │ ├── rollback.xml │ │ ├── savepoint.xml │ │ ├── select-db.xml │ │ ├── set-charset.xml │ │ ├── sqlstate.xml │ │ ├── ssl-set.xml │ │ ├── stat.xml │ │ ├── stmt-init.xml │ │ ├── store-result.xml │ │ ├── thread-id.xml │ │ ├── thread-safe.xml │ │ ├── use-result.xml │ │ └── warning-count.xml │ ├── mysqli_driver.xml │ ├── mysqli_driver │ │ ├── embedded-server-end.xml │ │ ├── embedded-server-start.xml │ │ └── report-mode.xml │ ├── mysqli_result.xml │ ├── mysqli_result │ │ ├── construct.xml │ │ ├── current-field.xml │ │ ├── data-seek.xml │ │ ├── fetch-all.xml │ │ ├── fetch-array.xml │ │ ├── fetch-assoc.xml │ │ ├── fetch-column.xml │ │ ├── fetch-field-direct.xml │ │ ├── fetch-field.xml │ │ ├── fetch-fields.xml │ │ ├── fetch-object.xml │ │ ├── fetch-row.xml │ │ ├── field-count.xml │ │ ├── field-seek.xml │ │ ├── free.xml │ │ ├── getiterator.xml │ │ ├── lengths.xml │ │ └── num-rows.xml │ ├── mysqli_sql_exception.xml │ ├── mysqli_sql_exception │ │ └── getsqlstate.xml │ ├── mysqli_stmt.xml │ ├── mysqli_stmt │ │ ├── affected-rows.xml │ │ ├── attr-get.xml │ │ ├── attr-set.xml │ │ ├── bind-param.xml │ │ ├── bind-result.xml │ │ ├── close.xml │ │ ├── construct.xml │ │ ├── data-seek.xml │ │ ├── errno.xml │ │ ├── error-list.xml │ │ ├── error.xml │ │ ├── execute.xml │ │ ├── fetch.xml │ │ ├── field-count.xml │ │ ├── free-result.xml │ │ ├── get-result.xml │ │ ├── get-warnings.xml │ │ ├── insert-id.xml │ │ ├── more-results.xml │ │ ├── next-result.xml │ │ ├── num-rows.xml │ │ ├── param-count.xml │ │ ├── prepare.xml │ │ ├── reset.xml │ │ ├── result-metadata.xml │ │ ├── send-long-data.xml │ │ ├── sqlstate.xml │ │ └── store-result.xml │ ├── mysqli_warning.xml │ ├── mysqli_warning │ │ ├── construct.xml │ │ └── next.xml │ ├── notes.xml │ ├── overview.xml │ ├── persistconns.xml │ ├── quickstart.xml │ ├── reference.xml │ ├── setup.xml │ └── summary.xml ├── mysqlinfo │ ├── concepts.xml │ └── set.xml ├── mysqlnd │ ├── book.xml │ ├── config.xml │ ├── incompatibilities.xml │ ├── install.xml │ ├── memory.xml │ ├── notes.xml │ ├── overview.xml │ ├── persist.xml │ ├── plugin.xml │ └── stats.xml ├── network │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── checkdnsrr.xml │ │ ├── closelog.xml │ │ ├── dns-check-record.xml │ │ ├── dns-get-mx.xml │ │ ├── dns-get-record.xml │ │ ├── fsockopen.xml │ │ ├── gethostbyaddr.xml │ │ ├── gethostbyname.xml │ │ ├── gethostbynamel.xml │ │ ├── getmxrr.xml │ │ ├── getprotobyname.xml │ │ ├── getprotobynumber.xml │ │ ├── getservbyname.xml │ │ ├── getservbyport.xml │ │ ├── header.xml │ │ ├── headers-list.xml │ │ ├── headers-sent.xml │ │ ├── inet-ntop.xml │ │ ├── inet-pton.xml │ │ ├── ip2long.xml │ │ ├── long2ip.xml │ │ ├── openlog.xml │ │ ├── pfsockopen.xml │ │ ├── setcookie.xml │ │ ├── setrawcookie.xml │ │ ├── socket-get-status.xml │ │ ├── socket-set-blocking.xml │ │ ├── socket-set-timeout.xml │ │ └── syslog.xml │ ├── reference.xml │ └── setup.xml ├── oauth │ └── functions │ │ └── oauth-urlencode.xml ├── oci8 │ ├── aliases.xml │ ├── book.xml │ ├── functions │ │ ├── oci-bind-array-by-name.xml │ │ ├── oci-cancel.xml │ │ ├── oci-close.xml │ │ ├── oci-error.xml │ │ ├── oci-fetch-all.xml │ │ ├── oci-fetch-array.xml │ │ ├── oci-fetch-assoc.xml │ │ ├── oci-fetch-object.xml │ │ ├── oci-fetch-row.xml │ │ ├── oci-fetch.xml │ │ └── oci-free-statement.xml │ ├── ini.xml │ ├── ocicollection │ │ ├── append.xml │ │ ├── assign.xml │ │ ├── assignElem.xml │ │ ├── free.xml │ │ ├── getElem.xml │ │ ├── max.xml │ │ ├── size.xml │ │ └── trim.xml │ ├── ocilob │ │ └── saveFile.xml │ └── oldaliases │ │ ├── ocibindbyname.xml │ │ ├── ocicancel.xml │ │ ├── ocicloselob.xml │ │ ├── ocicollappend.xml │ │ ├── ocicollassign.xml │ │ ├── ocicollassignelem.xml │ │ ├── ocicollgetelem.xml │ │ ├── ocicollmax.xml │ │ ├── ocicollsize.xml │ │ ├── ocicolltrim.xml │ │ ├── ocicolumnisnull.xml │ │ ├── ocicolumnname.xml │ │ ├── ocicolumnprecision.xml │ │ ├── ocicolumnscale.xml │ │ ├── ocicolumnsize.xml │ │ ├── ocicolumntype.xml │ │ ├── ocicolumntyperaw.xml │ │ ├── ocicommit.xml │ │ ├── ocidefinebyname.xml │ │ ├── ocierror.xml │ │ ├── ociexecute.xml │ │ ├── ocifetch.xml │ │ ├── ocifetchinto.xml │ │ ├── ocifetchstatement.xml │ │ ├── ocifreecollection.xml │ │ ├── ocifreecursor.xml │ │ ├── ocifreedesc.xml │ │ ├── ocifreestatement.xml │ │ ├── ociinternaldebug.xml │ │ ├── ociloadlob.xml │ │ ├── ocilogoff.xml │ │ ├── ocilogon.xml │ │ ├── ocinewcollection.xml │ │ ├── ocinewcursor.xml │ │ ├── ocinewdescriptor.xml │ │ ├── ocinlogon.xml │ │ ├── ocinumcols.xml │ │ ├── ociparse.xml │ │ ├── ociplogon.xml │ │ ├── ociresult.xml │ │ ├── ocirollback.xml │ │ ├── ocirowcount.xml │ │ ├── ocisavelob.xml │ │ ├── ocisavelobfile.xml │ │ ├── ociserverversion.xml │ │ ├── ocisetprefetch.xml │ │ ├── ocistatementtype.xml │ │ ├── ociwritelobtofile.xml │ │ └── ociwritetemporarylob.xml ├── opcache │ ├── book.xml │ ├── functions │ │ ├── opcache-get-status.xml │ │ └── opcache-reset.xml │ ├── reference.xml │ └── setup.xml ├── openssl │ ├── book.xml │ ├── cert-verification.xml │ ├── certparams.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── openssl-csr-export-to-file.xml │ │ ├── openssl-csr-export.xml │ │ ├── openssl-csr-get-public-key.xml │ │ ├── openssl-csr-get-subject.xml │ │ ├── openssl-csr-new.xml │ │ ├── openssl-csr-sign.xml │ │ ├── openssl-encrypt.xml │ │ ├── openssl-error-string.xml │ │ ├── openssl-free-key.xml │ │ ├── openssl-get-privatekey.xml │ │ ├── openssl-get-publickey.xml │ │ ├── openssl-open.xml │ │ ├── openssl-pkcs12-export-to-file.xml │ │ ├── openssl-pkcs12-export.xml │ │ ├── openssl-pkcs12-read.xml │ │ ├── openssl-pkcs7-decrypt.xml │ │ ├── openssl-pkcs7-encrypt.xml │ │ ├── openssl-pkcs7-sign.xml │ │ ├── openssl-pkcs7-verify.xml │ │ ├── openssl-pkey-export-to-file.xml │ │ ├── openssl-pkey-export.xml │ │ ├── openssl-pkey-free.xml │ │ ├── openssl-pkey-get-details.xml │ │ ├── openssl-pkey-get-private.xml │ │ ├── openssl-pkey-get-public.xml │ │ ├── openssl-pkey-new.xml │ │ ├── openssl-private-decrypt.xml │ │ ├── openssl-private-encrypt.xml │ │ ├── openssl-public-decrypt.xml │ │ ├── openssl-public-encrypt.xml │ │ ├── openssl-seal.xml │ │ ├── openssl-sign.xml │ │ ├── openssl-verify.xml │ │ ├── openssl-x509-check-private-key.xml │ │ ├── openssl-x509-checkpurpose.xml │ │ ├── openssl-x509-export-to-file.xml │ │ ├── openssl-x509-export.xml │ │ ├── openssl-x509-free.xml │ │ ├── openssl-x509-parse.xml │ │ └── openssl-x509-read.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── outcontrol │ ├── book.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── flush.xml │ │ ├── ob-clean.xml │ │ ├── ob-end-clean.xml │ │ ├── ob-end-flush.xml │ │ ├── ob-flush.xml │ │ ├── ob-get-contents.xml │ │ ├── ob-get-level.xml │ │ ├── ob-implicit-flush.xml │ │ ├── ob-start.xml │ │ └── output-add-rewrite-var.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── password │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── password-get-info.xml │ │ ├── password-hash.xml │ │ ├── password-needs-rehash.xml │ │ └── password-verify.xml │ ├── reference.xml │ └── setup.xml ├── pcntl │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── pcntl-alarm.xml │ │ ├── pcntl-exec.xml │ │ ├── pcntl-fork.xml │ │ ├── pcntl-getpriority.xml │ │ ├── pcntl-setpriority.xml │ │ ├── pcntl-signal.xml │ │ ├── pcntl-wait.xml │ │ ├── pcntl-waitpid.xml │ │ ├── pcntl-wexitstatus.xml │ │ ├── pcntl-wifexited.xml │ │ ├── pcntl-wifsignaled.xml │ │ ├── pcntl-wifstopped.xml │ │ ├── pcntl-wstopsig.xml │ │ └── pcntl-wtermsig.xml │ ├── reference.xml │ └── setup.xml ├── pcre │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── preg-filter.xml │ │ ├── preg-grep.xml │ │ ├── preg-last-error.xml │ │ ├── preg-match-all.xml │ │ ├── preg-match.xml │ │ ├── preg-quote.xml │ │ ├── preg-replace-callback.xml │ │ ├── preg-replace.xml │ │ └── preg-split.xml │ ├── ini.xml │ ├── pattern.modifiers.xml │ ├── pattern.xml │ ├── reference.xml │ └── setup.xml ├── pdo │ ├── book.xml │ ├── configure.xml │ ├── connections.xml │ ├── constants.xml │ ├── drivers.xml │ ├── error-handling.xml │ ├── ini.xml │ ├── lobs.xml │ ├── pdo.xml │ ├── pdo │ │ ├── begintransaction.xml │ │ ├── commit.xml │ │ ├── construct.xml │ │ ├── errorcode.xml │ │ ├── errorinfo.xml │ │ ├── exec.xml │ │ ├── getattribute.xml │ │ ├── getavailabledrivers.xml │ │ ├── intransaction.xml │ │ ├── lastinsertid.xml │ │ ├── prepare.xml │ │ ├── query.xml │ │ ├── quote.xml │ │ ├── rollback.xml │ │ └── setattribute.xml │ ├── pdoexception.xml │ ├── pdorow.xml │ ├── pdostatement.xml │ ├── pdostatement │ │ ├── bindcolumn.xml │ │ ├── bindparam.xml │ │ ├── bindvalue.xml │ │ ├── closecursor.xml │ │ ├── columncount.xml │ │ ├── debugdumpparams.xml │ │ ├── errorcode.xml │ │ ├── errorinfo.xml │ │ ├── execute.xml │ │ ├── fetch.xml │ │ ├── fetchall.xml │ │ ├── fetchcolumn.xml │ │ ├── fetchobject.xml │ │ ├── getattribute.xml │ │ ├── getcolumnmeta.xml │ │ ├── getiterator.xml │ │ ├── nextrowset.xml │ │ ├── rowcount.xml │ │ ├── setattribute.xml │ │ └── setfetchmode.xml │ ├── prepared-statements.xml │ ├── setup.xml │ └── transactions.xml ├── pdo_mysql │ ├── configure.xml │ ├── constants.xml │ ├── ini.xml │ └── reference.xml ├── pdo_sqlite │ ├── pdo │ │ └── sqlite │ │ │ ├── createaggregate.xml │ │ │ └── createfunction.xml │ ├── pdo_overloaded │ │ ├── sqliteCreateAggregate.xml │ │ └── sqliteCreateFunction.xml │ └── reference.xml ├── pgsql │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── pg-affected-rows.xml │ │ ├── pg-cancel-query.xml │ │ ├── pg-client-encoding.xml │ │ ├── pg-close.xml │ │ ├── pg-connect.xml │ │ ├── pg-connection-busy.xml │ │ ├── pg-connection-reset.xml │ │ ├── pg-connection-status.xml │ │ ├── pg-convert.xml │ │ ├── pg-copy-from.xml │ │ ├── pg-copy-to.xml │ │ ├── pg-dbname.xml │ │ ├── pg-delete.xml │ │ ├── pg-end-copy.xml │ │ ├── pg-escape-bytea.xml │ │ ├── pg-escape-string.xml │ │ ├── pg-execute.xml │ │ ├── pg-fetch-all-columns.xml │ │ ├── pg-fetch-all.xml │ │ ├── pg-fetch-array.xml │ │ ├── pg-fetch-assoc.xml │ │ ├── pg-fetch-object.xml │ │ ├── pg-fetch-result.xml │ │ ├── pg-fetch-row.xml │ │ ├── pg-field-is-null.xml │ │ ├── pg-field-name.xml │ │ ├── pg-field-num.xml │ │ ├── pg-field-prtlen.xml │ │ ├── pg-field-size.xml │ │ ├── pg-field-table.xml │ │ ├── pg-field-type-oid.xml │ │ ├── pg-field-type.xml │ │ ├── pg-free-result.xml │ │ ├── pg-get-notify.xml │ │ ├── pg-get-pid.xml │ │ ├── pg-get-result.xml │ │ ├── pg-host.xml │ │ ├── pg-insert.xml │ │ ├── pg-last-error.xml │ │ ├── pg-last-notice.xml │ │ ├── pg-last-oid.xml │ │ ├── pg-lo-close.xml │ │ ├── pg-lo-create.xml │ │ ├── pg-lo-export.xml │ │ ├── pg-lo-import.xml │ │ ├── pg-lo-open.xml │ │ ├── pg-lo-read-all.xml │ │ ├── pg-lo-read.xml │ │ ├── pg-lo-seek.xml │ │ ├── pg-lo-tell.xml │ │ ├── pg-lo-unlink.xml │ │ ├── pg-lo-write.xml │ │ ├── pg-meta-data.xml │ │ ├── pg-num-fields.xml │ │ ├── pg-num-rows.xml │ │ ├── pg-options.xml │ │ ├── pg-parameter-status.xml │ │ ├── pg-pconnect.xml │ │ ├── pg-ping.xml │ │ ├── pg-port.xml │ │ ├── pg-prepare.xml │ │ ├── pg-put-line.xml │ │ ├── pg-query-params.xml │ │ ├── pg-query.xml │ │ ├── pg-result-error-field.xml │ │ ├── pg-result-error.xml │ │ ├── pg-result-seek.xml │ │ ├── pg-result-status.xml │ │ ├── pg-select.xml │ │ ├── pg-send-execute.xml │ │ ├── pg-send-prepare.xml │ │ ├── pg-send-query-params.xml │ │ ├── pg-send-query.xml │ │ ├── pg-set-client-encoding.xml │ │ ├── pg-set-error-verbosity.xml │ │ ├── pg-trace.xml │ │ ├── pg-transaction-status.xml │ │ ├── pg-tty.xml │ │ ├── pg-unescape-bytea.xml │ │ ├── pg-untrace.xml │ │ ├── pg-update.xml │ │ └── pg-version.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── phar │ └── Phar.xml ├── posix │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── posix-access.xml │ │ ├── posix-ctermid.xml │ │ ├── posix-eaccess.xml │ │ ├── posix-errno.xml │ │ ├── posix-fpathconf.xml │ │ ├── posix-get-last-error.xml │ │ ├── posix-getcwd.xml │ │ ├── posix-getegid.xml │ │ ├── posix-geteuid.xml │ │ ├── posix-getgid.xml │ │ ├── posix-getgrgid.xml │ │ ├── posix-getgrnam.xml │ │ ├── posix-getgroups.xml │ │ ├── posix-getlogin.xml │ │ ├── posix-getpgid.xml │ │ ├── posix-getpgrp.xml │ │ ├── posix-getpid.xml │ │ ├── posix-getppid.xml │ │ ├── posix-getpwnam.xml │ │ ├── posix-getpwuid.xml │ │ ├── posix-getrlimit.xml │ │ ├── posix-getsid.xml │ │ ├── posix-getuid.xml │ │ ├── posix-initgroups.xml │ │ ├── posix-isatty.xml │ │ ├── posix-kill.xml │ │ ├── posix-mkfifo.xml │ │ ├── posix-mknod.xml │ │ ├── posix-pathconf.xml │ │ ├── posix-setegid.xml │ │ ├── posix-seteuid.xml │ │ ├── posix-setgid.xml │ │ ├── posix-setpgid.xml │ │ ├── posix-setrlimit.xml │ │ ├── posix-setsid.xml │ │ ├── posix-setuid.xml │ │ ├── posix-strerror.xml │ │ ├── posix-sysconf.xml │ │ ├── posix-times.xml │ │ ├── posix-ttyname.xml │ │ └── posix-uname.xml │ ├── reference.xml │ └── setup.xml ├── pspell │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── pspell-add-to-personal.xml │ │ ├── pspell-add-to-session.xml │ │ ├── pspell-check.xml │ │ ├── pspell-clear-session.xml │ │ ├── pspell-config-create.xml │ │ ├── pspell-config-data-dir.xml │ │ ├── pspell-config-dict-dir.xml │ │ ├── pspell-config-ignore.xml │ │ ├── pspell-config-mode.xml │ │ ├── pspell-config-personal.xml │ │ ├── pspell-config-repl.xml │ │ ├── pspell-config-runtogether.xml │ │ ├── pspell-config-save-repl.xml │ │ ├── pspell-new-config.xml │ │ ├── pspell-new-personal.xml │ │ ├── pspell-new.xml │ │ ├── pspell-save-wordlist.xml │ │ ├── pspell-store-replacement.xml │ │ └── pspell-suggest.xml │ ├── reference.xml │ └── setup.xml ├── random │ └── functions │ │ ├── getrandmax.xml │ │ ├── lcg-value.xml │ │ ├── mt-getrandmax.xml │ │ ├── mt-rand.xml │ │ ├── mt-srand.xml │ │ ├── rand.xml │ │ └── srand.xml ├── rar │ ├── book.xml │ ├── reference.xml │ └── setup.xml ├── readline │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── readline-add-history.xml │ │ ├── readline-callback-handler-install.xml │ │ ├── readline-callback-handler-remove.xml │ │ ├── readline-callback-read-char.xml │ │ ├── readline-clear-history.xml │ │ ├── readline-completion-function.xml │ │ ├── readline-info.xml │ │ ├── readline-list-history.xml │ │ ├── readline-on-new-line.xml │ │ ├── readline-read-history.xml │ │ ├── readline-redisplay.xml │ │ ├── readline-write-history.xml │ │ └── readline.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── recode │ ├── book.xml │ ├── configure.xml │ ├── functions │ │ ├── recode-file.xml │ │ ├── recode-string.xml │ │ └── recode.xml │ ├── reference.xml │ └── setup.xml ├── reflection │ ├── book.xml │ ├── examples.xml │ └── reflection.xml ├── sem │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── ftok.xml │ │ ├── msg-get-queue.xml │ │ ├── msg-queue-exists.xml │ │ ├── msg-receive.xml │ │ ├── msg-remove-queue.xml │ │ ├── msg-set-queue.xml │ │ ├── msg-stat-queue.xml │ │ ├── sem-acquire.xml │ │ ├── sem-get.xml │ │ ├── sem-release.xml │ │ ├── sem-remove.xml │ │ ├── shm-attach.xml │ │ ├── shm-detach.xml │ │ ├── shm-get-var.xml │ │ ├── shm-put-var.xml │ │ ├── shm-remove-var.xml │ │ └── shm-remove.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── session │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── session-abort.xml │ │ ├── session-cache-expire.xml │ │ ├── session-cache-limiter.xml │ │ ├── session-commit.xml │ │ ├── session-create-id.xml │ │ ├── session-decode.xml │ │ ├── session-destroy.xml │ │ ├── session-encode.xml │ │ ├── session-gc.xml │ │ ├── session-get-cookie-params.xml │ │ ├── session-id.xml │ │ ├── session-module-name.xml │ │ ├── session-name.xml │ │ ├── session-regenerate-id.xml │ │ ├── session-register-shutdown.xml │ │ ├── session-reset.xml │ │ ├── session-save-path.xml │ │ ├── session-set-cookie-params.xml │ │ ├── session-set-save-handler.xml │ │ ├── session-start.xml │ │ ├── session-status.xml │ │ ├── session-unset.xml │ │ └── session-write-close.xml │ ├── ini.xml │ ├── reference.xml │ ├── security.xml │ ├── sessionhandler.xml │ ├── sessionhandler │ │ ├── close.xml │ │ ├── create-sid.xml │ │ ├── destroy.xml │ │ ├── gc.xml │ │ ├── open.xml │ │ ├── read.xml │ │ └── write.xml │ ├── sessionhandlerinterface.xml │ ├── sessionhandlerinterface │ │ ├── close.xml │ │ ├── destroy.xml │ │ ├── gc.xml │ │ ├── open.xml │ │ ├── read.xml │ │ └── write.xml │ ├── sessionidinterface.xml │ ├── sessionidinterface │ │ └── create-sid.xml │ ├── sessionupdatetimestamphandlerinterface.xml │ ├── sessionupdatetimestamphandlerinterface │ │ ├── updatetimestamp.xml │ │ └── validateid.xml │ ├── setup.xml │ └── upload-progress.xml ├── shmop │ ├── book.xml │ ├── configure.xml │ ├── examples.xml │ ├── functions │ │ ├── shmop-close.xml │ │ ├── shmop-delete.xml │ │ ├── shmop-open.xml │ │ ├── shmop-read.xml │ │ ├── shmop-size.xml │ │ └── shmop-write.xml │ ├── reference.xml │ └── setup.xml ├── simplexml │ ├── book.xml │ ├── configure.xml │ ├── examples.xml │ ├── functions │ │ ├── simplexml-import-dom.xml │ │ ├── simplexml-load-file.xml │ │ └── simplexml-load-string.xml │ ├── reference.xml │ ├── setup.xml │ ├── simplexmlelement.xml │ ├── simplexmlelement │ │ ├── addAttribute.xml │ │ ├── addChild.xml │ │ ├── asXML.xml │ │ ├── attributes.xml │ │ ├── children.xml │ │ ├── construct.xml │ │ ├── count.xml │ │ ├── current.xml │ │ ├── getDocNamespaces.xml │ │ ├── getName.xml │ │ ├── getNamespaces.xml │ │ ├── getchildren.xml │ │ ├── haschildren.xml │ │ ├── key.xml │ │ ├── next.xml │ │ ├── registerXPathNamespace.xml │ │ ├── rewind.xml │ │ ├── savexml.xml │ │ ├── toString.xml │ │ ├── valid.xml │ │ └── xpath.xml │ └── simplexmliterator.xml ├── snmp │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── snmp-get-quick-print.xml │ │ ├── snmp-set-quick-print.xml │ │ ├── snmpget.xml │ │ ├── snmpset.xml │ │ ├── snmpwalk.xml │ │ └── snmpwalkoid.xml │ ├── reference.xml │ └── setup.xml ├── soap │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── is-soap-fault.xml │ │ └── use-soap-error-handler.xml │ ├── ini.xml │ ├── reference.xml │ ├── setup.xml │ ├── soapclient.xml │ ├── soapclient │ │ ├── call.xml │ │ ├── construct.xml │ │ ├── dorequest.xml │ │ ├── getcookies.xml │ │ ├── getfunctions.xml │ │ ├── getlastrequest.xml │ │ ├── getlastrequestheaders.xml │ │ ├── getlastresponse.xml │ │ ├── getlastresponseheaders.xml │ │ ├── gettypes.xml │ │ ├── setcookie.xml │ │ ├── setlocation.xml │ │ ├── setsoapheaders.xml │ │ └── soapcall.xml │ ├── soapfault.xml │ ├── soapfault │ │ ├── construct.xml │ │ └── tostring.xml │ ├── soapheader.xml │ ├── soapheader │ │ └── construct.xml │ ├── soapparam.xml │ ├── soapparam │ │ └── construct.xml │ ├── soapserver.xml │ ├── soapserver │ │ ├── addfunction.xml │ │ ├── addsoapheader.xml │ │ ├── construct.xml │ │ ├── fault.xml │ │ ├── getfunctions.xml │ │ ├── handle.xml │ │ ├── setclass.xml │ │ ├── setobject.xml │ │ └── setpersistence.xml │ ├── soapvar.xml │ └── soapvar │ │ └── construct.xml ├── sockets │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── errors.xml │ ├── examples.xml │ ├── functions │ │ ├── socket-accept.xml │ │ ├── socket-bind.xml │ │ ├── socket-clear-error.xml │ │ ├── socket-close.xml │ │ ├── socket-connect.xml │ │ ├── socket-create-listen.xml │ │ ├── socket-create-pair.xml │ │ ├── socket-create.xml │ │ ├── socket-get-option.xml │ │ ├── socket-getpeername.xml │ │ ├── socket-getsockname.xml │ │ ├── socket-last-error.xml │ │ ├── socket-listen.xml │ │ ├── socket-read.xml │ │ ├── socket-recv.xml │ │ ├── socket-recvfrom.xml │ │ ├── socket-select.xml │ │ ├── socket-send.xml │ │ ├── socket-sendto.xml │ │ ├── socket-set-block.xml │ │ ├── socket-set-nonblock.xml │ │ ├── socket-set-option.xml │ │ ├── socket-shutdown.xml │ │ ├── socket-strerror.xml │ │ └── socket-write.xml │ ├── reference.xml │ └── setup.xml ├── sodium │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── sodium-add.xml │ │ ├── sodium-base642bin.xml │ │ ├── sodium-bin2base64.xml │ │ ├── sodium-bin2hex.xml │ │ ├── sodium-compare.xml │ │ ├── sodium-crypto-aead-aes256gcm-decrypt.xml │ │ ├── sodium-crypto-aead-aes256gcm-encrypt.xml │ │ ├── sodium-crypto-aead-aes256gcm-is-available.xml │ │ ├── sodium-crypto-aead-aes256gcm-keygen.xml │ │ ├── sodium-crypto-aead-chacha20poly1305-decrypt.xml │ │ ├── sodium-crypto-aead-chacha20poly1305-encrypt.xml │ │ ├── sodium-crypto-aead-chacha20poly1305-ietf-decrypt.xml │ │ ├── sodium-crypto-aead-chacha20poly1305-ietf-encrypt.xml │ │ ├── sodium-crypto-aead-chacha20poly1305-ietf-keygen.xml │ │ ├── sodium-crypto-aead-chacha20poly1305-keygen.xml │ │ ├── sodium-crypto-aead-xchacha20poly1305-ietf-decrypt.xml │ │ ├── sodium-crypto-aead-xchacha20poly1305-ietf-encrypt.xml │ │ ├── sodium-crypto-aead-xchacha20poly1305-ietf-keygen.xml │ │ ├── sodium-hex2bin.xml │ │ ├── sodium-increment.xml │ │ ├── sodium-memcmp.xml │ │ ├── sodium-memzero.xml │ │ ├── sodium-pad.xml │ │ └── sodium-unpad.xml │ ├── reference.xml │ ├── setup.xml │ └── sodiumexception.xml ├── solr │ ├── book.xml │ ├── constants.xml │ ├── examples.xml │ ├── reference.xml │ ├── setup.xml │ ├── solrclient.xml │ ├── solrclientexception.xml │ ├── solrcollapsefunction.xml │ ├── solrdismaxquery.xml │ ├── solrdocument.xml │ ├── solrdocumentfield.xml │ ├── solrexception.xml │ ├── solrgenericresponse.xml │ ├── solrillegalargumentexception.xml │ ├── solrillegaloperationexception.xml │ ├── solrinputdocument.xml │ ├── solrmissingmandatoryparameterexception.xml │ ├── solrmodifiableparams.xml │ ├── solrobject.xml │ ├── solrparams.xml │ ├── solrpingresponse.xml │ ├── solrquery.xml │ ├── solrqueryresponse.xml │ ├── solrresponse.xml │ ├── solrserverexception.xml │ ├── solrupdateresponse.xml │ └── solrutils.xml ├── spl │ ├── appenditerator.xml │ ├── arrayiterator.xml │ ├── arrayobject.xml │ ├── badfunctioncallexception.xml │ ├── badmethodcallexception.xml │ ├── book.xml │ ├── domainexception.xml │ ├── emptyiterator.xml │ ├── functions │ │ ├── spl-autoload-extensions.xml │ │ └── spl-autoload-functions.xml │ ├── invalidargumentexception.xml │ ├── lengthexception.xml │ └── recursivedirectoryiterator │ │ └── next.xml ├── sqlite3 │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── ini.xml │ ├── setup.xml │ ├── sqlite3.xml │ ├── sqlite3 │ │ ├── changes.xml │ │ ├── close.xml │ │ ├── construct.xml │ │ ├── createaggregate.xml │ │ ├── createfunction.xml │ │ ├── escapestring.xml │ │ ├── exec.xml │ │ ├── lasterrorcode.xml │ │ ├── lasterrormsg.xml │ │ ├── lastinsertrowid.xml │ │ ├── loadextension.xml │ │ ├── open.xml │ │ ├── prepare.xml │ │ └── query.xml │ ├── sqlite3result.xml │ └── sqlite3stmt.xml ├── ssh2 │ └── book.xml ├── stream │ └── reference.xml ├── strings │ ├── book.xml │ ├── charsets.xml │ ├── constants.xml │ ├── functions │ │ ├── addcslashes.xml │ │ ├── addslashes.xml │ │ ├── bin2hex.xml │ │ ├── chop.xml │ │ ├── chr.xml │ │ ├── chunk-split.xml │ │ ├── convert-cyr-string.xml │ │ ├── convert-uudecode.xml │ │ ├── convert-uuencode.xml │ │ ├── count-chars.xml │ │ ├── crc32.xml │ │ ├── crypt.xml │ │ ├── echo.xml │ │ ├── explode.xml │ │ ├── fprintf.xml │ │ ├── get-html-translation-table.xml │ │ ├── hebrev.xml │ │ ├── hebrevc.xml │ │ ├── hex2bin.xml │ │ ├── html-entity-decode.xml │ │ ├── htmlentities.xml │ │ ├── htmlspecialchars-decode.xml │ │ ├── htmlspecialchars.xml │ │ ├── implode.xml │ │ ├── join.xml │ │ ├── lcfirst.xml │ │ ├── levenshtein.xml │ │ ├── localeconv.xml │ │ ├── ltrim.xml │ │ ├── md5-file.xml │ │ ├── md5.xml │ │ ├── metaphone.xml │ │ ├── money-format.xml │ │ ├── nl-langinfo.xml │ │ ├── nl2br.xml │ │ ├── number-format.xml │ │ ├── ord.xml │ │ ├── parse-str.xml │ │ ├── print.xml │ │ ├── printf.xml │ │ ├── quoted-printable-decode.xml │ │ ├── quoted-printable-encode.xml │ │ ├── quotemeta.xml │ │ ├── rtrim.xml │ │ ├── setlocale.xml │ │ ├── sha1-file.xml │ │ ├── sha1.xml │ │ ├── similar-text.xml │ │ ├── soundex.xml │ │ ├── sprintf.xml │ │ ├── sscanf.xml │ │ ├── str-contains.xml │ │ ├── str-decrement.xml │ │ ├── str-ends-with.xml │ │ ├── str-getcsv.xml │ │ ├── str-increment.xml │ │ ├── str-ireplace.xml │ │ ├── str-pad.xml │ │ ├── str-repeat.xml │ │ ├── str-replace.xml │ │ ├── str-rot13.xml │ │ ├── str-shuffle.xml │ │ ├── str-split.xml │ │ ├── str-starts-with.xml │ │ ├── str-word-count.xml │ │ ├── strcasecmp.xml │ │ ├── strchr.xml │ │ ├── strcmp.xml │ │ ├── strcoll.xml │ │ ├── strcspn.xml │ │ ├── strip-tags.xml │ │ ├── stripcslashes.xml │ │ ├── stripos.xml │ │ ├── stripslashes.xml │ │ ├── stristr.xml │ │ ├── strlen.xml │ │ ├── strnatcasecmp.xml │ │ ├── strnatcmp.xml │ │ ├── strncasecmp.xml │ │ ├── strncmp.xml │ │ ├── strpbrk.xml │ │ ├── strpos.xml │ │ ├── strrchr.xml │ │ ├── strrev.xml │ │ ├── strripos.xml │ │ ├── strrpos.xml │ │ ├── strspn.xml │ │ ├── strstr.xml │ │ ├── strtok.xml │ │ ├── strtolower.xml │ │ ├── strtoupper.xml │ │ ├── strtr.xml │ │ ├── substr-compare.xml │ │ ├── substr-count.xml │ │ ├── substr-replace.xml │ │ ├── substr.xml │ │ ├── trim.xml │ │ ├── ucfirst.xml │ │ ├── ucwords.xml │ │ ├── utf8-decode.xml │ │ ├── utf8-encode.xml │ │ ├── vfprintf.xml │ │ ├── vprintf.xml │ │ ├── vsprintf.xml │ │ └── wordwrap.xml │ ├── reference.xml │ └── setup.xml ├── tokenizer │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── token-get-all.xml │ │ └── token-name.xml │ ├── reference.xml │ └── setup.xml ├── uodbc │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── functions │ │ ├── odbc-autocommit.xml │ │ ├── odbc-binmode.xml │ │ ├── odbc-close-all.xml │ │ ├── odbc-close.xml │ │ ├── odbc-columnprivileges.xml │ │ ├── odbc-commit.xml │ │ ├── odbc-connect.xml │ │ ├── odbc-cursor.xml │ │ ├── odbc-do.xml │ │ ├── odbc-exec.xml │ │ ├── odbc-execute.xml │ │ ├── odbc-fetch-into.xml │ │ ├── odbc-fetch-row.xml │ │ ├── odbc-field-len.xml │ │ ├── odbc-field-name.xml │ │ ├── odbc-field-num.xml │ │ ├── odbc-field-type.xml │ │ ├── odbc-free-result.xml │ │ ├── odbc-longreadlen.xml │ │ ├── odbc-num-fields.xml │ │ ├── odbc-num-rows.xml │ │ ├── odbc-pconnect.xml │ │ ├── odbc-prepare.xml │ │ ├── odbc-result-all.xml │ │ ├── odbc-result.xml │ │ ├── odbc-rollback.xml │ │ └── odbc-setoption.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── url │ ├── book.xml │ ├── constants.xml │ ├── functions │ │ ├── base64-decode.xml │ │ ├── base64-encode.xml │ │ ├── get-headers.xml │ │ ├── get-meta-tags.xml │ │ ├── http-build-query.xml │ │ ├── parse-url.xml │ │ ├── rawurldecode.xml │ │ ├── rawurlencode.xml │ │ ├── urldecode.xml │ │ └── urlencode.xml │ └── reference.xml ├── v8js │ ├── book.xml │ ├── configure.xml │ ├── examples.xml │ ├── ini.xml │ ├── setup.xml │ ├── v8js.xml │ ├── v8js │ │ ├── construct.xml │ │ ├── executestring.xml │ │ ├── getextensions.xml │ │ ├── getpendingexception.xml │ │ └── registerextension.xml │ └── v8jsexception.xml ├── var │ ├── book.xml │ ├── functions │ │ ├── doubleval.xml │ │ ├── empty.xml │ │ ├── floatval.xml │ │ ├── get-defined-vars.xml │ │ ├── get-resource-type.xml │ │ ├── gettype.xml │ │ ├── intval.xml │ │ ├── is-array.xml │ │ ├── is-bool.xml │ │ ├── is-callable.xml │ │ ├── is-double.xml │ │ ├── is-float.xml │ │ ├── is-int.xml │ │ ├── is-integer.xml │ │ ├── is-long.xml │ │ ├── is-null.xml │ │ ├── is-numeric.xml │ │ ├── is-object.xml │ │ ├── is-real.xml │ │ ├── is-resource.xml │ │ ├── is-scalar.xml │ │ ├── is-string.xml │ │ ├── isset.xml │ │ ├── print-r.xml │ │ ├── serialize.xml │ │ ├── settype.xml │ │ ├── strval.xml │ │ ├── unserialize.xml │ │ ├── unset.xml │ │ ├── var-dump.xml │ │ └── var-export.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── wddx │ └── functions │ │ ├── wddx-add-vars.xml │ │ ├── wddx-deserialize.xml │ │ ├── wddx-packet-end.xml │ │ ├── wddx-packet-start.xml │ │ ├── wddx-serialize-value.xml │ │ └── wddx-serialize-vars.xml ├── xml │ ├── constants.xml │ ├── error-codes.xml │ └── reference.xml ├── xmlreader │ ├── book.xml │ ├── setup.xml │ ├── xmlreader.xml │ └── xmlreader │ │ ├── close.xml │ │ ├── expand.xml │ │ ├── getattribute.xml │ │ ├── getattributeno.xml │ │ ├── getattributens.xml │ │ ├── getparserproperty.xml │ │ ├── isvalid.xml │ │ ├── lookupnamespace.xml │ │ ├── movetoattribute.xml │ │ ├── movetoattributeno.xml │ │ ├── movetoattributens.xml │ │ ├── movetoelement.xml │ │ ├── movetofirstattribute.xml │ │ ├── movetonextattribute.xml │ │ ├── next.xml │ │ ├── open.xml │ │ ├── read.xml │ │ ├── readinnerxml.xml │ │ ├── readouterxml.xml │ │ ├── readstring.xml │ │ ├── setparserproperty.xml │ │ ├── setrelaxngschema.xml │ │ ├── setrelaxngschemasource.xml │ │ ├── setschema.xml │ │ └── xml.xml ├── xmlwriter │ ├── book.xml │ ├── examples.xml │ ├── setup.xml │ ├── xmlwriter.xml │ └── xmlwriter │ │ ├── endattribute.xml │ │ ├── endcdata.xml │ │ ├── endcomment.xml │ │ ├── enddocument.xml │ │ ├── enddtd.xml │ │ ├── enddtdattlist.xml │ │ ├── enddtdelement.xml │ │ ├── enddtdentity.xml │ │ ├── endelement.xml │ │ ├── endpi.xml │ │ ├── flush.xml │ │ ├── fullendelement.xml │ │ ├── openmemory.xml │ │ ├── openuri.xml │ │ ├── outputmemory.xml │ │ ├── setindent.xml │ │ ├── setindentstring.xml │ │ ├── startattribute.xml │ │ ├── startattributens.xml │ │ ├── startcdata.xml │ │ ├── startcomment.xml │ │ ├── startdocument.xml │ │ ├── startdtd.xml │ │ ├── startdtdattlist.xml │ │ ├── startdtdelement.xml │ │ ├── startdtdentity.xml │ │ ├── startelement.xml │ │ ├── startelementns.xml │ │ ├── startpi.xml │ │ ├── text.xml │ │ ├── writeattribute.xml │ │ ├── writeattributens.xml │ │ ├── writecdata.xml │ │ ├── writecomment.xml │ │ ├── writedtd.xml │ │ ├── writedtdattlist.xml │ │ ├── writedtdelement.xml │ │ ├── writedtdentity.xml │ │ ├── writeelement.xml │ │ ├── writeelementns.xml │ │ ├── writepi.xml │ │ └── writeraw.xml ├── xsl │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── setup.xml │ ├── xsltprocessor.xml │ └── xsltprocessor │ │ ├── construct.xml │ │ ├── getparameter.xml │ │ ├── getsecurityprefs.xml │ │ ├── hasexsltsupport.xml │ │ ├── importstylesheet.xml │ │ ├── registerphpfunctions.xml │ │ ├── removeparameter.xml │ │ ├── setparameter.xml │ │ ├── setprofiling.xml │ │ ├── setsecurityprefs.xml │ │ ├── transformtodoc.xml │ │ ├── transformtouri.xml │ │ └── transformtoxml.xml ├── zip │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ │ ├── zip-close.xml │ │ ├── zip-entry-close.xml │ │ ├── zip-entry-compressedsize.xml │ │ ├── zip-entry-compressionmethod.xml │ │ ├── zip-entry-filesize.xml │ │ ├── zip-entry-name.xml │ │ ├── zip-entry-open.xml │ │ ├── zip-entry-read.xml │ │ ├── zip-open.xml │ │ └── zip-read.xml │ ├── reference.xml │ ├── setup.xml │ ├── ziparchive.xml │ └── ziparchive │ │ ├── addemptydir.xml │ │ ├── addfile.xml │ │ ├── addfromstring.xml │ │ ├── close.xml │ │ ├── deleteindex.xml │ │ ├── deletename.xml │ │ ├── extractto.xml │ │ ├── getarchivecomment.xml │ │ ├── getcommentindex.xml │ │ ├── getcommentname.xml │ │ ├── getfromindex.xml │ │ ├── getfromname.xml │ │ ├── getnameindex.xml │ │ ├── getstatusstring.xml │ │ ├── getstream.xml │ │ ├── locatename.xml │ │ ├── open.xml │ │ ├── renameindex.xml │ │ ├── renamename.xml │ │ ├── setarchivecomment.xml │ │ ├── setcommentindex.xml │ │ ├── setcommentname.xml │ │ ├── statindex.xml │ │ ├── statname.xml │ │ ├── unchangeall.xml │ │ ├── unchangearchive.xml │ │ ├── unchangeindex.xml │ │ └── unchangename.xml └── zlib │ ├── book.xml │ ├── configure.xml │ ├── constants.xml │ ├── examples.xml │ ├── functions │ ├── gzclose.xml │ ├── gzcompress.xml │ ├── gzdecode.xml │ ├── gzdeflate.xml │ ├── gzeof.xml │ ├── gzfile.xml │ ├── gzgetc.xml │ ├── gzgetss.xml │ ├── gzinflate.xml │ ├── gzopen.xml │ ├── gzpassthru.xml │ ├── gzputs.xml │ ├── gzread.xml │ ├── gzrewind.xml │ ├── gzseek.xml │ ├── gztell.xml │ ├── gzuncompress.xml │ ├── gzwrite.xml │ ├── readgzfile.xml │ ├── zlib-decode.xml │ ├── zlib-encode.xml │ └── zlib-get-coding-type.xml │ ├── ini.xml │ ├── reference.xml │ └── setup.xml ├── security ├── apache.xml ├── cgi-bin.xml ├── current.xml ├── database.xml ├── errors.xml ├── figures │ └── xkcd-bobby-tables.png ├── filesystem.xml ├── general.xml ├── hiding.xml ├── intro.xml ├── sessions.xml └── variables.xml └── translation.xml /.editorconfig: -------------------------------------------------------------------------------- 1 | ; This file is for unifying the coding style for different editors and IDEs. 2 | ; More information at https://editorconfig.org 3 | 4 | root = true 5 | 6 | [*.xml] 7 | charset = utf-8 8 | indent_size = 1 9 | indent_style = space 10 | end_of_line = lf 11 | insert_final_newline = true 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.xml linguist-detectable 2 | *.ent linguist-language=XML linguist-detectable 3 | -------------------------------------------------------------------------------- /appendices/ini.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &php.ini; Direktiven 7 | 8 | &appendices.ini.list; 9 | &appendices.ini.sections; 10 | &appendices.ini.core; 11 | 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /appendices/migration74/new-classes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Neue Klassen und Interfaces 7 | 8 | 9 | Reflection 10 | 11 | 12 | 13 | 14 | ReflectionReference 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 42 | -------------------------------------------------------------------------------- /appendices/migration83/windows-support.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Windows-Unterstützung 6 | 7 | 8 | PHP-Kern 9 | 10 | 11 | Die niedrigste unterstützte Windows-Version wurde auf Windows 8 oder 12 | Windows Server 2012 angehoben. 13 | 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /appendices/reserved.constants.standard.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Vordefinierte Standard-Konstanten 7 | 8 | Alle Konstanten der Kern-Extensions 9 | sind in PHP automatisch definiert. 10 | 11 | 12 | 13 | 30 | -------------------------------------------------------------------------------- /install/cloud/ec2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Amazon EC2 7 | 8 | PHP kann auf der EC2 Cloud Plattform installiert werden. 9 | 10 | 11 | Siehe auch AWS SDK für PHP. 12 | 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /install/cloud/index.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Installation auf Cloud Computing Platformen 6 | 7 | PHP installiert in der Wolke. Auf zur PHP Wolke! 8 | 9 | &install.cloud.azure; 10 | &install.cloud.ec2; 11 | &install.cloud.digitalocean; 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /install/macos/compile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Kompilieren von PHP unter macOS 7 | 8 | Um PHP unter macOS zu kompilieren, nutzen Sie die 9 | Unix-Installationsanleitung. 10 | 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /install/windows/building.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Erstellen aus dem Quellcode 7 | 8 | Siehe die Schritt für 9 | Schritt Anleitung für die Kompilierung mit Visual Studio. 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/apache/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Apache &Functions; 7 | 8 | &reference.apache.entities.functions; 9 | 10 | 11 | 31 | 32 | -------------------------------------------------------------------------------- /reference/bc/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | Diese Funktionen sind nur verfügbar, wenn PHP mit konfiguriert wurde. 9 | 10 | &windows.builtin; 11 |
12 | 13 | -------------------------------------------------------------------------------- /reference/bc/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | BC Math &Functions; 8 | &reference.bc.entities.functions; 9 | 10 | 11 | 12 | 29 | -------------------------------------------------------------------------------- /reference/bc/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | 9 | &reference.bc.configure; 10 | 11 | 12 | 13 | &reference.bc.ini; 14 | 15 | 16 | 17 | 18 | 38 | 39 | -------------------------------------------------------------------------------- /reference/bzip2/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | &reftitle.install; 7 | 8 | Die Bzip2-Unterstützung ist in PHP nicht standardmäßig aktiviert. 9 | Es ist erforderlich, die Option 10 | beim Kompilieren von PHP anzugeben. 11 | 12 |
13 | 14 | 34 | -------------------------------------------------------------------------------- /reference/bzip2/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Bzip2 &Functions; 8 | 9 | &reference.bzip2.entities.functions; 10 | 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /reference/calendar/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | Um diese Funktionen nutzen zu können müssen sie PHP mit 8 | kompilieren. 9 | 10 | &windows.builtin; 11 |
12 | 32 | -------------------------------------------------------------------------------- /reference/calendar/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Calendar &Functions; 7 | 8 | &reference.calendar.entities.functions; 9 | 10 | 11 | 31 | 32 | -------------------------------------------------------------------------------- /reference/calendar/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | 9 | &reference.calendar.configure; 10 | 11 | 12 | 13 | 14 | 34 | 35 | -------------------------------------------------------------------------------- /reference/classobj/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Klassen- und Objekt-&Functions; 7 | 8 | &reference.classobj.entities.functions; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/ctype/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | &installation.enabled.disable; 8 | 9 | 10 | &windows.builtin; 11 |
12 | 13 | 33 | -------------------------------------------------------------------------------- /reference/ctype/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Ctype &Functions; 7 | 8 | &reference.ctype.entities.functions; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/ctype/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 |
9 | &reftitle.required; 10 | 11 | Keine, außer der Funktionen aus der C-Standardbibliothek, die immer 12 | verfügbar sind. 13 | 14 |
15 | 16 | &reference.ctype.configure; 17 | 18 |
19 | 20 | 21 | 41 | 42 | -------------------------------------------------------------------------------- /reference/curl/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | cURL &Functions; 7 | 8 | &reference.curl.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/datetime/functions/date-add.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | date_add 8 | &Alias; DateTime::add 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; DateTime::add 15 | 16 | 17 | 18 | 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/datetime/functions/date-date-set.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | date_date_set 8 | &Alias; DateTime::setDate 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; DateTime::setDate 15 | 16 | 17 | 18 | 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/datetime/functions/date-format.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | date_format 8 | &Alias; DateTime::format 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; DateTime::format 15 | 16 | 17 | 18 | 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/datetime/functions/date-modify.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | date_modify 8 | &Alias; DateTime::modify 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; DateTime::modify 15 | 16 | 17 | 18 | 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/datetime/functions/date-offset-get.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | date_offset_get 8 | &Alias; DateTime::getOffset 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; DateTime::getOffset 15 | 16 | 17 | 18 | 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/datetime/functions/date-time-set.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | date_time_set 8 | &Alias; DateTime::setTime 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; DateTime::setTime 15 | 16 | 17 | 18 | 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/datetime/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Datum/Uhrzeit-&Functions; 7 | 8 | &reference.datetime.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/datetime/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | 9 | &reference.datetime.configure; 10 | 11 | 12 | 13 | &reference.datetime.ini; 14 | 15 | 16 | 17 | 18 | 38 | 39 | -------------------------------------------------------------------------------- /reference/dba/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DBA-&Functions; 6 | 7 | &reference.dba.entities.functions; 8 | 9 | 10 | 11 | 31 | 32 | -------------------------------------------------------------------------------- /reference/dbase/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | &reftitle.install; 7 | 8 | &pecl.info; 9 | &url.pecl.package;dbase. 10 | 11 |
12 | 13 | 33 | -------------------------------------------------------------------------------- /reference/dio/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | &reftitle.install; 7 | 8 | &pecl.moved; 9 | 10 | 11 | &pecl.info; 12 | &url.pecl.package;dio. 13 | 14 |
15 | 16 | 36 | -------------------------------------------------------------------------------- /reference/dio/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Direct-IO-&Functions; 7 | 8 | &reference.dio.entities.functions; 9 | 10 | 11 | 31 | 32 | -------------------------------------------------------------------------------- /reference/dir/book.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Verzeichnis-&Functions; 8 | 9 | 17 | 18 | &reference.dir.constants; 19 | &reference.dir.directory; 20 | &reference.dir.reference; 21 | 22 | 23 | 24 | 44 | -------------------------------------------------------------------------------- /reference/dir/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Verzeichnis-&Functions; 6 | 7 | 8 | &reftitle.seealso; 9 | 10 | Für verwandte Funktionen wie zum Beispiel dirname, 11 | is_dir, mkdir und 12 | rmdir, lesen Sie auch das 13 | Filesystem-Kapitel. 14 | 15 | 16 | 17 | &reference.dir.entities.functions; 18 | 19 | 20 | 21 | 38 | -------------------------------------------------------------------------------- /reference/errorfunc/functions/user-error.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | user_error 7 | &Alias; trigger_error 8 | 9 | 10 | &reftitle.description; 11 | 12 | &info.function.alias; trigger_error. 13 | 14 | 15 | 16 | 36 | -------------------------------------------------------------------------------- /reference/errorfunc/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Fehlerbehandlungsfunktionen 7 | 8 | &reftitle.seealso; 9 | 10 | &Seealso; syslog. 11 | 12 | 13 | 14 | &reference.errorfunc.entities.functions; 15 | 16 | 17 | 18 | 38 | 39 | -------------------------------------------------------------------------------- /reference/errorfunc/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | &reftitle.setup; 6 | 7 | &reference.errorfunc.ini; 8 | 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /reference/exec/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | 9 |
10 | &reftitle.resources; 11 | 12 | Diese Extension definiert eine process-Ressource, die von 13 | proc_open zurückgegeben wird. 14 | 15 |
16 | 17 | 18 |
19 | 20 | 40 | 41 | -------------------------------------------------------------------------------- /reference/exif/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Exif-&Functions; 7 | 8 | &reference.exif.entities.functions; 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /reference/fdf/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FDF &Functions; 6 | FDF 7 | 8 | 9 | &reference.fdf.entities.functions; 10 | 11 | 12 | 13 | 33 | 34 | -------------------------------------------------------------------------------- /reference/fileinfo/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Fileinfo &Functions; 7 | 8 | &reference.fileinfo.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/filesystem/functions/fputs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | fputs 8 | &Alias; fwrite 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; 15 | fwrite. 16 | 17 | 18 | 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/filesystem/functions/is-writeable.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | is_writeable 7 | &Alias; is_writable 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | is_writable. 15 | 16 | 17 | 18 | 19 | 20 | 40 | -------------------------------------------------------------------------------- /reference/filesystem/functions/set-file-buffer.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | set_file_buffer 8 | &Alias; stream_set_write_buffer 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; 15 | stream_set_write_buffer. 16 | 17 | 18 | 19 | 20 | 40 | -------------------------------------------------------------------------------- /reference/filter/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | &installation.enabled.disable; 8 | 9 | 10 |
11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /reference/filter/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Filter-&Functions; 7 | 8 | &reference.filter.entities.functions; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/filter/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | &reference.filter.configure; 9 | 10 | &reference.filter.ini; 11 | 12 | 13 | 14 | 34 | 35 | -------------------------------------------------------------------------------- /reference/fpm/book.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | FastCGI Prozess-Manager 7 | 8 | 9 | &reftitle.intro; 10 | &fpm.intro; 11 | 12 | Dieses SAPI ist mit PHP gebündelt. 13 | 14 | 15 | 16 | &reference.fpm.setup; 17 | &reference.fpm.observability; 18 | &reference.fpm.reference; 19 | 20 | 21 | -------------------------------------------------------------------------------- /reference/fpm/observability.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Beobachtbarkeit 6 | 7 | &reference.fpm.status; 8 | 9 | 10 | -------------------------------------------------------------------------------- /reference/fpm/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FPM-&Functions; 6 | 7 | &reference.fpm.entities.functions; 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /reference/fpm/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | &reftitle.setup; 6 | 7 | 8 | Informationen zur Installation und Konfiguration von FPM finden Sie im 9 | Installations- und Konfigurationsabschnitt 10 | des PHP-Handbuchs. 11 | 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /reference/ftp/functions/ftp-quit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ftp_quit 7 | &Alias; ftp_close 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | ftp_close. 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/ftp/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | FTP-&Functions; 7 | 8 | &reference.ftp.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/funchand/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Function handling &Functions; 7 | 8 | &reference.funchand.entities.functions; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/gettext/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | Um GNU gettext-Unterstützung in Ihrem PHP einzubinden, müssen Sie die Option 8 | Ihrer 9 | Build-Konfiguration hinzufügen. Dabei steht DIR für das 10 | gettext-Installationsverzeichnis, standardmäßig gesetzt auf 11 | /usr/local. 12 | 13 |
14 | 15 | 35 | -------------------------------------------------------------------------------- /reference/gettext/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Gettext-&Functions; 7 | &reference.gettext.entities.functions; 8 | 9 | 10 | 11 | 28 | -------------------------------------------------------------------------------- /reference/gmp/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | &reftitle.install; 7 | 8 | Damit diese Funktionen verfügbar sind, muss PHP mit 9 | GMP-Support durch Verwendung der -Option kompiliert werden. 11 | 12 |
13 | 14 | 34 | -------------------------------------------------------------------------------- /reference/gmp/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | GMP &Functions; 7 | 8 | 9 |
10 | &reftitle.seealso; 11 | 12 | Weitere mathematische Funktionen finden Sie im Kapitel 13 | . 14 | 15 |
16 |
17 | 18 | &reference.gmp.entities.functions; 19 | 20 |
21 | 22 | 42 | -------------------------------------------------------------------------------- /reference/gnupg/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | &reftitle.install; 7 | 8 | &pecl.info; 9 | . 10 | 11 |
12 | 13 | 33 | 34 | -------------------------------------------------------------------------------- /reference/hash/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Hash-&Functions; 7 | 8 | &reference.hash.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/image/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | GD- und Image-&Functions; 7 | 8 | &reference.image.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/imap/functions/imap-listmailbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | imap_listmailbox 7 | &Alias; imap_list 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | imap_list. 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/imap/functions/imap-listsubscribed.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | imap_listsubscribed 7 | &Alias; imap_lsub 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | imap_lsub. 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/imap/functions/imap-scan.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | imap_scan 7 | &Alias; imap_listscan 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | imap_listscan. 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/imap/functions/imap-scanmailbox.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | imap_scanmailbox 7 | &Alias; imap_listscan 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | imap_listscan. 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/info/functions/get-required-files.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | get_required_files 7 | &Alias; get_included_files 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; get_included_files. 14 | 15 | 16 | 17 | 18 | 38 | -------------------------------------------------------------------------------- /reference/info/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | PHP-Optionen-/-Informationen-&Functions; 7 | 8 | &reference.info.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/info/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | &reference.info.ini; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/json/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | JSON-&Functions; 7 | 8 | &reference.json.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/ldap/functions/ldap-close.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ldap_close 7 | &Alias; ldap_unbind 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; ldap_unbind. 14 | 15 | 16 | 17 | 18 | 38 | -------------------------------------------------------------------------------- /reference/ldap/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | LDAP &Functions; 7 | &reference.ldap.entities.functions; 8 | 9 | 10 | 11 | 31 | 32 | -------------------------------------------------------------------------------- /reference/mail/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mail-Funktionen 7 | 8 | &reference.mail.entities.functions; 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /reference/math/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Mathematische &Functions; 8 | &reference.math.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/mcrypt/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | &reftitle.install; 8 | 9 | &pecl.moved-ver;7.2.0 10 | 11 | 12 | &pecl.info; 13 | &url.pecl.package;mcrypt. 14 | 15 |
16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/mcrypt/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Mcrypt &Functions; 8 | 9 | &reference.mcrypt.entities.functions; 10 | 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /reference/memcache/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Memcache &Functions; 8 | &reference.memcache.entities.functions; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/misc/functions/show-source.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | show_source 8 | &Alias; highlight_file 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; 15 | highlight_file. 16 | 17 | 18 | 19 | 20 | 21 | 22 | 42 | -------------------------------------------------------------------------------- /reference/misc/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Sonstige &Functions; 8 | &reference.misc.entities.functions; 9 | 10 | 11 | 12 | 29 | -------------------------------------------------------------------------------- /reference/misc/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | &reference.misc.ini; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/mysql_xdevapi/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Mysql_xdevapi-&Functions; 8 | 9 | &reference.mysql-xdevapi.entities.functions; 10 | 11 | 12 | 13 | 33 | -------------------------------------------------------------------------------- /reference/mysqli/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Aliase und veraltete MySQLi &Functions; 8 | 9 | &reference.mysqli.entities.functions; 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/network/functions/dns-check-record.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | dns_check_record 7 | &Alias; checkdnsrr 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | checkdnsrr. 15 | 16 | 17 | 18 | 19 | 20 | 21 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /reference/network/functions/dns-get-mx.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | dns_get_mx 7 | &Alias; getmxrr 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | getmxrr. 15 | 16 | 17 | 18 | 19 | 20 | 21 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /reference/network/functions/socket-get-status.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | socket_get_status 7 | &Alias; stream_get_meta_data 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | stream_get_meta_data. 15 | 16 | 17 | 18 | 19 | 20 | 40 | -------------------------------------------------------------------------------- /reference/network/functions/socket-set-timeout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | socket_set_timeout 7 | &Alias; stream_set_timeout 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | stream_set_timeout. 15 | 16 | 17 | 18 | 19 | 20 | 40 | -------------------------------------------------------------------------------- /reference/network/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Netzwerk-&Functions; 8 | &reference.network.entities.functions; 9 | 10 | 11 | 12 | 29 | -------------------------------------------------------------------------------- /reference/oci8/aliases.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | OCI8 - Veraltete Aliase und Funktionen 6 | 7 | &reference.oci8.entities.oldaliases; 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocibindbyname.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | ocibindbyname 8 | &Alias; oci_bind_by_name 9 | 10 | 11 | 12 | &reftitle.description; 13 | &Alias; oci_bind_by_name 14 | &warn.deprecated.alias-5-4-0; 15 | 16 | 17 | 18 | 19 | 20 | 40 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicancel.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicancel 7 | &Alias; oci_cancel 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_cancel 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicloselob.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicloselob 7 | &Alias; OCILob::close 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCILob::close 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 38 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicollappend.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicollappend 7 | &Alias; OCICollection::append 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCICollection::append 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicollassign.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicollassign 7 | &Alias; OCICollection::assign 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCICollection::assign 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicollassignelem.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicollassignelem 7 | &Alias; OCICollection::assignElem 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCICollection::assignElem 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicollgetelem.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicollgetelem 7 | &Alias; OCICollection::getElem 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCICollection::getElem 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicollmax.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicollmax 7 | &Alias; OCICollection::max 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCICollection::max 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicollsize.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicollsize 7 | &Alias; OCICollection::size 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCICollection::size 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicolltrim.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicolltrim 7 | &Alias; OCICollection::trim 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCICollection::trim 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicolumnisnull.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicolumnisnull 7 | &Alias; oci_field_is_null 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_field_is_null 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicolumnname.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicolumnname 7 | &Alias; oci_field_name 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_field_name 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicolumnprecision.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicolumnprecision 7 | &Alias; oci_field_precision 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_field_precision 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicolumnscale.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicolumnscale 7 | &Alias; oci_field_scale 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_field_scale 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicolumnsize.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicolumnsize 7 | &Alias; oci_field_size 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_field_size 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicolumntype.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicolumntype 7 | &Alias; oci_field_type 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_field_type 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicolumntyperaw.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicolumntyperaw 7 | &Alias; oci_field_type_raw 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_field_type_raw 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocicommit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocicommit 7 | &Alias; oci_commit 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_commit 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocidefinebyname.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocidefinebyname 7 | &Alias; oci_define_by_name 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_define_by_name 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocierror.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocierror 7 | &Alias; oci_error 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_error 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ociexecute.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ociexecute 7 | &Alias; oci_execute 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_execute 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocifetch.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocifetch 7 | &Alias; oci_fetch 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_fetch 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocifetchstatement.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocifetchstatement 7 | &Alias; oci_fetch_all 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_fetch_all 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocifreecollection.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocifreecollection 7 | &Alias; OCICollection::free 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCICollection::free 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocifreecursor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocifreecursor 7 | &Alias; oci_free_statement 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_free_statement 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocifreedesc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocifreedesc 7 | &Alias; OCILob::free 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCILob::free 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 38 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocifreestatement.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocifreestatement 7 | &Alias; oci_free_statement 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_free_statement 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ociinternaldebug.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ociinternaldebug 7 | &Alias; oci_internal_debug 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_internal_debug 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ociloadlob.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ociloadlob 7 | &Alias; OCILob::load 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCILob::load 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocilogoff.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocilogoff 7 | &Alias; oci_close 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_close 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocilogon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocilogon 7 | &Alias; oci_connect 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_connect 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocinewcollection.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocinewcollection 7 | &Alias; oci_new_collection 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_new_collection 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocinewcursor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocinewcursor 7 | &Alias; oci_new_cursor 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_new_cursor 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocinewdescriptor.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocinewdescriptor 7 | &Alias; oci_new_descriptor 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_new_descriptor 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocinlogon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocinlogon 7 | &Alias; oci_new_connect 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_new_connect 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocinumcols.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocinumcols 7 | &Alias; oci_num_fields 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_num_fields 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ociparse.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ociparse 7 | &Alias; oci_parse 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_parse 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ociplogon.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ociplogon 7 | &Alias; oci_pconnect 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_pconnect 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ociresult.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ociresult 7 | &Alias; oci_result 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_result 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocirollback.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocirollback 7 | &Alias; oci_rollback 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_rollback 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocirowcount.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocirowcount 7 | &Alias; oci_num_rows 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_num_rows 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocisavelob.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocisavelob 7 | &Alias; OCILob::save 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCILob::save 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocisavelobfile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocisavelobfile 7 | &Alias; OCILob::import 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCILob::import 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ociserverversion.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ociserverversion 7 | &Alias; oci_server_version 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_server_version 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocisetprefetch.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocisetprefetch 7 | &Alias; oci_set_prefetch 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_set_prefetch 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ocistatementtype.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ocistatementtype 7 | &Alias; oci_statement_type 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; oci_statement_type 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/oci8/oldaliases/ociwritelobtofile.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ociwritelobtofile 7 | &Alias; OCILob::export 8 | 9 | 10 | 11 | &reftitle.description; 12 | &Alias; OCILob::export 13 | &warn.deprecated.alias-5-4-0; 14 | 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/opcache/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | OPcache &Functions; 8 | 9 | &reference.opcache.entities.functions; 10 | 11 | 12 | 13 | 33 | 34 | -------------------------------------------------------------------------------- /reference/opcache/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | &reftitle.setup; 8 | 9 | &reference.opcache.configure; 10 | 11 | &reference.opcache.ini; 12 | 13 | 14 | 15 | 35 | -------------------------------------------------------------------------------- /reference/openssl/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | OpenSSL-&Functions; 7 | 8 | &reference.openssl.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/outcontrol/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Output-Control-&Functions; 7 | 8 | 9 | &reftitle.seealso; 10 | 11 | Siehe auch header und 12 | setcookie. 13 | 14 | 15 | 16 | &reference.outcontrol.entities.functions; 17 | 18 | 19 | 20 | 40 | 41 | -------------------------------------------------------------------------------- /reference/outcontrol/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | &reftitle.setup; 6 | 7 | &reference.outcontrol.ini; 8 | 9 | 10 | 11 | 31 | 32 | -------------------------------------------------------------------------------- /reference/password/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Passwort-Hashing-&Functions; 7 | 8 | &reference.password.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/pcntl/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | 9 | &reference.pcntl.configure; 10 | 11 | 12 | 13 | 14 | 34 | 35 | -------------------------------------------------------------------------------- /reference/pcre/pattern.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | PCRE-Suchmuster 7 | &reference.pcre.pattern.syntax; 8 | &reference.pcre.pattern.modifiers; 9 | &reference.pcre.pattern.differences; 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/pcre/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | PCRE-&Functions; 7 | 8 | &reference.pcre.entities.functions; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/pcre/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | &reftitle.setup; 6 | 7 | &reference.pcre.configure; 8 | 9 | &reference.pcre.ini; 10 | 11 | 12 | 13 | 33 | 34 | -------------------------------------------------------------------------------- /reference/pdo/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | 9 | &reference.pdo.configure; 10 | 11 | 12 | 13 | &reference.pdo.ini; 14 | 15 | 16 | 17 | 18 | 38 | 39 | -------------------------------------------------------------------------------- /reference/posix/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | &installation.enabled.disable; 8 | 9 | 10 |
11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/posix/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | POSIX &Functions; 7 | 8 | 9 | &reftitle.seealso; 10 | 11 | Der Abschnitt über Prozesskontroll-Funktionen könnte für Sie von 13 | Interesse sein. 14 | 15 | 16 | 17 | &reference.posix.entities.functions; 18 | 19 | 20 | 21 | 41 | 42 | -------------------------------------------------------------------------------- /reference/posix/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | 9 | &reference.posix.configure; 10 | 11 | 12 | 13 | 14 | 34 | 35 | -------------------------------------------------------------------------------- /reference/pspell/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Pspell &Functions; 7 | 8 | &reference.pspell.entities.functions; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/rar/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | RAR &Functions; 7 | 8 | &reference.rar.entities.functions; 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /reference/readline/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Readline-&Functions; 8 | 9 | &reference.readline.entities.functions; 10 | 11 | 12 | 13 | 14 | 34 | -------------------------------------------------------------------------------- /reference/recode/functions/recode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | recode 8 | &Alias; recode_string 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; 15 | recode_string. 16 | 17 | 18 | 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/recode/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Recode-&Functions; 7 | 8 | &reference.recode.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/sem/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Semaphore &Functions; 6 | 7 | &reference.sem.entities.functions; 8 | 9 | 10 | 30 | -------------------------------------------------------------------------------- /reference/session/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Session-&Functions; 7 | 8 | &reference.session.entities.functions; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/shmop/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | Um die shmop-Erweiterung zu benutzen, müssen Sie PHP mit der 8 | Option kompilieren. 9 | 10 |
11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/shmop/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Shared Memory &Functions; 7 | 8 | &reference.shmop.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/simplexml/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | &installation.enabled.disable; 8 | 9 | 10 |
11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/simplexml/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | SimpleXML-&Functions; 8 | &reference.simplexml.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/simplexml/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | &reftitle.setup; 8 | 9 | 10 |
11 | &reftitle.required; 12 | &libxml.required; 13 |
14 | 15 | 16 | 17 | &reference.simplexml.configure; 18 | 19 | 20 |
21 | 22 | 42 | -------------------------------------------------------------------------------- /reference/snmp/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | SNMP-&Functions; 8 | &reference.snmp.entities.functions; 9 | 10 | 11 | 12 | 29 | -------------------------------------------------------------------------------- /reference/soap/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
7 | &reftitle.install; 8 | 9 | Um die SOAP-Unterstützung zu aktivieren, muss PHP mit der Option 10 | kompiliert werden. 11 | 12 |
13 | 14 | 34 | -------------------------------------------------------------------------------- /reference/soap/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | SOAP &Functions; 7 | 8 | &reference.soap.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/soap/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 |
9 | &reftitle.required; 10 | &libxml.required; 11 |
12 | 13 | 14 | &reference.soap.configure; 15 | 16 | 17 | 18 | 19 | &reference.soap.ini; 20 | 21 | 22 |
23 | 24 | 44 | -------------------------------------------------------------------------------- /reference/sockets/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | &reftitle.install; 7 | 8 | Die hier beschriebenen Socket-Funktionen sind Teil einer PHP-Extension, 9 | die zum Zeitpunkt des Kompilierens eingeschaltet sein muss. Verwenden Sie 10 | dazu die Option des 11 | configure-Kommandos. 12 | 13 |
14 | 15 | 35 | 36 | -------------------------------------------------------------------------------- /reference/sockets/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Socket-Funktionen 6 | &reference.sockets.entities.functions; 7 | 8 | 9 | 29 | -------------------------------------------------------------------------------- /reference/sodium/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | &reftitle.install; 7 | 8 | 9 | Beim Kompilieren von PHP muss 10 | verwendet werden. 11 | 12 | 13 | 14 | Windows-Benutzer sollten php_sodium.dll in 15 | die &php.ini; hinzufügen. 16 | 17 | 18 |
19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/sodium/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Sodium &Functions; 7 | 8 | &reference.sodium.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /reference/solr/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Solr-&Functions; 6 | 7 | &reference.solr.entities.functions; 8 | 9 | 10 | 30 | 31 | -------------------------------------------------------------------------------- /reference/stream/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Stream-&Functions; 7 | 8 | &reference.stream.entities.functions; 9 | 10 | 11 | 31 | -------------------------------------------------------------------------------- /reference/strings/functions/join.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | join 7 | &Alias; implode 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | implode. 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/strings/functions/strchr.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | strchr 7 | &Alias; strstr 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | strstr. 15 | 16 | 17 | 18 | 19 | 20 | 21 | 41 | -------------------------------------------------------------------------------- /reference/tokenizer/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | &installation.enabled.disable; 8 | 9 | 10 | &windows.builtin; 11 |
12 | 13 | 33 | 34 | -------------------------------------------------------------------------------- /reference/tokenizer/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Tokenizer &Functions; 6 | 7 | &reference.tokenizer.entities.functions; 8 | 9 | 10 | 11 | 31 | 32 | -------------------------------------------------------------------------------- /reference/tokenizer/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | &reference.tokenizer.configure; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/uodbc/functions/odbc-do.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | odbc_do 8 | &Alias; odbc_exec 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | odbc_exec. 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/uodbc/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | ODBC &Functions; 7 | 8 | &reference.uodbc.entities.functions; 9 | 10 | 11 | 31 | 32 | -------------------------------------------------------------------------------- /reference/url/book.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | URLs 8 | URLs 9 | 10 | 11 | &reftitle.intro; 12 | 13 | Umgang mit URL-Strings: Encoden, decoden und parsen. 14 | 15 | 16 | 17 | &reference.url.constants; 18 | &reference.url.reference; 19 | 20 | 21 | 22 | 23 | 43 | -------------------------------------------------------------------------------- /reference/url/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | URL &Functions; 8 | &reference.url.entities.functions; 9 | 10 | 11 | 12 | 29 | -------------------------------------------------------------------------------- /reference/v8js/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 | &reftitle.install; 7 | 8 | 9 | &pecl.info; 10 | &url.pecl.package;v8js 11 | 12 | 13 | 14 |
15 | 16 | 17 | 37 | -------------------------------------------------------------------------------- /reference/v8js/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 |
9 | &reftitle.required; 10 | 11 | PHP und die V8-Bibliothek mit Headern sind an den üblichen 12 | Orten installiert. 13 | 14 |
15 | 16 | &reference.v8js.configure; 17 | 18 | &reference.v8js.ini; 19 | 20 |
21 | 22 | 42 | -------------------------------------------------------------------------------- /reference/var/functions/is-long.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | is_long 8 | &Alias; is_int 9 | 10 | 11 | 12 | &reftitle.description; 13 | 14 | &info.function.alias; 15 | is_int. 16 | 17 | 18 | 19 | 20 | 40 | -------------------------------------------------------------------------------- /reference/var/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | &Functions; zur Behandlung von Variablen 8 | &reference.var.entities.functions; 9 | 10 | 11 | 12 | 29 | -------------------------------------------------------------------------------- /reference/var/setup.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | &reftitle.setup; 7 | 8 | &reference.var.ini; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/xml/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | XML Parser &Functions; 7 | 8 | &reference.xml.entities.functions; 9 | 10 | 11 | 12 | 32 | 33 | -------------------------------------------------------------------------------- /reference/xsl/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | Die Erweiterung XSL ist in PHP enthalten und kann über die Option 8 | in Ihrer Build-Konfiguration aktiviert 9 | werden. Dabei steht DIR für das Installationsverzeichnis der libxslt-Bibliothek. 10 | 11 |
12 | 13 | 33 | -------------------------------------------------------------------------------- /reference/zip/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Zip &Functions; 7 | 8 | 9 | 10 | Die procedurale API sollte ab PHP 8.0.0 nicht mehr verwendet werden. 11 | Stattdessen sollte ZipArchive verwendet werden. 12 | 13 | 14 | 15 | 16 | &reference.zip.entities.functions; 17 | 18 | 19 | 20 | 40 | -------------------------------------------------------------------------------- /reference/zlib/configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | &reftitle.install; 6 | 7 | Die Unterstützung für zlib ist in PHP nicht standardmäßig aktiviert. Es ist 8 | erforderlich, die Option 9 | beim Kompilieren von PHP anzugeben. 10 | 11 | &windows.builtin; 12 |
13 | 14 | 34 | 35 | -------------------------------------------------------------------------------- /reference/zlib/functions/gzputs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | gzputs 7 | &Alias; gzwrite 8 | 9 | 10 | 11 | &reftitle.description; 12 | 13 | &info.function.alias; 14 | gzwrite. 15 | 16 | 17 | 18 | 19 | 39 | -------------------------------------------------------------------------------- /reference/zlib/reference.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Zlib-&Functions; 7 | 8 | &reference.zlib.entities.functions; 9 | 10 | 11 | 12 | 32 | -------------------------------------------------------------------------------- /security/figures/xkcd-bobby-tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/doc-de/d216deb04e7229328d2f70f90f8c2aeedf157932/security/figures/xkcd-bobby-tables.png -------------------------------------------------------------------------------- /security/sessions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Session Sicherheit 8 | 9 | 10 | Es ist wichtig die HTTP Session Verwaltung sicher zu halten. Sessionbezogene Sicherheit ist beschrieben im Abschnitt Session Sicherheit in der Session Modul Referenz. 11 | 12 | 13 | 14 | 15 | 35 | --------------------------------------------------------------------------------