├── .gitattributes ├── .gitignore ├── LICENSE ├── Php8StubsMap.php ├── README.md ├── composer.json ├── composer.lock └── stubs ├── LICENSE ├── Zend ├── AllowDynamicProperties.php ├── ArgumentCountError.php ├── ArithmeticError.php ├── ArrayAccess.php ├── Attribute.php ├── BackedEnum.php ├── ClosedGeneratorException.php ├── Closure.php ├── CompileError.php ├── Countable.php ├── DelayedTargetValidation.php ├── Deprecated.php ├── DivisionByZeroError.php ├── Error.php ├── ErrorException.php ├── Exception.php ├── Fiber.php ├── FiberError.php ├── Generator.php ├── InternalIterator.php ├── Iterator.php ├── IteratorAggregate.php ├── NoDiscard.php ├── Override.php ├── ParseError.php ├── RequestParseBodyException.php ├── ReturnTypeWillChange.php ├── SensitiveParameter.php ├── SensitiveParameterValue.php ├── Serializable.php ├── Stringable.php ├── Throwable.php ├── Traversable.php ├── TypeError.php ├── UnhandledMatchError.php ├── UnitEnum.php ├── ValueError.php ├── WeakMap.php ├── WeakReference.php ├── class_alias.php ├── class_exists.php ├── clone.php ├── debug_backtrace.php ├── debug_print_backtrace.php ├── define.php ├── defined.php ├── die.php ├── enum_exists.php ├── error_reporting.php ├── exit.php ├── extension_loaded.php ├── func_get_arg.php ├── func_get_args.php ├── func_num_args.php ├── function_exists.php ├── gc_collect_cycles.php ├── gc_disable.php ├── gc_enable.php ├── gc_enabled.php ├── gc_mem_caches.php ├── gc_status.php ├── get_called_class.php ├── get_class.php ├── get_class_methods.php ├── get_class_vars.php ├── get_declared_classes.php ├── get_declared_interfaces.php ├── get_declared_traits.php ├── get_defined_constants.php ├── get_defined_functions.php ├── get_defined_vars.php ├── get_error_handler.php ├── get_exception_handler.php ├── get_extension_funcs.php ├── get_included_files.php ├── get_loaded_extensions.php ├── get_mangled_object_vars.php ├── get_object_vars.php ├── get_parent_class.php ├── get_required_files.php ├── get_resource_id.php ├── get_resource_type.php ├── get_resources.php ├── interface_exists.php ├── is_a.php ├── is_subclass_of.php ├── method_exists.php ├── property_exists.php ├── restore_error_handler.php ├── restore_exception_handler.php ├── set_error_handler.php ├── set_exception_handler.php ├── stdClass.php ├── strcasecmp.php ├── strcmp.php ├── strlen.php ├── strncasecmp.php ├── strncmp.php ├── trait_exists.php ├── trigger_error.php ├── user_error.php ├── zend_thread_id.php └── zend_version.php ├── ext ├── bcmath │ ├── BcMath │ │ └── Number.php │ ├── bcadd.php │ ├── bcceil.php │ ├── bccomp.php │ ├── bcdiv.php │ ├── bcdivmod.php │ ├── bcfloor.php │ ├── bcmod.php │ ├── bcmul.php │ ├── bcpow.php │ ├── bcpowmod.php │ ├── bcround.php │ ├── bcscale.php │ ├── bcsqrt.php │ └── bcsub.php ├── bz2 │ ├── bzclose.php │ ├── bzcompress.php │ ├── bzdecompress.php │ ├── bzerrno.php │ ├── bzerror.php │ ├── bzerrstr.php │ ├── bzflush.php │ ├── bzopen.php │ ├── bzread.php │ └── bzwrite.php ├── calendar │ ├── cal_days_in_month.php │ ├── cal_from_jd.php │ ├── cal_info.php │ ├── cal_to_jd.php │ ├── easter_date.php │ ├── easter_days.php │ ├── frenchtojd.php │ ├── gregoriantojd.php │ ├── jddayofweek.php │ ├── jdmonthname.php │ ├── jdtofrench.php │ ├── jdtogregorian.php │ ├── jdtojewish.php │ ├── jdtojulian.php │ ├── jdtounix.php │ ├── jewishtojd.php │ ├── juliantojd.php │ └── unixtojd.php ├── com_dotnet │ ├── COMPersistHelper.php │ ├── com.php │ ├── com_create_guid.php │ ├── com_event_sink.php │ ├── com_exception.php │ ├── com_get_active_object.php │ ├── com_load_typelib.php │ ├── com_message_pump.php │ ├── com_print_typeinfo.php │ ├── com_safearray_proxy.php │ ├── dotnet.php │ ├── variant.php │ ├── variant_abs.php │ ├── variant_add.php │ ├── variant_and.php │ ├── variant_cast.php │ ├── variant_cat.php │ ├── variant_cmp.php │ ├── variant_date_from_timestamp.php │ ├── variant_date_to_timestamp.php │ ├── variant_div.php │ ├── variant_eqv.php │ ├── variant_fix.php │ ├── variant_get_type.php │ ├── variant_idiv.php │ ├── variant_imp.php │ ├── variant_int.php │ ├── variant_mod.php │ ├── variant_mul.php │ ├── variant_neg.php │ ├── variant_not.php │ ├── variant_or.php │ ├── variant_pow.php │ ├── variant_round.php │ ├── variant_set.php │ ├── variant_set_type.php │ ├── variant_sub.php │ └── variant_xor.php ├── ctype │ ├── ctype_alnum.php │ ├── ctype_alpha.php │ ├── ctype_cntrl.php │ ├── ctype_digit.php │ ├── ctype_graph.php │ ├── ctype_lower.php │ ├── ctype_print.php │ ├── ctype_punct.php │ ├── ctype_space.php │ ├── ctype_upper.php │ └── ctype_xdigit.php ├── curl │ ├── CURLFile.php │ ├── CURLStringFile.php │ ├── CurlHandle.php │ ├── CurlMultiHandle.php │ ├── CurlShareHandle.php │ ├── CurlSharePersistentHandle.php │ ├── curl_close.php │ ├── curl_copy_handle.php │ ├── curl_errno.php │ ├── curl_error.php │ ├── curl_escape.php │ ├── curl_exec.php │ ├── curl_file_create.php │ ├── curl_getinfo.php │ ├── curl_init.php │ ├── curl_multi_add_handle.php │ ├── curl_multi_close.php │ ├── curl_multi_errno.php │ ├── curl_multi_exec.php │ ├── curl_multi_get_handles.php │ ├── curl_multi_getcontent.php │ ├── curl_multi_info_read.php │ ├── curl_multi_init.php │ ├── curl_multi_remove_handle.php │ ├── curl_multi_select.php │ ├── curl_multi_setopt.php │ ├── curl_multi_strerror.php │ ├── curl_pause.php │ ├── curl_reset.php │ ├── curl_setopt.php │ ├── curl_setopt_array.php │ ├── curl_share_close.php │ ├── curl_share_errno.php │ ├── curl_share_init.php │ ├── curl_share_init_persistent.php │ ├── curl_share_setopt.php │ ├── curl_share_strerror.php │ ├── curl_strerror.php │ ├── curl_unescape.php │ ├── curl_upkeep.php │ └── curl_version.php ├── date │ ├── DateError.php │ ├── DateException.php │ ├── DateInterval.php │ ├── DateInvalidOperationException.php │ ├── DateInvalidTimeZoneException.php │ ├── DateMalformedIntervalStringException.php │ ├── DateMalformedPeriodStringException.php │ ├── DateMalformedStringException.php │ ├── DateObjectError.php │ ├── DatePeriod.php │ ├── DateRangeError.php │ ├── DateTime.php │ ├── DateTimeImmutable.php │ ├── DateTimeInterface.php │ ├── DateTimeZone.php │ ├── checkdate.php │ ├── date.php │ ├── date_add.php │ ├── date_create.php │ ├── date_create_from_format.php │ ├── date_create_immutable.php │ ├── date_create_immutable_from_format.php │ ├── date_date_set.php │ ├── date_default_timezone_get.php │ ├── date_default_timezone_set.php │ ├── date_diff.php │ ├── date_format.php │ ├── date_get_last_errors.php │ ├── date_interval_create_from_date_string.php │ ├── date_interval_format.php │ ├── date_isodate_set.php │ ├── date_modify.php │ ├── date_offset_get.php │ ├── date_parse.php │ ├── date_parse_from_format.php │ ├── date_sub.php │ ├── date_sun_info.php │ ├── date_sunrise.php │ ├── date_sunset.php │ ├── date_time_set.php │ ├── date_timestamp_get.php │ ├── date_timestamp_set.php │ ├── date_timezone_get.php │ ├── date_timezone_set.php │ ├── getdate.php │ ├── gmdate.php │ ├── gmmktime.php │ ├── gmstrftime.php │ ├── idate.php │ ├── localtime.php │ ├── mktime.php │ ├── strftime.php │ ├── strtotime.php │ ├── time.php │ ├── timezone_abbreviations_list.php │ ├── timezone_identifiers_list.php │ ├── timezone_location_get.php │ ├── timezone_name_from_abbr.php │ ├── timezone_name_get.php │ ├── timezone_offset_get.php │ ├── timezone_open.php │ ├── timezone_transitions_get.php │ └── timezone_version_get.php ├── dba │ ├── Dba │ │ └── Connection.php │ ├── dba_close.php │ ├── dba_delete.php │ ├── dba_exists.php │ ├── dba_fetch.php │ ├── dba_firstkey.php │ ├── dba_handlers.php │ ├── dba_insert.php │ ├── dba_key_split.php │ ├── dba_list.php │ ├── dba_nextkey.php │ ├── dba_open.php │ ├── dba_optimize.php │ ├── dba_popen.php │ ├── dba_replace.php │ └── dba_sync.php ├── dom │ ├── DOMAttr.php │ ├── DOMCdataSection.php │ ├── DOMCharacterData.php │ ├── DOMChildNode.php │ ├── DOMComment.php │ ├── DOMDocument.php │ ├── DOMDocumentFragment.php │ ├── DOMDocumentType.php │ ├── DOMElement.php │ ├── DOMEntity.php │ ├── DOMEntityReference.php │ ├── DOMException.php │ ├── DOMImplementation.php │ ├── DOMNameSpaceNode.php │ ├── DOMNamedNodeMap.php │ ├── DOMNode.php │ ├── DOMNodeList.php │ ├── DOMNotation.php │ ├── DOMParentNode.php │ ├── DOMProcessingInstruction.php │ ├── DOMText.php │ ├── DOMXPath.php │ ├── Dom │ │ ├── AdjacentPosition.php │ │ ├── Attr.php │ │ ├── CDATASection.php │ │ ├── CharacterData.php │ │ ├── ChildNode.php │ │ ├── Comment.php │ │ ├── Document.php │ │ ├── DocumentFragment.php │ │ ├── DocumentType.php │ │ ├── DtdNamedNodeMap.php │ │ ├── Element.php │ │ ├── Entity.php │ │ ├── EntityReference.php │ │ ├── HTMLCollection.php │ │ ├── HTMLDocument.php │ │ ├── HTMLElement.php │ │ ├── Implementation.php │ │ ├── NamedNodeMap.php │ │ ├── NamespaceInfo.php │ │ ├── Node.php │ │ ├── NodeList.php │ │ ├── Notation.php │ │ ├── ParentNode.php │ │ ├── ProcessingInstruction.php │ │ ├── Text.php │ │ ├── TokenList.php │ │ ├── XMLDocument.php │ │ ├── XPath.php │ │ └── import_simplexml.php │ └── dom_import_simplexml.php ├── enchant │ ├── EnchantBroker.php │ ├── EnchantDictionary.php │ ├── enchant_broker_describe.php │ ├── enchant_broker_dict_exists.php │ ├── enchant_broker_free.php │ ├── enchant_broker_free_dict.php │ ├── enchant_broker_get_dict_path.php │ ├── enchant_broker_get_error.php │ ├── enchant_broker_init.php │ ├── enchant_broker_list_dicts.php │ ├── enchant_broker_request_dict.php │ ├── enchant_broker_request_pwl_dict.php │ ├── enchant_broker_set_dict_path.php │ ├── enchant_broker_set_ordering.php │ ├── enchant_dict_add.php │ ├── enchant_dict_add_to_personal.php │ ├── enchant_dict_add_to_session.php │ ├── enchant_dict_check.php │ ├── enchant_dict_describe.php │ ├── enchant_dict_get_error.php │ ├── enchant_dict_is_added.php │ ├── enchant_dict_is_in_session.php │ ├── enchant_dict_quick_check.php │ ├── enchant_dict_remove.php │ ├── enchant_dict_remove_from_session.php │ ├── enchant_dict_store_replacement.php │ └── enchant_dict_suggest.php ├── exif │ ├── exif_imagetype.php │ ├── exif_read_data.php │ ├── exif_tagname.php │ └── exif_thumbnail.php ├── ffi │ ├── FFI.php │ └── FFI │ │ ├── CData.php │ │ ├── CType.php │ │ ├── Exception.php │ │ └── ParserException.php ├── fileinfo │ ├── finfo.php │ ├── finfo_buffer.php │ ├── finfo_close.php │ ├── finfo_file.php │ ├── finfo_open.php │ ├── finfo_set_flags.php │ └── mime_content_type.php ├── filter │ ├── Filter │ │ ├── FilterException.php │ │ └── FilterFailedException.php │ ├── filter_has_var.php │ ├── filter_id.php │ ├── filter_input.php │ ├── filter_input_array.php │ ├── filter_list.php │ ├── filter_var.php │ └── filter_var_array.php ├── ftp │ ├── FTP │ │ └── Connection.php │ ├── ftp_alloc.php │ ├── ftp_append.php │ ├── ftp_cdup.php │ ├── ftp_chdir.php │ ├── ftp_chmod.php │ ├── ftp_close.php │ ├── ftp_connect.php │ ├── ftp_delete.php │ ├── ftp_exec.php │ ├── ftp_fget.php │ ├── ftp_fput.php │ ├── ftp_get.php │ ├── ftp_get_option.php │ ├── ftp_login.php │ ├── ftp_mdtm.php │ ├── ftp_mkdir.php │ ├── ftp_mlsd.php │ ├── ftp_nb_continue.php │ ├── ftp_nb_fget.php │ ├── ftp_nb_fput.php │ ├── ftp_nb_get.php │ ├── ftp_nb_put.php │ ├── ftp_nlist.php │ ├── ftp_pasv.php │ ├── ftp_put.php │ ├── ftp_pwd.php │ ├── ftp_quit.php │ ├── ftp_raw.php │ ├── ftp_rawlist.php │ ├── ftp_rename.php │ ├── ftp_rmdir.php │ ├── ftp_set_option.php │ ├── ftp_site.php │ ├── ftp_size.php │ ├── ftp_ssl_connect.php │ └── ftp_systype.php ├── gd │ ├── GdFont.php │ ├── GdImage.php │ ├── gd_info.php │ ├── imageaffine.php │ ├── imageaffinematrixconcat.php │ ├── imageaffinematrixget.php │ ├── imagealphablending.php │ ├── imageantialias.php │ ├── imagearc.php │ ├── imageavif.php │ ├── imagebmp.php │ ├── imagechar.php │ ├── imagecharup.php │ ├── imagecolorallocate.php │ ├── imagecolorallocatealpha.php │ ├── imagecolorat.php │ ├── imagecolorclosest.php │ ├── imagecolorclosestalpha.php │ ├── imagecolorclosesthwb.php │ ├── imagecolordeallocate.php │ ├── imagecolorexact.php │ ├── imagecolorexactalpha.php │ ├── imagecolormatch.php │ ├── imagecolorresolve.php │ ├── imagecolorresolvealpha.php │ ├── imagecolorset.php │ ├── imagecolorsforindex.php │ ├── imagecolorstotal.php │ ├── imagecolortransparent.php │ ├── imageconvolution.php │ ├── imagecopy.php │ ├── imagecopymerge.php │ ├── imagecopymergegray.php │ ├── imagecopyresampled.php │ ├── imagecopyresized.php │ ├── imagecreate.php │ ├── imagecreatefromavif.php │ ├── imagecreatefrombmp.php │ ├── imagecreatefromgd.php │ ├── imagecreatefromgd2.php │ ├── imagecreatefromgd2part.php │ ├── imagecreatefromgif.php │ ├── imagecreatefromjpeg.php │ ├── imagecreatefrompng.php │ ├── imagecreatefromstring.php │ ├── imagecreatefromtga.php │ ├── imagecreatefromwbmp.php │ ├── imagecreatefromwebp.php │ ├── imagecreatefromxbm.php │ ├── imagecreatefromxpm.php │ ├── imagecreatetruecolor.php │ ├── imagecrop.php │ ├── imagecropauto.php │ ├── imagedashedline.php │ ├── imagedestroy.php │ ├── imageellipse.php │ ├── imagefill.php │ ├── imagefilledarc.php │ ├── imagefilledellipse.php │ ├── imagefilledpolygon.php │ ├── imagefilledrectangle.php │ ├── imagefilltoborder.php │ ├── imagefilter.php │ ├── imageflip.php │ ├── imagefontheight.php │ ├── imagefontwidth.php │ ├── imageftbbox.php │ ├── imagefttext.php │ ├── imagegammacorrect.php │ ├── imagegd.php │ ├── imagegd2.php │ ├── imagegetclip.php │ ├── imagegetinterpolation.php │ ├── imagegif.php │ ├── imagegrabscreen.php │ ├── imagegrabwindow.php │ ├── imageinterlace.php │ ├── imageistruecolor.php │ ├── imagejpeg.php │ ├── imagelayereffect.php │ ├── imageline.php │ ├── imageloadfont.php │ ├── imageopenpolygon.php │ ├── imagepalettecopy.php │ ├── imagepalettetotruecolor.php │ ├── imagepng.php │ ├── imagepolygon.php │ ├── imagerectangle.php │ ├── imageresolution.php │ ├── imagerotate.php │ ├── imagesavealpha.php │ ├── imagescale.php │ ├── imagesetbrush.php │ ├── imagesetclip.php │ ├── imagesetinterpolation.php │ ├── imagesetpixel.php │ ├── imagesetstyle.php │ ├── imagesetthickness.php │ ├── imagesettile.php │ ├── imagestring.php │ ├── imagestringup.php │ ├── imagesx.php │ ├── imagesy.php │ ├── imagetruecolortopalette.php │ ├── imagettfbbox.php │ ├── imagettftext.php │ ├── imagetypes.php │ ├── imagewbmp.php │ ├── imagewebp.php │ └── imagexbm.php ├── gettext │ ├── _.php │ ├── bind_textdomain_codeset.php │ ├── bindtextdomain.php │ ├── dcgettext.php │ ├── dcngettext.php │ ├── dgettext.php │ ├── dngettext.php │ ├── gettext.php │ ├── ngettext.php │ └── textdomain.php ├── gmp │ ├── GMP.php │ ├── gmp_abs.php │ ├── gmp_add.php │ ├── gmp_and.php │ ├── gmp_binomial.php │ ├── gmp_clrbit.php │ ├── gmp_cmp.php │ ├── gmp_com.php │ ├── gmp_div.php │ ├── gmp_div_q.php │ ├── gmp_div_qr.php │ ├── gmp_div_r.php │ ├── gmp_divexact.php │ ├── gmp_export.php │ ├── gmp_fact.php │ ├── gmp_gcd.php │ ├── gmp_gcdext.php │ ├── gmp_hamdist.php │ ├── gmp_import.php │ ├── gmp_init.php │ ├── gmp_intval.php │ ├── gmp_invert.php │ ├── gmp_jacobi.php │ ├── gmp_kronecker.php │ ├── gmp_lcm.php │ ├── gmp_legendre.php │ ├── gmp_mod.php │ ├── gmp_mul.php │ ├── gmp_neg.php │ ├── gmp_nextprime.php │ ├── gmp_or.php │ ├── gmp_perfect_power.php │ ├── gmp_perfect_square.php │ ├── gmp_popcount.php │ ├── gmp_pow.php │ ├── gmp_powm.php │ ├── gmp_prob_prime.php │ ├── gmp_random_bits.php │ ├── gmp_random_range.php │ ├── gmp_random_seed.php │ ├── gmp_root.php │ ├── gmp_rootrem.php │ ├── gmp_scan0.php │ ├── gmp_scan1.php │ ├── gmp_setbit.php │ ├── gmp_sign.php │ ├── gmp_sqrt.php │ ├── gmp_sqrtrem.php │ ├── gmp_strval.php │ ├── gmp_sub.php │ ├── gmp_testbit.php │ └── gmp_xor.php ├── hash │ ├── HashContext.php │ ├── hash.php │ ├── hash_algos.php │ ├── hash_copy.php │ ├── hash_equals.php │ ├── hash_file.php │ ├── hash_final.php │ ├── hash_hkdf.php │ ├── hash_hmac.php │ ├── hash_hmac_algos.php │ ├── hash_hmac_file.php │ ├── hash_init.php │ ├── hash_pbkdf2.php │ ├── hash_update.php │ ├── hash_update_file.php │ ├── hash_update_stream.php │ ├── mhash.php │ ├── mhash_count.php │ ├── mhash_get_block_size.php │ ├── mhash_get_hash_name.php │ └── mhash_keygen_s2k.php ├── iconv │ ├── iconv.php │ ├── iconv_get_encoding.php │ ├── iconv_mime_decode.php │ ├── iconv_mime_decode_headers.php │ ├── iconv_mime_encode.php │ ├── iconv_set_encoding.php │ ├── iconv_strlen.php │ ├── iconv_strpos.php │ ├── iconv_strrpos.php │ └── iconv_substr.php ├── imap │ ├── IMAP │ │ └── Connection.php │ ├── imap_8bit.php │ ├── imap_alerts.php │ ├── imap_append.php │ ├── imap_base64.php │ ├── imap_binary.php │ ├── imap_body.php │ ├── imap_bodystruct.php │ ├── imap_check.php │ ├── imap_clearflag_full.php │ ├── imap_close.php │ ├── imap_create.php │ ├── imap_createmailbox.php │ ├── imap_delete.php │ ├── imap_deletemailbox.php │ ├── imap_errors.php │ ├── imap_expunge.php │ ├── imap_fetch_overview.php │ ├── imap_fetchbody.php │ ├── imap_fetchheader.php │ ├── imap_fetchmime.php │ ├── imap_fetchstructure.php │ ├── imap_fetchtext.php │ ├── imap_gc.php │ ├── imap_get_quota.php │ ├── imap_get_quotaroot.php │ ├── imap_getacl.php │ ├── imap_getmailboxes.php │ ├── imap_getsubscribed.php │ ├── imap_headerinfo.php │ ├── imap_headers.php │ ├── imap_is_open.php │ ├── imap_last_error.php │ ├── imap_list.php │ ├── imap_listmailbox.php │ ├── imap_listscan.php │ ├── imap_listsubscribed.php │ ├── imap_lsub.php │ ├── imap_mail.php │ ├── imap_mail_compose.php │ ├── imap_mail_copy.php │ ├── imap_mail_move.php │ ├── imap_mailboxmsginfo.php │ ├── imap_mime_header_decode.php │ ├── imap_msgno.php │ ├── imap_mutf7_to_utf8.php │ ├── imap_num_msg.php │ ├── imap_num_recent.php │ ├── imap_open.php │ ├── imap_ping.php │ ├── imap_qprint.php │ ├── imap_rename.php │ ├── imap_renamemailbox.php │ ├── imap_reopen.php │ ├── imap_rfc822_parse_adrlist.php │ ├── imap_rfc822_parse_headers.php │ ├── imap_rfc822_write_address.php │ ├── imap_savebody.php │ ├── imap_scan.php │ ├── imap_scanmailbox.php │ ├── imap_search.php │ ├── imap_set_quota.php │ ├── imap_setacl.php │ ├── imap_setflag_full.php │ ├── imap_sort.php │ ├── imap_status.php │ ├── imap_subscribe.php │ ├── imap_thread.php │ ├── imap_timeout.php │ ├── imap_uid.php │ ├── imap_undelete.php │ ├── imap_unsubscribe.php │ ├── imap_utf7_decode.php │ ├── imap_utf7_encode.php │ ├── imap_utf8.php │ └── imap_utf8_to_mutf7.php ├── intl │ ├── IntlException.php │ ├── breakiterator │ │ ├── IntlBreakIterator.php │ │ ├── IntlCodePointBreakIterator.php │ │ ├── IntlPartsIterator.php │ │ └── IntlRuleBasedBreakIterator.php │ ├── calendar │ │ ├── IntlCalendar.php │ │ └── IntlGregorianCalendar.php │ ├── collator │ │ └── Collator.php │ ├── collator_asort.php │ ├── collator_compare.php │ ├── collator_create.php │ ├── collator_get_attribute.php │ ├── collator_get_error_code.php │ ├── collator_get_error_message.php │ ├── collator_get_locale.php │ ├── collator_get_sort_key.php │ ├── collator_get_strength.php │ ├── collator_set_attribute.php │ ├── collator_set_strength.php │ ├── collator_sort.php │ ├── collator_sort_with_sort_keys.php │ ├── common │ │ └── IntlIterator.php │ ├── converter │ │ └── UConverter.php │ ├── datefmt_create.php │ ├── datefmt_format.php │ ├── datefmt_format_object.php │ ├── datefmt_get_calendar.php │ ├── datefmt_get_calendar_object.php │ ├── datefmt_get_datetype.php │ ├── datefmt_get_error_code.php │ ├── datefmt_get_error_message.php │ ├── datefmt_get_locale.php │ ├── datefmt_get_pattern.php │ ├── datefmt_get_timetype.php │ ├── datefmt_get_timezone.php │ ├── datefmt_get_timezone_id.php │ ├── datefmt_is_lenient.php │ ├── datefmt_localtime.php │ ├── datefmt_parse.php │ ├── datefmt_set_calendar.php │ ├── datefmt_set_lenient.php │ ├── datefmt_set_pattern.php │ ├── datefmt_set_timezone.php │ ├── dateformat │ │ ├── IntlDateFormatter.php │ │ └── IntlDatePatternGenerator.php │ ├── formatter │ │ └── NumberFormatter.php │ ├── grapheme_extract.php │ ├── grapheme_levenshtein.php │ ├── grapheme_str_split.php │ ├── grapheme_stripos.php │ ├── grapheme_stristr.php │ ├── grapheme_strlen.php │ ├── grapheme_strpos.php │ ├── grapheme_strripos.php │ ├── grapheme_strrpos.php │ ├── grapheme_strstr.php │ ├── grapheme_substr.php │ ├── idn_to_ascii.php │ ├── idn_to_utf8.php │ ├── intl_error_name.php │ ├── intl_get_error_code.php │ ├── intl_get_error_message.php │ ├── intl_is_failure.php │ ├── intlcal_add.php │ ├── intlcal_after.php │ ├── intlcal_before.php │ ├── intlcal_clear.php │ ├── intlcal_create_instance.php │ ├── intlcal_equals.php │ ├── intlcal_field_difference.php │ ├── intlcal_from_date_time.php │ ├── intlcal_get.php │ ├── intlcal_get_actual_maximum.php │ ├── intlcal_get_actual_minimum.php │ ├── intlcal_get_available_locales.php │ ├── intlcal_get_day_of_week_type.php │ ├── intlcal_get_error_code.php │ ├── intlcal_get_error_message.php │ ├── intlcal_get_first_day_of_week.php │ ├── intlcal_get_greatest_minimum.php │ ├── intlcal_get_keyword_values_for_locale.php │ ├── intlcal_get_least_maximum.php │ ├── intlcal_get_locale.php │ ├── intlcal_get_maximum.php │ ├── intlcal_get_minimal_days_in_first_week.php │ ├── intlcal_get_minimum.php │ ├── intlcal_get_now.php │ ├── intlcal_get_repeated_wall_time_option.php │ ├── intlcal_get_skipped_wall_time_option.php │ ├── intlcal_get_time.php │ ├── intlcal_get_time_zone.php │ ├── intlcal_get_type.php │ ├── intlcal_get_weekend_transition.php │ ├── intlcal_in_daylight_time.php │ ├── intlcal_is_equivalent_to.php │ ├── intlcal_is_lenient.php │ ├── intlcal_is_set.php │ ├── intlcal_is_weekend.php │ ├── intlcal_roll.php │ ├── intlcal_set.php │ ├── intlcal_set_first_day_of_week.php │ ├── intlcal_set_lenient.php │ ├── intlcal_set_minimal_days_in_first_week.php │ ├── intlcal_set_repeated_wall_time_option.php │ ├── intlcal_set_skipped_wall_time_option.php │ ├── intlcal_set_time.php │ ├── intlcal_set_time_zone.php │ ├── intlcal_to_date_time.php │ ├── intlgregcal_create_instance.php │ ├── intlgregcal_get_gregorian_change.php │ ├── intlgregcal_is_leap_year.php │ ├── intlgregcal_set_gregorian_change.php │ ├── intltz_count_equivalent_ids.php │ ├── intltz_create_default.php │ ├── intltz_create_enumeration.php │ ├── intltz_create_time_zone.php │ ├── intltz_create_time_zone_id_enumeration.php │ ├── intltz_from_date_time_zone.php │ ├── intltz_get_canonical_id.php │ ├── intltz_get_display_name.php │ ├── intltz_get_dst_savings.php │ ├── intltz_get_equivalent_id.php │ ├── intltz_get_error_code.php │ ├── intltz_get_error_message.php │ ├── intltz_get_gmt.php │ ├── intltz_get_iana_id.php │ ├── intltz_get_id.php │ ├── intltz_get_id_for_windows_id.php │ ├── intltz_get_offset.php │ ├── intltz_get_raw_offset.php │ ├── intltz_get_region.php │ ├── intltz_get_tz_data_version.php │ ├── intltz_get_unknown.php │ ├── intltz_get_windows_id.php │ ├── intltz_has_same_rules.php │ ├── intltz_to_date_time_zone.php │ ├── intltz_use_daylight_time.php │ ├── listformatter │ │ └── IntlListFormatter.php │ ├── locale │ │ └── Locale.php │ ├── locale_accept_from_http.php │ ├── locale_add_likely_subtags.php │ ├── locale_canonicalize.php │ ├── locale_compose.php │ ├── locale_filter_matches.php │ ├── locale_get_all_variants.php │ ├── locale_get_default.php │ ├── locale_get_display_language.php │ ├── locale_get_display_name.php │ ├── locale_get_display_region.php │ ├── locale_get_display_script.php │ ├── locale_get_display_variant.php │ ├── locale_get_keywords.php │ ├── locale_get_primary_language.php │ ├── locale_get_region.php │ ├── locale_get_script.php │ ├── locale_is_right_to_left.php │ ├── locale_lookup.php │ ├── locale_minimize_subtags.php │ ├── locale_parse.php │ ├── locale_set_default.php │ ├── msgfmt_create.php │ ├── msgfmt_format.php │ ├── msgfmt_format_message.php │ ├── msgfmt_get_error_code.php │ ├── msgfmt_get_error_message.php │ ├── msgfmt_get_locale.php │ ├── msgfmt_get_pattern.php │ ├── msgfmt_parse.php │ ├── msgfmt_parse_message.php │ ├── msgfmt_set_pattern.php │ ├── msgformat │ │ └── MessageFormatter.php │ ├── normalizer │ │ └── Normalizer.php │ ├── normalizer_get_raw_decomposition.php │ ├── normalizer_is_normalized.php │ ├── normalizer_normalize.php │ ├── numfmt_create.php │ ├── numfmt_format.php │ ├── numfmt_format_currency.php │ ├── numfmt_get_attribute.php │ ├── numfmt_get_error_code.php │ ├── numfmt_get_error_message.php │ ├── numfmt_get_locale.php │ ├── numfmt_get_pattern.php │ ├── numfmt_get_symbol.php │ ├── numfmt_get_text_attribute.php │ ├── numfmt_parse.php │ ├── numfmt_parse_currency.php │ ├── numfmt_set_attribute.php │ ├── numfmt_set_pattern.php │ ├── numfmt_set_symbol.php │ ├── numfmt_set_text_attribute.php │ ├── resourcebundle │ │ └── ResourceBundle.php │ ├── resourcebundle_count.php │ ├── resourcebundle_create.php │ ├── resourcebundle_get.php │ ├── resourcebundle_get_error_code.php │ ├── resourcebundle_get_error_message.php │ ├── resourcebundle_locales.php │ ├── spoofchecker │ │ └── Spoofchecker.php │ ├── timezone │ │ └── IntlTimeZone.php │ ├── transliterator │ │ └── Transliterator.php │ ├── transliterator_create.php │ ├── transliterator_create_from_rules.php │ ├── transliterator_create_inverse.php │ ├── transliterator_get_error_code.php │ ├── transliterator_get_error_message.php │ ├── transliterator_list_ids.php │ ├── transliterator_transliterate.php │ └── uchar │ │ └── IntlChar.php ├── json │ ├── JsonException.php │ ├── JsonSerializable.php │ ├── json_decode.php │ ├── json_encode.php │ ├── json_last_error.php │ ├── json_last_error_msg.php │ └── json_validate.php ├── ldap │ ├── LDAP │ │ ├── Connection.php │ │ ├── Result.php │ │ └── ResultEntry.php │ ├── ldap_8859_to_t61.php │ ├── ldap_add.php │ ├── ldap_add_ext.php │ ├── ldap_bind.php │ ├── ldap_bind_ext.php │ ├── ldap_close.php │ ├── ldap_compare.php │ ├── ldap_connect.php │ ├── ldap_connect_wallet.php │ ├── ldap_count_entries.php │ ├── ldap_count_references.php │ ├── ldap_delete.php │ ├── ldap_delete_ext.php │ ├── ldap_dn2ufn.php │ ├── ldap_err2str.php │ ├── ldap_errno.php │ ├── ldap_error.php │ ├── ldap_escape.php │ ├── ldap_exop.php │ ├── ldap_exop_passwd.php │ ├── ldap_exop_refresh.php │ ├── ldap_exop_sync.php │ ├── ldap_exop_whoami.php │ ├── ldap_explode_dn.php │ ├── ldap_first_attribute.php │ ├── ldap_first_entry.php │ ├── ldap_first_reference.php │ ├── ldap_free_result.php │ ├── ldap_get_attributes.php │ ├── ldap_get_dn.php │ ├── ldap_get_entries.php │ ├── ldap_get_option.php │ ├── ldap_get_values.php │ ├── ldap_get_values_len.php │ ├── ldap_list.php │ ├── ldap_mod_add.php │ ├── ldap_mod_add_ext.php │ ├── ldap_mod_del.php │ ├── ldap_mod_del_ext.php │ ├── ldap_mod_replace.php │ ├── ldap_mod_replace_ext.php │ ├── ldap_modify.php │ ├── ldap_modify_batch.php │ ├── ldap_next_attribute.php │ ├── ldap_next_entry.php │ ├── ldap_next_reference.php │ ├── ldap_parse_exop.php │ ├── ldap_parse_reference.php │ ├── ldap_parse_result.php │ ├── ldap_read.php │ ├── ldap_rename.php │ ├── ldap_rename_ext.php │ ├── ldap_sasl_bind.php │ ├── ldap_search.php │ ├── ldap_set_option.php │ ├── ldap_set_rebind_proc.php │ ├── ldap_start_tls.php │ ├── ldap_t61_to_8859.php │ └── ldap_unbind.php ├── libxml │ ├── LibXMLError.php │ ├── libxml_clear_errors.php │ ├── libxml_disable_entity_loader.php │ ├── libxml_get_errors.php │ ├── libxml_get_external_entity_loader.php │ ├── libxml_get_last_error.php │ ├── libxml_set_external_entity_loader.php │ ├── libxml_set_streams_context.php │ └── libxml_use_internal_errors.php ├── mbstring │ ├── mb_check_encoding.php │ ├── mb_chr.php │ ├── mb_convert_case.php │ ├── mb_convert_encoding.php │ ├── mb_convert_kana.php │ ├── mb_convert_variables.php │ ├── mb_decode_mimeheader.php │ ├── mb_decode_numericentity.php │ ├── mb_detect_encoding.php │ ├── mb_detect_order.php │ ├── mb_encode_mimeheader.php │ ├── mb_encode_numericentity.php │ ├── mb_encoding_aliases.php │ ├── mb_ereg.php │ ├── mb_ereg_match.php │ ├── mb_ereg_replace.php │ ├── mb_ereg_replace_callback.php │ ├── mb_ereg_search.php │ ├── mb_ereg_search_getpos.php │ ├── mb_ereg_search_getregs.php │ ├── mb_ereg_search_init.php │ ├── mb_ereg_search_pos.php │ ├── mb_ereg_search_regs.php │ ├── mb_ereg_search_setpos.php │ ├── mb_eregi.php │ ├── mb_eregi_replace.php │ ├── mb_get_info.php │ ├── mb_http_input.php │ ├── mb_http_output.php │ ├── mb_internal_encoding.php │ ├── mb_language.php │ ├── mb_lcfirst.php │ ├── mb_list_encodings.php │ ├── mb_ltrim.php │ ├── mb_ord.php │ ├── mb_output_handler.php │ ├── mb_parse_str.php │ ├── mb_preferred_mime_name.php │ ├── mb_regex_encoding.php │ ├── mb_regex_set_options.php │ ├── mb_rtrim.php │ ├── mb_scrub.php │ ├── mb_send_mail.php │ ├── mb_split.php │ ├── mb_str_pad.php │ ├── mb_str_split.php │ ├── mb_strcut.php │ ├── mb_strimwidth.php │ ├── mb_stripos.php │ ├── mb_stristr.php │ ├── mb_strlen.php │ ├── mb_strpos.php │ ├── mb_strrchr.php │ ├── mb_strrichr.php │ ├── mb_strripos.php │ ├── mb_strrpos.php │ ├── mb_strstr.php │ ├── mb_strtolower.php │ ├── mb_strtoupper.php │ ├── mb_strwidth.php │ ├── mb_substitute_character.php │ ├── mb_substr.php │ ├── mb_substr_count.php │ ├── mb_trim.php │ └── mb_ucfirst.php ├── mysqli │ ├── mysqli.php │ ├── mysqli_affected_rows.php │ ├── mysqli_autocommit.php │ ├── mysqli_begin_transaction.php │ ├── mysqli_change_user.php │ ├── mysqli_character_set_name.php │ ├── mysqli_close.php │ ├── mysqli_commit.php │ ├── mysqli_connect.php │ ├── mysqli_connect_errno.php │ ├── mysqli_connect_error.php │ ├── mysqli_data_seek.php │ ├── mysqli_debug.php │ ├── mysqli_driver.php │ ├── mysqli_dump_debug_info.php │ ├── mysqli_errno.php │ ├── mysqli_error.php │ ├── mysqli_error_list.php │ ├── mysqli_escape_string.php │ ├── mysqli_execute.php │ ├── mysqli_execute_query.php │ ├── mysqli_fetch_all.php │ ├── mysqli_fetch_array.php │ ├── mysqli_fetch_assoc.php │ ├── mysqli_fetch_column.php │ ├── mysqli_fetch_field.php │ ├── mysqli_fetch_field_direct.php │ ├── mysqli_fetch_fields.php │ ├── mysqli_fetch_lengths.php │ ├── mysqli_fetch_object.php │ ├── mysqli_fetch_row.php │ ├── mysqli_field_count.php │ ├── mysqli_field_seek.php │ ├── mysqli_field_tell.php │ ├── mysqli_free_result.php │ ├── mysqli_get_charset.php │ ├── mysqli_get_client_info.php │ ├── mysqli_get_client_stats.php │ ├── mysqli_get_client_version.php │ ├── mysqli_get_connection_stats.php │ ├── mysqli_get_host_info.php │ ├── mysqli_get_links_stats.php │ ├── mysqli_get_proto_info.php │ ├── mysqli_get_server_info.php │ ├── mysqli_get_server_version.php │ ├── mysqli_get_warnings.php │ ├── mysqli_info.php │ ├── mysqli_init.php │ ├── mysqli_insert_id.php │ ├── mysqli_kill.php │ ├── mysqli_more_results.php │ ├── mysqli_multi_query.php │ ├── mysqli_next_result.php │ ├── mysqli_num_fields.php │ ├── mysqli_num_rows.php │ ├── mysqli_options.php │ ├── mysqli_ping.php │ ├── mysqli_poll.php │ ├── mysqli_prepare.php │ ├── mysqli_query.php │ ├── mysqli_real_connect.php │ ├── mysqli_real_escape_string.php │ ├── mysqli_real_query.php │ ├── mysqli_reap_async_query.php │ ├── mysqli_refresh.php │ ├── mysqli_release_savepoint.php │ ├── mysqli_report.php │ ├── mysqli_result.php │ ├── mysqli_rollback.php │ ├── mysqli_savepoint.php │ ├── mysqli_select_db.php │ ├── mysqli_set_charset.php │ ├── mysqli_set_opt.php │ ├── mysqli_sql_exception.php │ ├── mysqli_sqlstate.php │ ├── mysqli_ssl_set.php │ ├── mysqli_stat.php │ ├── mysqli_stmt.php │ ├── mysqli_stmt_affected_rows.php │ ├── mysqli_stmt_attr_get.php │ ├── mysqli_stmt_attr_set.php │ ├── mysqli_stmt_bind_param.php │ ├── mysqli_stmt_bind_result.php │ ├── mysqli_stmt_close.php │ ├── mysqli_stmt_data_seek.php │ ├── mysqli_stmt_errno.php │ ├── mysqli_stmt_error.php │ ├── mysqli_stmt_error_list.php │ ├── mysqli_stmt_execute.php │ ├── mysqli_stmt_fetch.php │ ├── mysqli_stmt_field_count.php │ ├── mysqli_stmt_free_result.php │ ├── mysqli_stmt_get_result.php │ ├── mysqli_stmt_get_warnings.php │ ├── mysqli_stmt_init.php │ ├── mysqli_stmt_insert_id.php │ ├── mysqli_stmt_more_results.php │ ├── mysqli_stmt_next_result.php │ ├── mysqli_stmt_num_rows.php │ ├── mysqli_stmt_param_count.php │ ├── mysqli_stmt_prepare.php │ ├── mysqli_stmt_reset.php │ ├── mysqli_stmt_result_metadata.php │ ├── mysqli_stmt_send_long_data.php │ ├── mysqli_stmt_sqlstate.php │ ├── mysqli_stmt_store_result.php │ ├── mysqli_store_result.php │ ├── mysqli_thread_id.php │ ├── mysqli_thread_safe.php │ ├── mysqli_use_result.php │ ├── mysqli_warning.php │ └── mysqli_warning_count.php ├── oci8 │ ├── OCICollection.php │ ├── OCILob.php │ ├── oci_bind_array_by_name.php │ ├── oci_bind_by_name.php │ ├── oci_cancel.php │ ├── oci_client_version.php │ ├── oci_close.php │ ├── oci_collection_append.php │ ├── oci_collection_assign.php │ ├── oci_collection_element_assign.php │ ├── oci_collection_element_get.php │ ├── oci_collection_max.php │ ├── oci_collection_size.php │ ├── oci_collection_trim.php │ ├── oci_commit.php │ ├── oci_connect.php │ ├── oci_define_by_name.php │ ├── oci_error.php │ ├── oci_execute.php │ ├── oci_fetch.php │ ├── oci_fetch_all.php │ ├── oci_fetch_array.php │ ├── oci_fetch_assoc.php │ ├── oci_fetch_object.php │ ├── oci_fetch_row.php │ ├── oci_field_is_null.php │ ├── oci_field_name.php │ ├── oci_field_precision.php │ ├── oci_field_scale.php │ ├── oci_field_size.php │ ├── oci_field_type.php │ ├── oci_field_type_raw.php │ ├── oci_free_collection.php │ ├── oci_free_cursor.php │ ├── oci_free_descriptor.php │ ├── oci_free_statement.php │ ├── oci_get_implicit_resultset.php │ ├── oci_lob_append.php │ ├── oci_lob_copy.php │ ├── oci_lob_eof.php │ ├── oci_lob_erase.php │ ├── oci_lob_export.php │ ├── oci_lob_flush.php │ ├── oci_lob_import.php │ ├── oci_lob_is_equal.php │ ├── oci_lob_load.php │ ├── oci_lob_read.php │ ├── oci_lob_rewind.php │ ├── oci_lob_save.php │ ├── oci_lob_seek.php │ ├── oci_lob_size.php │ ├── oci_lob_tell.php │ ├── oci_lob_truncate.php │ ├── oci_lob_write.php │ ├── oci_new_collection.php │ ├── oci_new_connect.php │ ├── oci_new_cursor.php │ ├── oci_new_descriptor.php │ ├── oci_num_fields.php │ ├── oci_num_rows.php │ ├── oci_parse.php │ ├── oci_password_change.php │ ├── oci_pconnect.php │ ├── oci_register_taf_callback.php │ ├── oci_result.php │ ├── oci_rollback.php │ ├── oci_server_version.php │ ├── oci_set_action.php │ ├── oci_set_call_timeout.php │ ├── oci_set_client_identifier.php │ ├── oci_set_client_info.php │ ├── oci_set_db_operation.php │ ├── oci_set_edition.php │ ├── oci_set_module_name.php │ ├── oci_set_prefetch.php │ ├── oci_set_prefetch_lob.php │ ├── oci_statement_type.php │ ├── oci_unregister_taf_callback.php │ ├── ocibindbyname.php │ ├── ocicancel.php │ ├── ocicollappend.php │ ├── ocicollassignelem.php │ ├── ocicollgetelem.php │ ├── ocicollmax.php │ ├── ocicollsize.php │ ├── ocicolltrim.php │ ├── ocicolumnisnull.php │ ├── ocicolumnname.php │ ├── ocicolumnprecision.php │ ├── ocicolumnscale.php │ ├── ocicolumnsize.php │ ├── ocicolumntype.php │ ├── ocicolumntyperaw.php │ ├── ocicommit.php │ ├── ocidefinebyname.php │ ├── ocierror.php │ ├── ociexecute.php │ ├── ocifetch.php │ ├── ocifetchinto.php │ ├── ocifetchstatement.php │ ├── ocifreecollection.php │ ├── ocifreecursor.php │ ├── ocifreedesc.php │ ├── ocifreestatement.php │ ├── ocigetbufferinglob.php │ ├── ociloadlob.php │ ├── ocilogoff.php │ ├── ocilogon.php │ ├── ocinewcollection.php │ ├── ocinewcursor.php │ ├── ocinewdescriptor.php │ ├── ocinlogon.php │ ├── ocinumcols.php │ ├── ociparse.php │ ├── ocipasswordchange.php │ ├── ociplogon.php │ ├── ociresult.php │ ├── ocirollback.php │ ├── ocirowcount.php │ ├── ocisavelob.php │ ├── ocisavelobfile.php │ ├── ociserverversion.php │ ├── ocisetbufferinglob.php │ ├── ocisetprefetch.php │ ├── ocistatementtype.php │ └── ociwritelobtofile.php ├── odbc │ ├── Odbc │ │ ├── Connection.php │ │ └── Result.php │ ├── odbc_autocommit.php │ ├── odbc_binmode.php │ ├── odbc_close.php │ ├── odbc_close_all.php │ ├── odbc_columnprivileges.php │ ├── odbc_columns.php │ ├── odbc_commit.php │ ├── odbc_connect.php │ ├── odbc_connection_string_is_quoted.php │ ├── odbc_connection_string_quote.php │ ├── odbc_connection_string_should_quote.php │ ├── odbc_cursor.php │ ├── odbc_data_source.php │ ├── odbc_do.php │ ├── odbc_error.php │ ├── odbc_errormsg.php │ ├── odbc_exec.php │ ├── odbc_execute.php │ ├── odbc_fetch_array.php │ ├── odbc_fetch_into.php │ ├── odbc_fetch_object.php │ ├── odbc_fetch_row.php │ ├── odbc_field_len.php │ ├── odbc_field_name.php │ ├── odbc_field_num.php │ ├── odbc_field_precision.php │ ├── odbc_field_scale.php │ ├── odbc_field_type.php │ ├── odbc_foreignkeys.php │ ├── odbc_free_result.php │ ├── odbc_gettypeinfo.php │ ├── odbc_longreadlen.php │ ├── odbc_next_result.php │ ├── odbc_num_fields.php │ ├── odbc_num_rows.php │ ├── odbc_pconnect.php │ ├── odbc_prepare.php │ ├── odbc_primarykeys.php │ ├── odbc_procedurecolumns.php │ ├── odbc_procedures.php │ ├── odbc_result.php │ ├── odbc_result_all.php │ ├── odbc_rollback.php │ ├── odbc_setoption.php │ ├── odbc_specialcolumns.php │ ├── odbc_statistics.php │ ├── odbc_tableprivileges.php │ └── odbc_tables.php ├── opcache │ ├── opcache_compile_file.php │ ├── opcache_get_configuration.php │ ├── opcache_get_status.php │ ├── opcache_invalidate.php │ ├── opcache_is_script_cached.php │ ├── opcache_is_script_cached_in_file_cache.php │ ├── opcache_jit_blacklist.php │ └── opcache_reset.php ├── openssl │ ├── OpenSSLAsymmetricKey.php │ ├── OpenSSLCertificate.php │ ├── OpenSSLCertificateSigningRequest.php │ ├── openssl_cipher_iv_length.php │ ├── openssl_cipher_key_length.php │ ├── openssl_cms_decrypt.php │ ├── openssl_cms_encrypt.php │ ├── openssl_cms_read.php │ ├── openssl_cms_sign.php │ ├── openssl_cms_verify.php │ ├── openssl_csr_export.php │ ├── openssl_csr_export_to_file.php │ ├── openssl_csr_get_public_key.php │ ├── openssl_csr_get_subject.php │ ├── openssl_csr_new.php │ ├── openssl_csr_sign.php │ ├── openssl_decrypt.php │ ├── openssl_dh_compute_key.php │ ├── openssl_digest.php │ ├── openssl_encrypt.php │ ├── openssl_error_string.php │ ├── openssl_free_key.php │ ├── openssl_get_cert_locations.php │ ├── openssl_get_cipher_methods.php │ ├── openssl_get_curve_names.php │ ├── openssl_get_md_methods.php │ ├── openssl_get_privatekey.php │ ├── openssl_get_publickey.php │ ├── openssl_open.php │ ├── openssl_password_hash.php │ ├── openssl_password_verify.php │ ├── openssl_pbkdf2.php │ ├── openssl_pkcs12_export.php │ ├── openssl_pkcs12_export_to_file.php │ ├── openssl_pkcs12_read.php │ ├── openssl_pkcs7_decrypt.php │ ├── openssl_pkcs7_encrypt.php │ ├── openssl_pkcs7_read.php │ ├── openssl_pkcs7_sign.php │ ├── openssl_pkcs7_verify.php │ ├── openssl_pkey_derive.php │ ├── openssl_pkey_export.php │ ├── openssl_pkey_export_to_file.php │ ├── openssl_pkey_free.php │ ├── openssl_pkey_get_details.php │ ├── openssl_pkey_get_private.php │ ├── openssl_pkey_get_public.php │ ├── openssl_pkey_new.php │ ├── openssl_private_decrypt.php │ ├── openssl_private_encrypt.php │ ├── openssl_public_decrypt.php │ ├── openssl_public_encrypt.php │ ├── openssl_random_pseudo_bytes.php │ ├── openssl_seal.php │ ├── openssl_sign.php │ ├── openssl_spki_export.php │ ├── openssl_spki_export_challenge.php │ ├── openssl_spki_new.php │ ├── openssl_spki_verify.php │ ├── openssl_verify.php │ ├── openssl_x509_check_private_key.php │ ├── openssl_x509_checkpurpose.php │ ├── openssl_x509_export.php │ ├── openssl_x509_export_to_file.php │ ├── openssl_x509_fingerprint.php │ ├── openssl_x509_free.php │ ├── openssl_x509_parse.php │ ├── openssl_x509_read.php │ └── openssl_x509_verify.php ├── pcntl │ ├── Pcntl │ │ └── QosClass.php │ ├── pcntl_alarm.php │ ├── pcntl_async_signals.php │ ├── pcntl_errno.php │ ├── pcntl_exec.php │ ├── pcntl_fork.php │ ├── pcntl_forkx.php │ ├── pcntl_get_last_error.php │ ├── pcntl_getcpu.php │ ├── pcntl_getcpuaffinity.php │ ├── pcntl_getpriority.php │ ├── pcntl_getqos_class.php │ ├── pcntl_rfork.php │ ├── pcntl_setcpuaffinity.php │ ├── pcntl_setns.php │ ├── pcntl_setpriority.php │ ├── pcntl_setqos_class.php │ ├── pcntl_signal.php │ ├── pcntl_signal_dispatch.php │ ├── pcntl_signal_get_handler.php │ ├── pcntl_sigprocmask.php │ ├── pcntl_sigtimedwait.php │ ├── pcntl_sigwaitinfo.php │ ├── pcntl_strerror.php │ ├── pcntl_unshare.php │ ├── pcntl_wait.php │ ├── pcntl_waitid.php │ ├── pcntl_waitpid.php │ ├── pcntl_wexitstatus.php │ ├── pcntl_wifcontinued.php │ ├── pcntl_wifexited.php │ ├── pcntl_wifsignaled.php │ ├── pcntl_wifstopped.php │ ├── pcntl_wstopsig.php │ └── pcntl_wtermsig.php ├── pcre │ ├── preg_filter.php │ ├── preg_grep.php │ ├── preg_last_error.php │ ├── preg_last_error_msg.php │ ├── preg_match.php │ ├── preg_match_all.php │ ├── preg_quote.php │ ├── preg_replace.php │ ├── preg_replace_callback.php │ ├── preg_replace_callback_array.php │ └── preg_split.php ├── pdo │ ├── PDO.php │ ├── PDOException.php │ ├── PDORow.php │ ├── PDOStatement.php │ └── pdo_drivers.php ├── pdo_dblib │ └── Pdo │ │ └── Dblib.php ├── pdo_firebird │ └── Pdo │ │ └── Firebird.php ├── pdo_mysql │ └── Pdo │ │ └── Mysql.php ├── pdo_odbc │ └── Pdo │ │ └── Odbc.php ├── pdo_pgsql │ ├── PDO_PGSql_Ext.php │ └── Pdo │ │ └── Pgsql.php ├── pdo_sqlite │ ├── PDO_SQLite_Ext.php │ └── Pdo │ │ └── Sqlite.php ├── pgsql │ ├── PgSql │ │ ├── Connection.php │ │ ├── Lob.php │ │ └── Result.php │ ├── pg_affected_rows.php │ ├── pg_cancel_query.php │ ├── pg_change_password.php │ ├── pg_client_encoding.php │ ├── pg_clientencoding.php │ ├── pg_close.php │ ├── pg_close_stmt.php │ ├── pg_cmdtuples.php │ ├── pg_connect.php │ ├── pg_connect_poll.php │ ├── pg_connection_busy.php │ ├── pg_connection_reset.php │ ├── pg_connection_status.php │ ├── pg_consume_input.php │ ├── pg_convert.php │ ├── pg_copy_from.php │ ├── pg_copy_to.php │ ├── pg_dbname.php │ ├── pg_delete.php │ ├── pg_end_copy.php │ ├── pg_errormessage.php │ ├── pg_escape_bytea.php │ ├── pg_escape_identifier.php │ ├── pg_escape_literal.php │ ├── pg_escape_string.php │ ├── pg_exec.php │ ├── pg_execute.php │ ├── pg_fetch_all.php │ ├── pg_fetch_all_columns.php │ ├── pg_fetch_array.php │ ├── pg_fetch_assoc.php │ ├── pg_fetch_object.php │ ├── pg_fetch_result.php │ ├── pg_fetch_row.php │ ├── pg_field_is_null.php │ ├── pg_field_name.php │ ├── pg_field_num.php │ ├── pg_field_prtlen.php │ ├── pg_field_size.php │ ├── pg_field_table.php │ ├── pg_field_type.php │ ├── pg_field_type_oid.php │ ├── pg_fieldisnull.php │ ├── pg_fieldname.php │ ├── pg_fieldnum.php │ ├── pg_fieldprtlen.php │ ├── pg_fieldsize.php │ ├── pg_fieldtype.php │ ├── pg_flush.php │ ├── pg_free_result.php │ ├── pg_freeresult.php │ ├── pg_get_notify.php │ ├── pg_get_pid.php │ ├── pg_get_result.php │ ├── pg_getlastoid.php │ ├── pg_host.php │ ├── pg_insert.php │ ├── pg_jit.php │ ├── pg_last_error.php │ ├── pg_last_notice.php │ ├── pg_last_oid.php │ ├── pg_lo_close.php │ ├── pg_lo_create.php │ ├── pg_lo_export.php │ ├── pg_lo_import.php │ ├── pg_lo_open.php │ ├── pg_lo_read.php │ ├── pg_lo_read_all.php │ ├── pg_lo_seek.php │ ├── pg_lo_tell.php │ ├── pg_lo_truncate.php │ ├── pg_lo_unlink.php │ ├── pg_lo_write.php │ ├── pg_loclose.php │ ├── pg_locreate.php │ ├── pg_loexport.php │ ├── pg_loimport.php │ ├── pg_loopen.php │ ├── pg_loread.php │ ├── pg_loreadall.php │ ├── pg_lounlink.php │ ├── pg_lowrite.php │ ├── pg_meta_data.php │ ├── pg_num_fields.php │ ├── pg_num_rows.php │ ├── pg_numfields.php │ ├── pg_numrows.php │ ├── pg_options.php │ ├── pg_parameter_status.php │ ├── pg_pconnect.php │ ├── pg_ping.php │ ├── pg_port.php │ ├── pg_prepare.php │ ├── pg_put_copy_data.php │ ├── pg_put_copy_end.php │ ├── pg_put_line.php │ ├── pg_query.php │ ├── pg_query_params.php │ ├── pg_result.php │ ├── pg_result_error.php │ ├── pg_result_error_field.php │ ├── pg_result_memory_size.php │ ├── pg_result_seek.php │ ├── pg_result_status.php │ ├── pg_select.php │ ├── pg_send_execute.php │ ├── pg_send_prepare.php │ ├── pg_send_query.php │ ├── pg_send_query_params.php │ ├── pg_service.php │ ├── pg_set_chunked_rows_size.php │ ├── pg_set_client_encoding.php │ ├── pg_set_error_context_visibility.php │ ├── pg_set_error_verbosity.php │ ├── pg_setclientencoding.php │ ├── pg_socket.php │ ├── pg_socket_poll.php │ ├── pg_trace.php │ ├── pg_transaction_status.php │ ├── pg_tty.php │ ├── pg_unescape_bytea.php │ ├── pg_untrace.php │ ├── pg_update.php │ └── pg_version.php ├── phar │ ├── Phar.php │ ├── PharData.php │ ├── PharException.php │ └── PharFileInfo.php ├── posix │ ├── posix_access.php │ ├── posix_ctermid.php │ ├── posix_eaccess.php │ ├── posix_errno.php │ ├── posix_fpathconf.php │ ├── posix_get_last_error.php │ ├── posix_getcwd.php │ ├── posix_getegid.php │ ├── posix_geteuid.php │ ├── posix_getgid.php │ ├── posix_getgrgid.php │ ├── posix_getgrnam.php │ ├── posix_getgroups.php │ ├── posix_getlogin.php │ ├── posix_getpgid.php │ ├── posix_getpgrp.php │ ├── posix_getpid.php │ ├── posix_getppid.php │ ├── posix_getpwnam.php │ ├── posix_getpwuid.php │ ├── posix_getrlimit.php │ ├── posix_getsid.php │ ├── posix_getuid.php │ ├── posix_initgroups.php │ ├── posix_isatty.php │ ├── posix_kill.php │ ├── posix_mkfifo.php │ ├── posix_mknod.php │ ├── posix_pathconf.php │ ├── posix_setegid.php │ ├── posix_seteuid.php │ ├── posix_setgid.php │ ├── posix_setpgid.php │ ├── posix_setrlimit.php │ ├── posix_setsid.php │ ├── posix_setuid.php │ ├── posix_strerror.php │ ├── posix_sysconf.php │ ├── posix_times.php │ ├── posix_ttyname.php │ └── posix_uname.php ├── pspell │ ├── PSpell │ │ ├── Config.php │ │ └── Dictionary.php │ ├── pspell_add_to_personal.php │ ├── pspell_add_to_session.php │ ├── pspell_check.php │ ├── pspell_clear_session.php │ ├── pspell_config_create.php │ ├── pspell_config_data_dir.php │ ├── pspell_config_dict_dir.php │ ├── pspell_config_ignore.php │ ├── pspell_config_mode.php │ ├── pspell_config_personal.php │ ├── pspell_config_repl.php │ ├── pspell_config_runtogether.php │ ├── pspell_config_save_repl.php │ ├── pspell_new.php │ ├── pspell_new_config.php │ ├── pspell_new_personal.php │ ├── pspell_save_wordlist.php │ ├── pspell_store_replacement.php │ └── pspell_suggest.php ├── random │ ├── Random │ │ ├── BrokenRandomEngineError.php │ │ ├── CryptoSafeEngine.php │ │ ├── Engine.php │ │ ├── Engine │ │ │ ├── Mt19937.php │ │ │ ├── PcgOneseq128XslRr64.php │ │ │ ├── Secure.php │ │ │ └── Xoshiro256StarStar.php │ │ ├── IntervalBoundary.php │ │ ├── RandomError.php │ │ ├── RandomException.php │ │ └── Randomizer.php │ ├── getrandmax.php │ ├── lcg_value.php │ ├── mt_getrandmax.php │ ├── mt_rand.php │ ├── mt_srand.php │ ├── rand.php │ ├── random_bytes.php │ ├── random_int.php │ └── srand.php ├── readline │ ├── readline.php │ ├── readline_add_history.php │ ├── readline_callback_handler_install.php │ ├── readline_callback_handler_remove.php │ ├── readline_callback_read_char.php │ ├── readline_clear_history.php │ ├── readline_completion_function.php │ ├── readline_info.php │ ├── readline_list_history.php │ ├── readline_on_new_line.php │ ├── readline_read_history.php │ ├── readline_redisplay.php │ └── readline_write_history.php ├── reflection │ ├── PropertyHookType.php │ ├── Reflection.php │ ├── ReflectionAttribute.php │ ├── ReflectionClass.php │ ├── ReflectionClassConstant.php │ ├── ReflectionConstant.php │ ├── ReflectionEnum.php │ ├── ReflectionEnumBackedCase.php │ ├── ReflectionEnumUnitCase.php │ ├── ReflectionException.php │ ├── ReflectionExtension.php │ ├── ReflectionFiber.php │ ├── ReflectionFunction.php │ ├── ReflectionFunctionAbstract.php │ ├── ReflectionGenerator.php │ ├── ReflectionIntersectionType.php │ ├── ReflectionMethod.php │ ├── ReflectionNamedType.php │ ├── ReflectionObject.php │ ├── ReflectionParameter.php │ ├── ReflectionProperty.php │ ├── ReflectionReference.php │ ├── ReflectionType.php │ ├── ReflectionUnionType.php │ ├── ReflectionZendExtension.php │ └── Reflector.php ├── session │ ├── SessionHandler.php │ ├── SessionHandlerInterface.php │ ├── SessionIdInterface.php │ ├── SessionUpdateTimestampHandlerInterface.php │ ├── session_abort.php │ ├── session_cache_expire.php │ ├── session_cache_limiter.php │ ├── session_commit.php │ ├── session_create_id.php │ ├── session_decode.php │ ├── session_destroy.php │ ├── session_encode.php │ ├── session_gc.php │ ├── session_get_cookie_params.php │ ├── session_id.php │ ├── session_module_name.php │ ├── session_name.php │ ├── session_regenerate_id.php │ ├── session_register_shutdown.php │ ├── session_reset.php │ ├── session_save_path.php │ ├── session_set_cookie_params.php │ ├── session_set_save_handler.php │ ├── session_start.php │ ├── session_status.php │ ├── session_unset.php │ └── session_write_close.php ├── shmop │ ├── Shmop.php │ ├── shmop_close.php │ ├── shmop_delete.php │ ├── shmop_open.php │ ├── shmop_read.php │ ├── shmop_size.php │ └── shmop_write.php ├── simplexml │ ├── SimpleXMLElement.php │ ├── SimpleXMLIterator.php │ ├── simplexml_import_dom.php │ ├── simplexml_load_file.php │ └── simplexml_load_string.php ├── snmp │ ├── SNMP.php │ ├── SNMPException.php │ ├── snmp2_get.php │ ├── snmp2_getnext.php │ ├── snmp2_real_walk.php │ ├── snmp2_set.php │ ├── snmp2_walk.php │ ├── snmp3_get.php │ ├── snmp3_getnext.php │ ├── snmp3_real_walk.php │ ├── snmp3_set.php │ ├── snmp3_walk.php │ ├── snmp_get_quick_print.php │ ├── snmp_get_valueretrieval.php │ ├── snmp_read_mib.php │ ├── snmp_set_enum_print.php │ ├── snmp_set_oid_numeric_print.php │ ├── snmp_set_oid_output_format.php │ ├── snmp_set_quick_print.php │ ├── snmp_set_valueretrieval.php │ ├── snmpget.php │ ├── snmpgetnext.php │ ├── snmprealwalk.php │ ├── snmpset.php │ ├── snmpwalk.php │ └── snmpwalkoid.php ├── soap │ ├── Soap │ │ ├── Sdl.php │ │ └── Url.php │ ├── SoapClient.php │ ├── SoapFault.php │ ├── SoapHeader.php │ ├── SoapParam.php │ ├── SoapServer.php │ ├── SoapVar.php │ ├── is_soap_fault.php │ └── use_soap_error_handler.php ├── sockets │ ├── AddressInfo.php │ ├── Socket.php │ ├── socket_accept.php │ ├── socket_addrinfo_bind.php │ ├── socket_addrinfo_connect.php │ ├── socket_addrinfo_explain.php │ ├── socket_addrinfo_lookup.php │ ├── socket_atmark.php │ ├── socket_bind.php │ ├── socket_clear_error.php │ ├── socket_close.php │ ├── socket_cmsg_space.php │ ├── socket_connect.php │ ├── socket_create.php │ ├── socket_create_listen.php │ ├── socket_create_pair.php │ ├── socket_export_stream.php │ ├── socket_get_option.php │ ├── socket_getopt.php │ ├── socket_getpeername.php │ ├── socket_getsockname.php │ ├── socket_import_stream.php │ ├── socket_last_error.php │ ├── socket_listen.php │ ├── socket_read.php │ ├── socket_recv.php │ ├── socket_recvfrom.php │ ├── socket_recvmsg.php │ ├── socket_select.php │ ├── socket_send.php │ ├── socket_sendmsg.php │ ├── socket_sendto.php │ ├── socket_set_block.php │ ├── socket_set_nonblock.php │ ├── socket_set_option.php │ ├── socket_setopt.php │ ├── socket_shutdown.php │ ├── socket_strerror.php │ ├── socket_write.php │ ├── socket_wsaprotocol_info_export.php │ ├── socket_wsaprotocol_info_import.php │ └── socket_wsaprotocol_info_release.php ├── sodium │ ├── SodiumException.php │ ├── sodium_add.php │ ├── sodium_base642bin.php │ ├── sodium_bin2base64.php │ ├── sodium_bin2hex.php │ ├── sodium_compare.php │ ├── sodium_crypto_aead_aegis128l_decrypt.php │ ├── sodium_crypto_aead_aegis128l_encrypt.php │ ├── sodium_crypto_aead_aegis128l_keygen.php │ ├── sodium_crypto_aead_aegis256_decrypt.php │ ├── sodium_crypto_aead_aegis256_encrypt.php │ ├── sodium_crypto_aead_aegis256_keygen.php │ ├── sodium_crypto_aead_aes256gcm_decrypt.php │ ├── sodium_crypto_aead_aes256gcm_encrypt.php │ ├── sodium_crypto_aead_aes256gcm_is_available.php │ ├── sodium_crypto_aead_aes256gcm_keygen.php │ ├── sodium_crypto_aead_chacha20poly1305_decrypt.php │ ├── sodium_crypto_aead_chacha20poly1305_encrypt.php │ ├── sodium_crypto_aead_chacha20poly1305_ietf_decrypt.php │ ├── sodium_crypto_aead_chacha20poly1305_ietf_encrypt.php │ ├── sodium_crypto_aead_chacha20poly1305_ietf_keygen.php │ ├── sodium_crypto_aead_chacha20poly1305_keygen.php │ ├── sodium_crypto_aead_xchacha20poly1305_ietf_decrypt.php │ ├── sodium_crypto_aead_xchacha20poly1305_ietf_encrypt.php │ ├── sodium_crypto_aead_xchacha20poly1305_ietf_keygen.php │ ├── sodium_crypto_auth.php │ ├── sodium_crypto_auth_keygen.php │ ├── sodium_crypto_auth_verify.php │ ├── sodium_crypto_box.php │ ├── sodium_crypto_box_keypair.php │ ├── sodium_crypto_box_keypair_from_secretkey_and_publickey.php │ ├── sodium_crypto_box_open.php │ ├── sodium_crypto_box_publickey.php │ ├── sodium_crypto_box_publickey_from_secretkey.php │ ├── sodium_crypto_box_seal.php │ ├── sodium_crypto_box_seal_open.php │ ├── sodium_crypto_box_secretkey.php │ ├── sodium_crypto_box_seed_keypair.php │ ├── sodium_crypto_core_ristretto255_add.php │ ├── sodium_crypto_core_ristretto255_from_hash.php │ ├── sodium_crypto_core_ristretto255_is_valid_point.php │ ├── sodium_crypto_core_ristretto255_random.php │ ├── sodium_crypto_core_ristretto255_scalar_add.php │ ├── sodium_crypto_core_ristretto255_scalar_complement.php │ ├── sodium_crypto_core_ristretto255_scalar_invert.php │ ├── sodium_crypto_core_ristretto255_scalar_mul.php │ ├── sodium_crypto_core_ristretto255_scalar_negate.php │ ├── sodium_crypto_core_ristretto255_scalar_random.php │ ├── sodium_crypto_core_ristretto255_scalar_reduce.php │ ├── sodium_crypto_core_ristretto255_scalar_sub.php │ ├── sodium_crypto_core_ristretto255_sub.php │ ├── sodium_crypto_generichash.php │ ├── sodium_crypto_generichash_final.php │ ├── sodium_crypto_generichash_init.php │ ├── sodium_crypto_generichash_keygen.php │ ├── sodium_crypto_generichash_update.php │ ├── sodium_crypto_kdf_derive_from_key.php │ ├── sodium_crypto_kdf_keygen.php │ ├── sodium_crypto_kx_client_session_keys.php │ ├── sodium_crypto_kx_keypair.php │ ├── sodium_crypto_kx_publickey.php │ ├── sodium_crypto_kx_secretkey.php │ ├── sodium_crypto_kx_seed_keypair.php │ ├── sodium_crypto_kx_server_session_keys.php │ ├── sodium_crypto_pwhash.php │ ├── sodium_crypto_pwhash_scryptsalsa208sha256.php │ ├── sodium_crypto_pwhash_scryptsalsa208sha256_str.php │ ├── sodium_crypto_pwhash_scryptsalsa208sha256_str_verify.php │ ├── sodium_crypto_pwhash_str.php │ ├── sodium_crypto_pwhash_str_needs_rehash.php │ ├── sodium_crypto_pwhash_str_verify.php │ ├── sodium_crypto_scalarmult.php │ ├── sodium_crypto_scalarmult_base.php │ ├── sodium_crypto_scalarmult_ristretto255.php │ ├── sodium_crypto_scalarmult_ristretto255_base.php │ ├── sodium_crypto_secretbox.php │ ├── sodium_crypto_secretbox_keygen.php │ ├── sodium_crypto_secretbox_open.php │ ├── sodium_crypto_secretstream_xchacha20poly1305_init_pull.php │ ├── sodium_crypto_secretstream_xchacha20poly1305_init_push.php │ ├── sodium_crypto_secretstream_xchacha20poly1305_keygen.php │ ├── sodium_crypto_secretstream_xchacha20poly1305_pull.php │ ├── sodium_crypto_secretstream_xchacha20poly1305_push.php │ ├── sodium_crypto_secretstream_xchacha20poly1305_rekey.php │ ├── sodium_crypto_shorthash.php │ ├── sodium_crypto_shorthash_keygen.php │ ├── sodium_crypto_sign.php │ ├── sodium_crypto_sign_detached.php │ ├── sodium_crypto_sign_ed25519_pk_to_curve25519.php │ ├── sodium_crypto_sign_ed25519_sk_to_curve25519.php │ ├── sodium_crypto_sign_keypair.php │ ├── sodium_crypto_sign_keypair_from_secretkey_and_publickey.php │ ├── sodium_crypto_sign_open.php │ ├── sodium_crypto_sign_publickey.php │ ├── sodium_crypto_sign_publickey_from_secretkey.php │ ├── sodium_crypto_sign_secretkey.php │ ├── sodium_crypto_sign_seed_keypair.php │ ├── sodium_crypto_sign_verify_detached.php │ ├── sodium_crypto_stream.php │ ├── sodium_crypto_stream_keygen.php │ ├── sodium_crypto_stream_xchacha20.php │ ├── sodium_crypto_stream_xchacha20_keygen.php │ ├── sodium_crypto_stream_xchacha20_xor.php │ ├── sodium_crypto_stream_xchacha20_xor_ic.php │ ├── sodium_crypto_stream_xor.php │ ├── sodium_hex2bin.php │ ├── sodium_increment.php │ ├── sodium_memcmp.php │ ├── sodium_memzero.php │ ├── sodium_pad.php │ └── sodium_unpad.php ├── spl │ ├── AppendIterator.php │ ├── ArrayIterator.php │ ├── ArrayObject.php │ ├── BadFunctionCallException.php │ ├── BadMethodCallException.php │ ├── CachingIterator.php │ ├── CallbackFilterIterator.php │ ├── DirectoryIterator.php │ ├── DomainException.php │ ├── EmptyIterator.php │ ├── FilesystemIterator.php │ ├── FilterIterator.php │ ├── GlobIterator.php │ ├── InfiniteIterator.php │ ├── InvalidArgumentException.php │ ├── IteratorIterator.php │ ├── LengthException.php │ ├── LimitIterator.php │ ├── LogicException.php │ ├── MultipleIterator.php │ ├── NoRewindIterator.php │ ├── OutOfBoundsException.php │ ├── OutOfRangeException.php │ ├── OuterIterator.php │ ├── OverflowException.php │ ├── ParentIterator.php │ ├── RangeException.php │ ├── RecursiveArrayIterator.php │ ├── RecursiveCachingIterator.php │ ├── RecursiveCallbackFilterIterator.php │ ├── RecursiveDirectoryIterator.php │ ├── RecursiveFilterIterator.php │ ├── RecursiveIterator.php │ ├── RecursiveIteratorIterator.php │ ├── RecursiveRegexIterator.php │ ├── RecursiveTreeIterator.php │ ├── RegexIterator.php │ ├── RuntimeException.php │ ├── SeekableIterator.php │ ├── SplDoublyLinkedList.php │ ├── SplFileInfo.php │ ├── SplFileObject.php │ ├── SplFixedArray.php │ ├── SplHeap.php │ ├── SplMaxHeap.php │ ├── SplMinHeap.php │ ├── SplObjectStorage.php │ ├── SplObserver.php │ ├── SplPriorityQueue.php │ ├── SplQueue.php │ ├── SplStack.php │ ├── SplSubject.php │ ├── SplTempFileObject.php │ ├── UnderflowException.php │ ├── UnexpectedValueException.php │ ├── class_implements.php │ ├── class_parents.php │ ├── class_uses.php │ ├── iterator_apply.php │ ├── iterator_count.php │ ├── iterator_to_array.php │ ├── spl_autoload.php │ ├── spl_autoload_call.php │ ├── spl_autoload_extensions.php │ ├── spl_autoload_functions.php │ ├── spl_autoload_register.php │ ├── spl_autoload_unregister.php │ ├── spl_classes.php │ ├── spl_object_hash.php │ └── spl_object_id.php ├── sqlite3 │ ├── SQLite3.php │ ├── SQLite3Exception.php │ ├── SQLite3Result.php │ └── SQLite3Stmt.php ├── standard │ ├── AssertionError.php │ ├── Directory.php │ ├── RoundingMode.php │ ├── StreamBucket.php │ ├── __PHP_Incomplete_Class.php │ ├── abs.php │ ├── acos.php │ ├── acosh.php │ ├── addcslashes.php │ ├── addslashes.php │ ├── array_all.php │ ├── array_any.php │ ├── array_change_key_case.php │ ├── array_chunk.php │ ├── array_column.php │ ├── array_combine.php │ ├── array_count_values.php │ ├── array_diff.php │ ├── array_diff_assoc.php │ ├── array_diff_key.php │ ├── array_diff_uassoc.php │ ├── array_diff_ukey.php │ ├── array_fill.php │ ├── array_fill_keys.php │ ├── array_filter.php │ ├── array_find.php │ ├── array_find_key.php │ ├── array_first.php │ ├── array_flip.php │ ├── array_intersect.php │ ├── array_intersect_assoc.php │ ├── array_intersect_key.php │ ├── array_intersect_uassoc.php │ ├── array_intersect_ukey.php │ ├── array_is_list.php │ ├── array_key_exists.php │ ├── array_key_first.php │ ├── array_key_last.php │ ├── array_keys.php │ ├── array_last.php │ ├── array_map.php │ ├── array_merge.php │ ├── array_merge_recursive.php │ ├── array_multisort.php │ ├── array_pad.php │ ├── array_pop.php │ ├── array_product.php │ ├── array_push.php │ ├── array_rand.php │ ├── array_reduce.php │ ├── array_replace.php │ ├── array_replace_recursive.php │ ├── array_reverse.php │ ├── array_search.php │ ├── array_shift.php │ ├── array_slice.php │ ├── array_splice.php │ ├── array_sum.php │ ├── array_udiff.php │ ├── array_udiff_assoc.php │ ├── array_udiff_uassoc.php │ ├── array_uintersect.php │ ├── array_uintersect_assoc.php │ ├── array_uintersect_uassoc.php │ ├── array_unique.php │ ├── array_unshift.php │ ├── array_values.php │ ├── array_walk.php │ ├── array_walk_recursive.php │ ├── arsort.php │ ├── asin.php │ ├── asinh.php │ ├── asort.php │ ├── assert.php │ ├── assert_options.php │ ├── atan.php │ ├── atan2.php │ ├── atanh.php │ ├── base64_decode.php │ ├── base64_encode.php │ ├── base_convert.php │ ├── basename.php │ ├── bin2hex.php │ ├── bindec.php │ ├── boolval.php │ ├── call_user_func.php │ ├── call_user_func_array.php │ ├── ceil.php │ ├── chdir.php │ ├── checkdnsrr.php │ ├── chgrp.php │ ├── chmod.php │ ├── chop.php │ ├── chown.php │ ├── chr.php │ ├── chroot.php │ ├── chunk_split.php │ ├── clearstatcache.php │ ├── closedir.php │ ├── closelog.php │ ├── compact.php │ ├── config_get_hash.php │ ├── connection_aborted.php │ ├── connection_status.php │ ├── constant.php │ ├── convert_uudecode.php │ ├── convert_uuencode.php │ ├── copy.php │ ├── cos.php │ ├── cosh.php │ ├── count.php │ ├── count_chars.php │ ├── crc32.php │ ├── crypt.php │ ├── current.php │ ├── debug_zval_dump.php │ ├── decbin.php │ ├── dechex.php │ ├── decoct.php │ ├── deg2rad.php │ ├── dir.php │ ├── dirname.php │ ├── disk_free_space.php │ ├── disk_total_space.php │ ├── diskfreespace.php │ ├── dl.php │ ├── dns_check_record.php │ ├── dns_get_mx.php │ ├── dns_get_record.php │ ├── doubleval.php │ ├── end.php │ ├── error_clear_last.php │ ├── error_get_last.php │ ├── error_log.php │ ├── escapeshellarg.php │ ├── escapeshellcmd.php │ ├── exec.php │ ├── exp.php │ ├── explode.php │ ├── expm1.php │ ├── extract.php │ ├── fclose.php │ ├── fdatasync.php │ ├── fdiv.php │ ├── feof.php │ ├── fflush.php │ ├── fgetc.php │ ├── fgetcsv.php │ ├── fgets.php │ ├── file.php │ ├── file_exists.php │ ├── file_get_contents.php │ ├── file_put_contents.php │ ├── fileatime.php │ ├── filectime.php │ ├── filegroup.php │ ├── fileinode.php │ ├── filemtime.php │ ├── fileowner.php │ ├── fileperms.php │ ├── filesize.php │ ├── filetype.php │ ├── floatval.php │ ├── flock.php │ ├── floor.php │ ├── flush.php │ ├── fmod.php │ ├── fnmatch.php │ ├── fopen.php │ ├── forward_static_call.php │ ├── forward_static_call_array.php │ ├── fpassthru.php │ ├── fpow.php │ ├── fprintf.php │ ├── fputcsv.php │ ├── fputs.php │ ├── fread.php │ ├── fscanf.php │ ├── fseek.php │ ├── fsockopen.php │ ├── fstat.php │ ├── fsync.php │ ├── ftell.php │ ├── ftok.php │ ├── ftruncate.php │ ├── fwrite.php │ ├── get_browser.php │ ├── get_cfg_var.php │ ├── get_current_user.php │ ├── get_debug_type.php │ ├── get_headers.php │ ├── get_html_translation_table.php │ ├── get_include_path.php │ ├── get_meta_tags.php │ ├── getcwd.php │ ├── getenv.php │ ├── gethostbyaddr.php │ ├── gethostbyname.php │ ├── gethostbynamel.php │ ├── gethostname.php │ ├── getimagesize.php │ ├── getimagesizefromstring.php │ ├── getlastmod.php │ ├── getmxrr.php │ ├── getmygid.php │ ├── getmyinode.php │ ├── getmypid.php │ ├── getmyuid.php │ ├── getopt.php │ ├── getprotobyname.php │ ├── getprotobynumber.php │ ├── getrandmax.php │ ├── getrusage.php │ ├── getservbyname.php │ ├── getservbyport.php │ ├── gettimeofday.php │ ├── gettype.php │ ├── glob.php │ ├── header.php │ ├── header_register_callback.php │ ├── header_remove.php │ ├── headers_list.php │ ├── headers_sent.php │ ├── hebrev.php │ ├── hex2bin.php │ ├── hexdec.php │ ├── highlight_file.php │ ├── highlight_string.php │ ├── hrtime.php │ ├── html_entity_decode.php │ ├── htmlentities.php │ ├── htmlspecialchars.php │ ├── htmlspecialchars_decode.php │ ├── http_build_query.php │ ├── http_clear_last_response_headers.php │ ├── http_get_last_response_headers.php │ ├── http_response_code.php │ ├── hypot.php │ ├── ignore_user_abort.php │ ├── image_type_to_extension.php │ ├── image_type_to_mime_type.php │ ├── implode.php │ ├── in_array.php │ ├── inet_ntop.php │ ├── inet_pton.php │ ├── ini_alter.php │ ├── ini_get.php │ ├── ini_get_all.php │ ├── ini_parse_quantity.php │ ├── ini_restore.php │ ├── ini_set.php │ ├── intdiv.php │ ├── intval.php │ ├── ip2long.php │ ├── iptcembed.php │ ├── iptcparse.php │ ├── is_array.php │ ├── is_bool.php │ ├── is_callable.php │ ├── is_countable.php │ ├── is_dir.php │ ├── is_double.php │ ├── is_executable.php │ ├── is_file.php │ ├── is_finite.php │ ├── is_float.php │ ├── is_infinite.php │ ├── is_int.php │ ├── is_integer.php │ ├── is_iterable.php │ ├── is_link.php │ ├── is_long.php │ ├── is_nan.php │ ├── is_null.php │ ├── is_numeric.php │ ├── is_object.php │ ├── is_readable.php │ ├── is_resource.php │ ├── is_scalar.php │ ├── is_string.php │ ├── is_uploaded_file.php │ ├── is_writable.php │ ├── is_writeable.php │ ├── join.php │ ├── key.php │ ├── key_exists.php │ ├── krsort.php │ ├── ksort.php │ ├── lcfirst.php │ ├── lcg_value.php │ ├── lchgrp.php │ ├── lchown.php │ ├── levenshtein.php │ ├── link.php │ ├── linkinfo.php │ ├── localeconv.php │ ├── log.php │ ├── log10.php │ ├── log1p.php │ ├── long2ip.php │ ├── lstat.php │ ├── ltrim.php │ ├── mail.php │ ├── max.php │ ├── md5.php │ ├── md5_file.php │ ├── memory_get_peak_usage.php │ ├── memory_get_usage.php │ ├── memory_reset_peak_usage.php │ ├── metaphone.php │ ├── microtime.php │ ├── min.php │ ├── mkdir.php │ ├── move_uploaded_file.php │ ├── mt_getrandmax.php │ ├── mt_rand.php │ ├── mt_srand.php │ ├── natcasesort.php │ ├── natsort.php │ ├── net_get_interfaces.php │ ├── next.php │ ├── nl2br.php │ ├── nl_langinfo.php │ ├── number_format.php │ ├── ob_clean.php │ ├── ob_end_clean.php │ ├── ob_end_flush.php │ ├── ob_flush.php │ ├── ob_get_clean.php │ ├── ob_get_contents.php │ ├── ob_get_flush.php │ ├── ob_get_length.php │ ├── ob_get_level.php │ ├── ob_get_status.php │ ├── ob_implicit_flush.php │ ├── ob_list_handlers.php │ ├── ob_start.php │ ├── octdec.php │ ├── opendir.php │ ├── openlog.php │ ├── ord.php │ ├── output_add_rewrite_var.php │ ├── output_reset_rewrite_vars.php │ ├── pack.php │ ├── parse_ini_file.php │ ├── parse_ini_string.php │ ├── parse_str.php │ ├── parse_url.php │ ├── passthru.php │ ├── password_algos.php │ ├── password_get_info.php │ ├── password_hash.php │ ├── password_needs_rehash.php │ ├── password_verify.php │ ├── pathinfo.php │ ├── pclose.php │ ├── pfsockopen.php │ ├── php_ini_loaded_file.php │ ├── php_ini_scanned_files.php │ ├── php_sapi_name.php │ ├── php_strip_whitespace.php │ ├── php_uname.php │ ├── php_user_filter.php │ ├── phpcredits.php │ ├── phpinfo.php │ ├── phpversion.php │ ├── pi.php │ ├── popen.php │ ├── pos.php │ ├── pow.php │ ├── prev.php │ ├── print_r.php │ ├── printf.php │ ├── proc_close.php │ ├── proc_get_status.php │ ├── proc_nice.php │ ├── proc_open.php │ ├── proc_terminate.php │ ├── putenv.php │ ├── quoted_printable_decode.php │ ├── quoted_printable_encode.php │ ├── quotemeta.php │ ├── rad2deg.php │ ├── rand.php │ ├── random_bytes.php │ ├── random_int.php │ ├── range.php │ ├── rawurldecode.php │ ├── rawurlencode.php │ ├── readdir.php │ ├── readfile.php │ ├── readlink.php │ ├── realpath.php │ ├── realpath_cache_get.php │ ├── realpath_cache_size.php │ ├── register_shutdown_function.php │ ├── register_tick_function.php │ ├── rename.php │ ├── request_parse_body.php │ ├── reset.php │ ├── rewind.php │ ├── rewinddir.php │ ├── rmdir.php │ ├── round.php │ ├── rsort.php │ ├── rtrim.php │ ├── sapi_windows_cp_conv.php │ ├── sapi_windows_cp_get.php │ ├── sapi_windows_cp_is_utf8.php │ ├── sapi_windows_cp_set.php │ ├── sapi_windows_generate_ctrl_event.php │ ├── sapi_windows_set_ctrl_handler.php │ ├── sapi_windows_vt100_support.php │ ├── scandir.php │ ├── serialize.php │ ├── set_file_buffer.php │ ├── set_include_path.php │ ├── set_time_limit.php │ ├── setcookie.php │ ├── setlocale.php │ ├── setrawcookie.php │ ├── settype.php │ ├── sha1.php │ ├── sha1_file.php │ ├── shell_exec.php │ ├── show_source.php │ ├── shuffle.php │ ├── similar_text.php │ ├── sin.php │ ├── sinh.php │ ├── sizeof.php │ ├── sleep.php │ ├── socket_get_status.php │ ├── socket_set_blocking.php │ ├── socket_set_timeout.php │ ├── sort.php │ ├── soundex.php │ ├── sprintf.php │ ├── sqrt.php │ ├── srand.php │ ├── sscanf.php │ ├── stat.php │ ├── str_contains.php │ ├── str_decrement.php │ ├── str_ends_with.php │ ├── str_getcsv.php │ ├── str_increment.php │ ├── str_ireplace.php │ ├── str_pad.php │ ├── str_repeat.php │ ├── str_replace.php │ ├── str_rot13.php │ ├── str_shuffle.php │ ├── str_split.php │ ├── str_starts_with.php │ ├── str_word_count.php │ ├── strchr.php │ ├── strcoll.php │ ├── strcspn.php │ ├── stream_bucket_append.php │ ├── stream_bucket_make_writeable.php │ ├── stream_bucket_new.php │ ├── stream_bucket_prepend.php │ ├── stream_context_create.php │ ├── stream_context_get_default.php │ ├── stream_context_get_options.php │ ├── stream_context_get_params.php │ ├── stream_context_set_default.php │ ├── stream_context_set_option.php │ ├── stream_context_set_options.php │ ├── stream_context_set_params.php │ ├── stream_copy_to_stream.php │ ├── stream_filter_append.php │ ├── stream_filter_prepend.php │ ├── stream_filter_register.php │ ├── stream_filter_remove.php │ ├── stream_get_contents.php │ ├── stream_get_filters.php │ ├── stream_get_line.php │ ├── stream_get_meta_data.php │ ├── stream_get_transports.php │ ├── stream_get_wrappers.php │ ├── stream_is_local.php │ ├── stream_isatty.php │ ├── stream_register_wrapper.php │ ├── stream_resolve_include_path.php │ ├── stream_select.php │ ├── stream_set_blocking.php │ ├── stream_set_chunk_size.php │ ├── stream_set_read_buffer.php │ ├── stream_set_timeout.php │ ├── stream_set_write_buffer.php │ ├── stream_socket_accept.php │ ├── stream_socket_client.php │ ├── stream_socket_enable_crypto.php │ ├── stream_socket_get_name.php │ ├── stream_socket_pair.php │ ├── stream_socket_recvfrom.php │ ├── stream_socket_sendto.php │ ├── stream_socket_server.php │ ├── stream_socket_shutdown.php │ ├── stream_supports_lock.php │ ├── stream_wrapper_register.php │ ├── stream_wrapper_restore.php │ ├── stream_wrapper_unregister.php │ ├── strip_tags.php │ ├── stripcslashes.php │ ├── stripos.php │ ├── stripslashes.php │ ├── stristr.php │ ├── strnatcasecmp.php │ ├── strnatcmp.php │ ├── strpbrk.php │ ├── strpos.php │ ├── strptime.php │ ├── strrchr.php │ ├── strrev.php │ ├── strripos.php │ ├── strrpos.php │ ├── strspn.php │ ├── strstr.php │ ├── strtok.php │ ├── strtolower.php │ ├── strtoupper.php │ ├── strtr.php │ ├── strval.php │ ├── substr.php │ ├── substr_compare.php │ ├── substr_count.php │ ├── substr_replace.php │ ├── symlink.php │ ├── sys_get_temp_dir.php │ ├── sys_getloadavg.php │ ├── syslog.php │ ├── system.php │ ├── tan.php │ ├── tanh.php │ ├── tempnam.php │ ├── time_nanosleep.php │ ├── time_sleep_until.php │ ├── tmpfile.php │ ├── touch.php │ ├── trim.php │ ├── uasort.php │ ├── ucfirst.php │ ├── ucwords.php │ ├── uksort.php │ ├── umask.php │ ├── uniqid.php │ ├── unlink.php │ ├── unpack.php │ ├── unregister_tick_function.php │ ├── unserialize.php │ ├── urldecode.php │ ├── urlencode.php │ ├── usleep.php │ ├── usort.php │ ├── utf8_decode.php │ ├── utf8_encode.php │ ├── var_dump.php │ ├── var_export.php │ ├── version_compare.php │ ├── vfprintf.php │ ├── vprintf.php │ ├── vsprintf.php │ └── wordwrap.php ├── sysvmsg │ ├── SysvMessageQueue.php │ ├── msg_get_queue.php │ ├── msg_queue_exists.php │ ├── msg_receive.php │ ├── msg_remove_queue.php │ ├── msg_send.php │ ├── msg_set_queue.php │ └── msg_stat_queue.php ├── sysvsem │ ├── SysvSemaphore.php │ ├── sem_acquire.php │ ├── sem_get.php │ ├── sem_release.php │ └── sem_remove.php ├── sysvshm │ ├── SysvSharedMemory.php │ ├── shm_attach.php │ ├── shm_detach.php │ ├── shm_get_var.php │ ├── shm_has_var.php │ ├── shm_put_var.php │ ├── shm_remove.php │ └── shm_remove_var.php ├── tidy │ ├── tidy.php │ ├── tidyNode.php │ ├── tidy_access_count.php │ ├── tidy_clean_repair.php │ ├── tidy_config_count.php │ ├── tidy_diagnose.php │ ├── tidy_error_count.php │ ├── tidy_get_body.php │ ├── tidy_get_config.php │ ├── tidy_get_error_buffer.php │ ├── tidy_get_head.php │ ├── tidy_get_html.php │ ├── tidy_get_html_ver.php │ ├── tidy_get_opt_doc.php │ ├── tidy_get_output.php │ ├── tidy_get_release.php │ ├── tidy_get_root.php │ ├── tidy_get_status.php │ ├── tidy_getopt.php │ ├── tidy_is_xhtml.php │ ├── tidy_is_xml.php │ ├── tidy_parse_file.php │ ├── tidy_parse_string.php │ ├── tidy_repair_file.php │ ├── tidy_repair_string.php │ └── tidy_warning_count.php ├── tokenizer │ ├── PhpToken.php │ ├── token_get_all.php │ └── token_name.php ├── uri │ └── Uri │ │ ├── InvalidUriException.php │ │ ├── Rfc3986 │ │ └── Uri.php │ │ ├── UriComparisonMode.php │ │ ├── UriError.php │ │ ├── UriException.php │ │ └── WhatWg │ │ ├── InvalidUrlException.php │ │ ├── Url.php │ │ ├── UrlValidationError.php │ │ └── UrlValidationErrorType.php ├── xml │ ├── XMLParser.php │ ├── xml_error_string.php │ ├── xml_get_current_byte_index.php │ ├── xml_get_current_column_number.php │ ├── xml_get_current_line_number.php │ ├── xml_get_error_code.php │ ├── xml_parse.php │ ├── xml_parse_into_struct.php │ ├── xml_parser_create.php │ ├── xml_parser_create_ns.php │ ├── xml_parser_free.php │ ├── xml_parser_get_option.php │ ├── xml_parser_set_option.php │ ├── xml_set_character_data_handler.php │ ├── xml_set_default_handler.php │ ├── xml_set_element_handler.php │ ├── xml_set_end_namespace_decl_handler.php │ ├── xml_set_external_entity_ref_handler.php │ ├── xml_set_notation_decl_handler.php │ ├── xml_set_object.php │ ├── xml_set_processing_instruction_handler.php │ ├── xml_set_start_namespace_decl_handler.php │ └── xml_set_unparsed_entity_decl_handler.php ├── xmlreader │ └── XMLReader.php ├── xmlwriter │ ├── XMLWriter.php │ ├── xmlwriter_end_attribute.php │ ├── xmlwriter_end_cdata.php │ ├── xmlwriter_end_comment.php │ ├── xmlwriter_end_document.php │ ├── xmlwriter_end_dtd.php │ ├── xmlwriter_end_dtd_attlist.php │ ├── xmlwriter_end_dtd_element.php │ ├── xmlwriter_end_dtd_entity.php │ ├── xmlwriter_end_element.php │ ├── xmlwriter_end_pi.php │ ├── xmlwriter_flush.php │ ├── xmlwriter_full_end_element.php │ ├── xmlwriter_open_memory.php │ ├── xmlwriter_open_uri.php │ ├── xmlwriter_output_memory.php │ ├── xmlwriter_set_indent.php │ ├── xmlwriter_set_indent_string.php │ ├── xmlwriter_start_attribute.php │ ├── xmlwriter_start_attribute_ns.php │ ├── xmlwriter_start_cdata.php │ ├── xmlwriter_start_comment.php │ ├── xmlwriter_start_document.php │ ├── xmlwriter_start_dtd.php │ ├── xmlwriter_start_dtd_attlist.php │ ├── xmlwriter_start_dtd_element.php │ ├── xmlwriter_start_dtd_entity.php │ ├── xmlwriter_start_element.php │ ├── xmlwriter_start_element_ns.php │ ├── xmlwriter_start_pi.php │ ├── xmlwriter_text.php │ ├── xmlwriter_write_attribute.php │ ├── xmlwriter_write_attribute_ns.php │ ├── xmlwriter_write_cdata.php │ ├── xmlwriter_write_comment.php │ ├── xmlwriter_write_dtd.php │ ├── xmlwriter_write_dtd_attlist.php │ ├── xmlwriter_write_dtd_element.php │ ├── xmlwriter_write_dtd_entity.php │ ├── xmlwriter_write_element.php │ ├── xmlwriter_write_element_ns.php │ ├── xmlwriter_write_pi.php │ └── xmlwriter_write_raw.php ├── xsl │ └── XSLTProcessor.php ├── zip │ ├── ZipArchive.php │ ├── zip_close.php │ ├── zip_entry_close.php │ ├── zip_entry_compressedsize.php │ ├── zip_entry_compressionmethod.php │ ├── zip_entry_filesize.php │ ├── zip_entry_name.php │ ├── zip_entry_open.php │ ├── zip_entry_read.php │ ├── zip_open.php │ └── zip_read.php └── zlib │ ├── DeflateContext.php │ ├── InflateContext.php │ ├── deflate_add.php │ ├── deflate_init.php │ ├── gzclose.php │ ├── gzcompress.php │ ├── gzdecode.php │ ├── gzdeflate.php │ ├── gzencode.php │ ├── gzeof.php │ ├── gzfile.php │ ├── gzgetc.php │ ├── gzgets.php │ ├── gzinflate.php │ ├── gzopen.php │ ├── gzpassthru.php │ ├── gzputs.php │ ├── gzread.php │ ├── gzrewind.php │ ├── gzseek.php │ ├── gztell.php │ ├── gzuncompress.php │ ├── gzwrite.php │ ├── inflate_add.php │ ├── inflate_get_read_len.php │ ├── inflate_get_status.php │ ├── inflate_init.php │ ├── ob_gzhandler.php │ ├── readgzfile.php │ ├── zlib_decode.php │ ├── zlib_encode.php │ └── zlib_get_coding_type.php └── sapi ├── apache2handler ├── apache_get_modules.php ├── apache_get_version.php ├── apache_getenv.php ├── apache_lookup_uri.php ├── apache_note.php ├── apache_request_headers.php ├── apache_response_headers.php ├── apache_setenv.php ├── getallheaders.php └── virtual.php ├── cgi ├── apache_child_terminate.php ├── apache_request_headers.php ├── apache_response_headers.php └── getallheaders.php ├── cli ├── apache_request_headers.php ├── apache_response_headers.php ├── cli_get_process_title.php ├── cli_set_process_title.php └── getallheaders.php ├── fpm └── fpm │ ├── apache_request_headers.php │ ├── fastcgi_finish_request.php │ ├── fpm_get_status.php │ └── getallheaders.php ├── litespeed ├── apache_get_modules.php ├── apache_request_headers.php ├── apache_response_headers.php ├── getallheaders.php ├── litespeed_finish_request.php ├── litespeed_request_headers.php └── litespeed_response_headers.php └── phpdbg ├── phpdbg_break_file.php ├── phpdbg_break_function.php ├── phpdbg_break_method.php ├── phpdbg_break_next.php ├── phpdbg_clear.php ├── phpdbg_color.php ├── phpdbg_end_oplog.php ├── phpdbg_exec.php ├── phpdbg_get_executable.php ├── phpdbg_prompt.php └── phpdbg_start_oplog.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /php-src 2 | /vendor 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/LICENSE -------------------------------------------------------------------------------- /Php8StubsMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/Php8StubsMap.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/composer.lock -------------------------------------------------------------------------------- /stubs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/LICENSE -------------------------------------------------------------------------------- /stubs/Zend/ArithmeticError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/ArithmeticError.php -------------------------------------------------------------------------------- /stubs/Zend/ArrayAccess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/ArrayAccess.php -------------------------------------------------------------------------------- /stubs/Zend/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Attribute.php -------------------------------------------------------------------------------- /stubs/Zend/BackedEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/BackedEnum.php -------------------------------------------------------------------------------- /stubs/Zend/Closure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Closure.php -------------------------------------------------------------------------------- /stubs/Zend/CompileError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/CompileError.php -------------------------------------------------------------------------------- /stubs/Zend/Countable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Countable.php -------------------------------------------------------------------------------- /stubs/Zend/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Deprecated.php -------------------------------------------------------------------------------- /stubs/Zend/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Error.php -------------------------------------------------------------------------------- /stubs/Zend/ErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/ErrorException.php -------------------------------------------------------------------------------- /stubs/Zend/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Exception.php -------------------------------------------------------------------------------- /stubs/Zend/Fiber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Fiber.php -------------------------------------------------------------------------------- /stubs/Zend/FiberError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/FiberError.php -------------------------------------------------------------------------------- /stubs/Zend/Generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Generator.php -------------------------------------------------------------------------------- /stubs/Zend/InternalIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/InternalIterator.php -------------------------------------------------------------------------------- /stubs/Zend/Iterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Iterator.php -------------------------------------------------------------------------------- /stubs/Zend/NoDiscard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/NoDiscard.php -------------------------------------------------------------------------------- /stubs/Zend/Override.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Override.php -------------------------------------------------------------------------------- /stubs/Zend/ParseError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/ParseError.php -------------------------------------------------------------------------------- /stubs/Zend/Serializable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Serializable.php -------------------------------------------------------------------------------- /stubs/Zend/Stringable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Stringable.php -------------------------------------------------------------------------------- /stubs/Zend/Throwable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpstan/php-8-stubs/HEAD/stubs/Zend/Throwable.php -------------------------------------------------------------------------------- /stubs/Zend/Traversable.php: -------------------------------------------------------------------------------- 1 |