在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → PHP7.2源码 下载

PHP7.2源码 下载

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:25.75M
  • 下载次数:4
  • 浏览次数:15
  • 发布时间:2023-11-04
  • 实例类别:PHP语言基础
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签: php hp 源码 下载

实例介绍

【实例简介】PHP7.2源码 下载
《区块链参考架构》标准内容可分为八个部分,包括范围、术语和缩略语、概述、参考架构、用户视图、功能视图、用户视图和功能视图的关系、附录。李鸣着重介绍了用户视图、功能视图及两者关系三块内容。

【实例截图】

from clipboard

【核心代码】

.
├── PHP7.2源码 下载_php-7.2.4-src.zip
└── php-7.2.4-src
    ├── CODING_STANDARDS
    ├── CONTRIBUTING.md
    ├── CREDITS
    ├── EXTENSIONS
    ├── acinclude.m4
    ├── appveyor
    │   ├── build.bat
    │   ├── build_task.bat
    │   ├── test.bat
    │   └── test_task.bat
    ├── build
    │   ├── ax_check_compile_flag.m4
    │   ├── build.mk
    │   ├── build2.mk
    │   ├── buildcheck.sh
    │   ├── config-stubs
    │   ├── genif.sh
    │   ├── libtool.m4
    │   ├── mkdep.awk
    │   ├── order_by_dep.awk
    │   ├── print_include.awk
    │   ├── scan_makefile_in.awk
    │   └── shtool
    ├── buildconf
    ├── buildconf.bat
    ├── config.guess
    ├── config.sub
    ├── configure.ac
    └── ext
        ├── bcmath
        │   ├── CREDITS
        │   ├── bcmath.c
        │   ├── config.m4
        │   ├── config.w32
        │   ├── libbcmath
        │   ├── package.xml
        │   ├── php_bcmath.h
        │   └── tests
        ├── bz2
        │   ├── CREDITS
        │   ├── bz2.c
        │   ├── bz2_filter.c
        │   ├── config.m4
        │   ├── config.w32
        │   ├── package.xml
        │   ├── php_bz2.def
        │   ├── php_bz2.h
        │   └── tests
        ├── calendar
        │   ├── CREDITS
        │   ├── cal_unix.c
        │   ├── calendar.c
        │   ├── config.m4
        │   ├── config.w32
        │   ├── dow.c
        │   ├── easter.c
        │   ├── french.c
        │   ├── gregor.c
        │   ├── jewish.c
        │   ├── julian.c
        │   ├── package.xml
        │   ├── php_calendar.h
        │   ├── sdncal.h
        │   └── tests
        ├── com_dotnet
        │   ├── CREDITS
        │   ├── README
        │   ├── com_com.c
        │   ├── com_dotnet.c
        │   ├── com_extension.c
        │   ├── com_handlers.c
        │   ├── com_iterator.c
        │   ├── com_misc.c
        │   ├── com_olechar.c
        │   ├── com_persist.c
        │   ├── com_saproxy.c
        │   ├── com_typeinfo.c
        │   ├── com_variant.c
        │   ├── com_wrapper.c
        │   ├── config.w32
        │   ├── package.xml
        │   ├── php_com_dotnet.h
        │   ├── php_com_dotnet_internal.h
        │   └── tests
        ├── ctype
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── ctype.c
        │   ├── ctype.xml
        │   ├── package.xml
        │   ├── php_ctype.h
        │   └── tests
        ├── curl
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── curl_file.c
        │   ├── interface.c
        │   ├── multi.c
        │   ├── package.xml
        │   ├── php_curl.h
        │   ├── share.c
        │   └── tests
        ├── date
        │   ├── CREDITS
        │   ├── TODO
        │   ├── config.w32
        │   ├── config0.m4
        │   ├── lib
        │   ├── php_date.c
        │   ├── php_date.h
        │   └── tests
        ├── dba
        │   ├── CREDITS
        │   ├── README
        │   ├── config.m4
        │   ├── config.w32
        │   ├── dba.c
        │   ├── dba_cdb.c
        │   ├── dba_db1.c
        │   ├── dba_db2.c
        │   ├── dba_db3.c
        │   ├── dba_db4.c
        │   ├── dba_dbm.c
        │   ├── dba_flatfile.c
        │   ├── dba_gdbm.c
        │   ├── dba_inifile.c
        │   ├── dba_lmdb.c
        │   ├── dba_ndbm.c
        │   ├── dba_qdbm.c
        │   ├── dba_tcadb.c
        │   ├── install_cdb.sh
        │   ├── libcdb
        │   ├── libflatfile
        │   ├── libinifile
        │   ├── php_cdb.h
        │   ├── php_db1.h
        │   ├── php_db2.h
        │   ├── php_db3.h
        │   ├── php_db4.h
        │   ├── php_dba.h
        │   ├── php_dbm.h
        │   ├── php_flatfile.h
        │   ├── php_gdbm.h
        │   ├── php_inifile.h
        │   ├── php_lmdb.h
        │   ├── php_ndbm.h
        │   ├── php_qdbm.h
        │   ├── php_tcadb.h
        │   └── tests
        ├── dom
        │   ├── CREDITS
        │   ├── TODO
        │   ├── attr.c
        │   ├── cdatasection.c
        │   ├── characterdata.c
        │   ├── comment.c
        │   ├── config.m4
        │   ├── config.w32
        │   ├── document.c
        │   ├── documentfragment.c
        │   ├── documenttype.c
        │   ├── dom_ce.h
        │   ├── dom_fe.h
        │   ├── dom_iterators.c
        │   ├── dom_properties.h
        │   ├── domconfiguration.c
        │   ├── domerror.c
        │   ├── domerrorhandler.c
        │   ├── domexception.c
        │   ├── domimplementation.c
        │   ├── domimplementationlist.c
        │   ├── domimplementationsource.c
        │   ├── domlocator.c
        │   ├── domstringlist.c
        │   ├── element.c
        │   ├── entity.c
        │   ├── entityreference.c
        │   ├── examples
        │   ├── namednodemap.c
        │   ├── namelist.c
        │   ├── node.c
        │   ├── nodelist.c
        │   ├── notation.c
        │   ├── php_dom.c
        │   ├── php_dom.h
        │   ├── processinginstruction.c
        │   ├── string_extend.c
        │   ├── tests
        │   ├── text.c
        │   ├── typeinfo.c
        │   ├── userdatahandler.c
        │   ├── xml_common.h
        │   └── xpath.c
        ├── enchant
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── docs
        │   ├── enchant.c
        │   ├── package.xml
        │   ├── php_enchant.h
        │   └── tests
        ├── exif
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── example.php
        │   ├── exif.c
        │   ├── package.xml
        │   ├── php_exif.h
        │   ├── test.php
        │   ├── test.txt
        │   └── tests
        ├── ext_skel
        ├── ext_skel_win32.php
        ├── fileinfo
        │   ├── CREDITS
        │   ├── EXPERIMENTAL
        │   ├── Makefile.frag
        │   ├── config.m4
        │   ├── config.w32
        │   ├── create_data_file.php
        │   ├── data_file.c
        │   ├── fileinfo.c
        │   ├── fileinfo.php
        │   ├── libmagic
        │   ├── libmagic.patch
        │   ├── magicdata.patch
        │   ├── package.xml
        │   ├── php_fileinfo.h
        │   └── tests
        ├── filter
        │   ├── CREDITS
        │   ├── callback_filter.c
        │   ├── config.m4
        │   ├── config.w32
        │   ├── docs
        │   ├── filter.c
        │   ├── filter_private.h
        │   ├── logical_filters.c
        │   ├── php_filter.h
        │   ├── sanitizing_filters.c
        │   └── tests
        ├── ftp
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── ftp.c
        │   ├── ftp.h
        │   ├── package.xml
        │   ├── php_ftp.c
        │   ├── php_ftp.h
        │   └── tests
        ├── gd
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── gd.c
        │   ├── gd_compat.c
        │   ├── gd_compat.h
        │   ├── gd_ctx.c
        │   ├── gdcache.c
        │   ├── gdcache.h
        │   ├── libgd
        │   ├── php_gd.h
        │   └── tests
        ├── gettext
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── gettext.c
        │   ├── php_gettext.h
        │   └── tests
        ├── gmp
        │   ├── CREDITS
        │   ├── README
        │   ├── TODO
        │   ├── bug67917.phpt
        │   ├── config.m4
        │   ├── config.w32
        │   ├── gmp.c
        │   ├── php_gmp.h
        │   └── tests
        ├── hash
        │   ├── CREDITS
        │   ├── README
        │   ├── bench.php
        │   ├── config.m4
        │   ├── config.w32
        │   ├── hash.c
        │   ├── hash_adler32.c
        │   ├── hash_crc32.c
        │   ├── hash_fnv.c
        │   ├── hash_gost.c
        │   ├── hash_haval.c
        │   ├── hash_joaat.c
        │   ├── hash_md.c
        │   ├── hash_ripemd.c
        │   ├── hash_sha.c
        │   ├── hash_sha3.c
        │   ├── hash_snefru.c
        │   ├── hash_tiger.c
        │   ├── hash_whirlpool.c
        │   ├── package.xml
        │   ├── php_hash.h
        │   ├── php_hash_adler32.h
        │   ├── php_hash_crc32.h
        │   ├── php_hash_crc32_tables.h
        │   ├── php_hash_fnv.h
        │   ├── php_hash_gost.h
        │   ├── php_hash_gost_tables.h
        │   ├── php_hash_haval.h
        │   ├── php_hash_joaat.h
        │   ├── php_hash_md.h
        │   ├── php_hash_ripemd.h
        │   ├── php_hash_sha.h
        │   ├── php_hash_sha3.h
        │   ├── php_hash_snefru.h
        │   ├── php_hash_snefru_tables.h
        │   ├── php_hash_tiger.h
        │   ├── php_hash_tiger_tables.h
        │   ├── php_hash_whirlpool.h
        │   ├── php_hash_whirlpool_tables.h
        │   ├── sha3
        │   └── tests
        ├── iconv
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── iconv.c
        │   ├── php_iconv.def
        │   ├── php_iconv.h
        │   └── tests
        ├── imap
        │   ├── CREDITS
        │   ├── IMAP_Win32_HOWTO.txt
        │   ├── config.m4
        │   ├── config.w32
        │   ├── php_imap.c
        │   ├── php_imap.h
        │   └── tests
        ├── interbase
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── ibase_blobs.c
        │   ├── ibase_events.c
        │   ├── ibase_query.c
        │   ├── ibase_service.c
        │   ├── interbase.c
        │   ├── php_ibase_includes.h
        │   ├── php_ibase_udf.c
        │   ├── php_interbase.h
        │   └── tests
        ├── intl
        │   ├── CREDITS
        │   ├── ERROR.CONVENTIONS
        │   ├── TODO
        │   ├── breakiterator
        │   ├── calendar
        │   ├── collator
        │   ├── common
        │   ├── config.m4
        │   ├── config.w32
        │   ├── converter
        │   ├── dateformat
        │   ├── doc
        │   ├── formatter
        │   ├── grapheme
        │   ├── idn
        │   ├── intl_common.h
        │   ├── intl_convert.c
        │   ├── intl_convert.h
        │   ├── intl_convertcpp.cpp
        │   ├── intl_convertcpp.h
        │   ├── intl_cppshims.h
        │   ├── intl_data.h
        │   ├── intl_error.c
        │   ├── intl_error.h
        │   ├── locale
        │   ├── msgformat
        │   ├── normalizer
        │   ├── php_intl.c
        │   ├── php_intl.h
        │   ├── resourcebundle
        │   ├── spoofchecker
        │   ├── tests
        │   ├── timezone
        │   ├── transliterator
        │   └── uchar
        ├── json
        │   ├── CREDITS
        │   ├── Makefile.frag
        │   ├── Makefile.frag.w32
        │   ├── README
        │   ├── config.m4
        │   ├── config.w32
        │   ├── json.c
        │   ├── json_encoder.c
        │   ├── json_parser.tab.c
        │   ├── json_parser.tab.h
        │   ├── json_parser.y
        │   ├── json_scanner.c
        │   ├── json_scanner.re
        │   ├── php_json.h
        │   ├── php_json_encoder.h
        │   ├── php_json_parser.h
        │   ├── php_json_scanner.h
        │   ├── php_json_scanner_defs.h
        │   └── tests
        ├── ldap
        │   ├── CREDITS
        │   ├── LDAP_Win32_HOWTO.txt
        │   ├── config.m4
        │   ├── config.w32
        │   ├── ldap.c
        │   ├── ldap.mak
        │   ├── php_ldap.h
        │   └── tests
        ├── libxml
        │   ├── CREDITS
        │   ├── config.w32
        │   ├── config0.m4
        │   ├── libxml.c
        │   ├── php_libxml.h
        │   ├── php_libxml2.def
        │   └── tests
        ├── mbstring
        │   ├── CREDITS
        │   ├── README
        │   ├── README.libmbfl
        │   ├── README_PHP3-i18n-ja
        │   ├── config.m4
        │   ├── config.w32
        │   ├── libmbfl
        │   ├── mb_gpc.c
        │   ├── mb_gpc.h
        │   ├── mbstring.c
        │   ├── mbstring.h
        │   ├── oniguruma
        │   ├── oniguruma.patch
        │   ├── php_mbregex.c
        │   ├── php_mbregex.h
        │   ├── php_onig_compat.h
        │   ├── php_unicode.c
        │   ├── php_unicode.h
        │   ├── tests
        │   ├── ucgendat
        │   └── unicode_data.h
        ├── mysqli
        │   ├── CREDITS
        │   ├── TODO
        │   ├── config.m4
        │   ├── config.w32
        │   ├── mysqli.c
        │   ├── mysqli_api.c
        │   ├── mysqli_driver.c
        │   ├── mysqli_embedded.c
        │   ├── mysqli_exception.c
        │   ├── mysqli_fe.c
        │   ├── mysqli_fe.h
        │   ├── mysqli_libmysql.h
        │   ├── mysqli_mysqlnd.h
        │   ├── mysqli_nonapi.c
        │   ├── mysqli_priv.h
        │   ├── mysqli_prop.c
        │   ├── mysqli_report.c
        │   ├── mysqli_result_iterator.c
        │   ├── mysqli_warning.c
        │   ├── package.xml
        │   ├── php_mysqli.h
        │   ├── php_mysqli_structs.h
        │   └── tests
        ├── mysqlnd
        │   ├── CREDITS
        │   ├── config-win.h
        │   ├── config.w32
        │   ├── config9.m4
        │   ├── mysql_float_to_double.h
        │   ├── mysqlnd.h
        │   ├── mysqlnd_alloc.c
        │   ├── mysqlnd_alloc.h
        │   ├── mysqlnd_auth.c
        │   ├── mysqlnd_auth.h
        │   ├── mysqlnd_block_alloc.c
        │   ├── mysqlnd_block_alloc.h
        │   ├── mysqlnd_charset.c
        │   ├── mysqlnd_charset.h
        │   ├── mysqlnd_commands.c
        │   ├── mysqlnd_commands.h
        │   ├── mysqlnd_connection.c
        │   ├── mysqlnd_connection.h
        │   ├── mysqlnd_debug.c
        │   ├── mysqlnd_debug.h
        │   ├── mysqlnd_driver.c
        │   ├── mysqlnd_enum_n_def.h
        │   ├── mysqlnd_ext_plugin.c
        │   ├── mysqlnd_ext_plugin.h
        │   ├── mysqlnd_libmysql_compat.h
        │   ├── mysqlnd_loaddata.c
        │   ├── mysqlnd_net.c
        │   ├── mysqlnd_plugin.c
        │   ├── mysqlnd_plugin.h
        │   ├── mysqlnd_portability.h
        │   ├── mysqlnd_priv.h
        │   ├── mysqlnd_protocol_frame_codec.c
        │   ├── mysqlnd_protocol_frame_codec.h
        │   ├── mysqlnd_ps.c
        │   ├── mysqlnd_ps.h
        │   ├── mysqlnd_ps_codec.c
        │   ├── mysqlnd_read_buffer.c
        │   ├── mysqlnd_read_buffer.h
        │   ├── mysqlnd_result.c
        │   ├── mysqlnd_result.h
        │   ├── mysqlnd_result_meta.c
        │   ├── mysqlnd_result_meta.h
        │   ├── mysqlnd_reverse_api.c
        │   ├── mysqlnd_reverse_api.h
        │   ├── mysqlnd_statistics.c
        │   ├── mysqlnd_statistics.h
        │   ├── mysqlnd_structs.h
        │   ├── mysqlnd_vio.c
        │   ├── mysqlnd_vio.h
        │   ├── mysqlnd_wireprotocol.c
        │   ├── mysqlnd_wireprotocol.h
        │   ├── php_mysqlnd.c
        │   └── php_mysqlnd.h
        ├── oci8
        │   ├── CREDITS
        │   ├── LICENSE
        │   ├── README
        │   ├── config.m4
        │   ├── config.w32
        │   ├── oci8.c
        │   ├── oci8_collection.c
        │   ├── oci8_dtrace.d
        │   ├── oci8_failover.c
        │   ├── oci8_interface.c
        │   ├── oci8_lob.c
        │   ├── oci8_statement.c
        │   ├── package.xml
        │   ├── php_oci8.h
        │   ├── php_oci8_int.h
        │   └── tests
        ├── odbc
        │   ├── CREDITS
        │   ├── birdstep.c
        │   ├── config.m4
        │   ├── config.w32
        │   ├── php_birdstep.h
        │   ├── php_odbc.c
        │   ├── php_odbc.h
        │   ├── php_odbc_includes.h
        │   └── tests
        ├── opcache
        │   ├── CREDITS
        │   ├── Optimizer
        │   ├── README
        │   ├── ZendAccelerator.c
        │   ├── ZendAccelerator.h
        │   ├── config.m4
        │   ├── config.w32
        │   ├── shared_alloc_mmap.c
        │   ├── shared_alloc_posix.c
        │   ├── shared_alloc_shm.c
        │   ├── shared_alloc_win32.c
        │   ├── tests
        │   ├── zend_accelerator_blacklist.c
        │   ├── zend_accelerator_blacklist.h
        │   ├── zend_accelerator_debug.c
        │   ├── zend_accelerator_debug.h
        │   ├── zend_accelerator_hash.c
        │   ├── zend_accelerator_hash.h
        │   ├── zend_accelerator_module.c
        │   ├── zend_accelerator_module.h
        │   ├── zend_accelerator_util_funcs.c
        │   ├── zend_accelerator_util_funcs.h
        │   ├── zend_file_cache.c
        │   ├── zend_file_cache.h
        │   ├── zend_persist.c
        │   ├── zend_persist.h
        │   ├── zend_persist_calc.c
        │   ├── zend_shared_alloc.c
        │   └── zend_shared_alloc.h
        ├── openssl
        │   ├── CREDITS
        │   ├── README
        │   ├── config.w32
        │   ├── config0.m4
        │   ├── openssl.c
        │   ├── php_openssl.h
        │   ├── tests
        │   └── xp_ssl.c
        ├── pcntl
        │   ├── CREDITS
        │   ├── README
        │   ├── config.m4
        │   ├── package.xml
        │   ├── pcntl.c
        │   ├── php_pcntl.h
        │   ├── php_signal.c
        │   ├── php_signal.h
        │   ├── test-pcntl.php
        │   └── tests
        ├── pcre
        │   ├── CREDITS
        │   ├── config.w32
        │   ├── config0.m4
        │   ├── pcrelib
        │   ├── php_pcre.c
        │   ├── php_pcre.def
        │   ├── php_pcre.h
        │   ├── tests
        │   └── upgrade-pcre.php
        ├── pdo
        │   ├── CREDITS
        │   ├── Makefile.frag
        │   ├── Makefile.frag.w32
        │   ├── README
        │   ├── TODO
        │   ├── config.m4
        │   ├── config.w32
        │   ├── package2.xml
        │   ├── pdo.c
        │   ├── pdo.php
        │   ├── pdo_dbh.c
        │   ├── pdo_sql_parser.c
        │   ├── pdo_sql_parser.re
        │   ├── pdo_sqlstate.c
        │   ├── pdo_stmt.c
        │   ├── php_pdo.h
        │   ├── php_pdo_driver.h
        │   ├── php_pdo_error.h
        │   ├── php_pdo_int.h
        │   └── tests
        ├── pdo_dblib
        │   ├── CREDITS
        │   ├── README
        │   ├── config.m4
        │   ├── config.w32
        │   ├── dblib_driver.c
        │   ├── dblib_stmt.c
        │   ├── package2.xml
        │   ├── pdo_dblib.c
        │   ├── php_pdo_dblib.h
        │   ├── php_pdo_dblib_int.h
        │   └── tests
        ├── pdo_firebird
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── firebird_driver.c
        │   ├── firebird_statement.c
        │   ├── package2.xml
        │   ├── pdo_firebird.c
        │   ├── php_pdo_firebird.h
        │   ├── php_pdo_firebird_int.h
        │   └── tests
        ├── pdo_mysql
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── get_error_codes.php
        │   ├── mysql_driver.c
        │   ├── mysql_statement.c
        │   ├── package2.xml
        │   ├── pdo_mysql.c
        │   ├── php_pdo_mysql.h
        │   ├── php_pdo_mysql_int.h
        │   ├── php_pdo_mysql_sqlstate.h
        │   └── tests
        ├── pdo_oci
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── oci_driver.c
        │   ├── oci_statement.c
        │   ├── package2.xml
        │   ├── pdo_oci.c
        │   ├── php_pdo_oci.h
        │   ├── php_pdo_oci_int.h
        │   └── tests
        ├── pdo_odbc
        │   ├── CREDITS
        │   ├── EXPERIMENTAL
        │   ├── config.m4
        │   ├── config.w32
        │   ├── odbc_driver.c
        │   ├── odbc_stmt.c
        │   ├── package2.xml
        │   ├── pdo_odbc.c
        │   ├── php_pdo_odbc.h
        │   ├── php_pdo_odbc_int.h
        │   └── tests
        ├── pdo_pgsql
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── package2.xml
        │   ├── pdo_pgsql.c
        │   ├── pgsql_driver.c
        │   ├── pgsql_statement.c
        │   ├── php_pdo_pgsql.h
        │   ├── php_pdo_pgsql_int.h
        │   └── tests
        ├── pdo_sqlite
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── package2.xml
        │   ├── pdo_sqlite.c
        │   ├── php_pdo_sqlite.h
        │   ├── php_pdo_sqlite_int.h
        │   ├── sqlite_driver.c
        │   ├── sqlite_statement.c
        │   └── tests
        ├── pgsql
        │   ├── CREDITS
        │   ├── README
        │   ├── config.m4
        │   ├── config.w32
        │   ├── mysql_users.php
        │   ├── pgsql.c
        │   ├── pgsql.mak
        │   ├── php_pgsql.h
        │   └── tests
        ├── phar
        │   ├── CREDITS
        │   ├── LICENSE
        │   ├── Makefile.frag
        │   ├── Makefile.frag.w32
        │   ├── TODO
        │   ├── build_precommand.php
        │   ├── config.m4
        │   ├── config.w32
        │   ├── dirstream.c
        │   ├── dirstream.h
        │   ├── func_interceptors.c
        │   ├── func_interceptors.h
        │   ├── gdbhelp
        │   ├── makestub.php
        │   ├── package.xml
        │   ├── phar
        │   ├── phar.1.in
        │   ├── phar.c
        │   ├── phar.phar.1.in
        │   ├── phar_internal.h
        │   ├── phar_object.c
        │   ├── phar_path_check.c
        │   ├── phar_path_check.re
        │   ├── pharzip.h
        │   ├── php_phar.h
        │   ├── shortarc.php
        │   ├── stream.c
        │   ├── stream.h
        │   ├── stub.h
        │   ├── tar.c
        │   ├── tar.h
        │   ├── tests
        │   ├── util.c
        │   └── zip.c
        ├── posix
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── package.xml
        │   ├── php_posix.h
        │   ├── posix.c
        │   └── tests
        ├── pspell
        │   ├── CREDITS
        │   ├── README
        │   ├── config.m4
        │   ├── config.w32
        │   ├── php_pspell.h
        │   ├── pspell.c
        │   └── tests
        ├── readline
        │   ├── CREDITS
        │   ├── README.libedit
        │   ├── config.m4
        │   ├── config.w32
        │   ├── php_readline.h
        │   ├── readline.c
        │   ├── readline_cli.c
        │   ├── readline_cli.h
        │   └── tests
        ├── recode
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config9.m4
        │   ├── php_recode.h
        │   ├── recode.c
        │   └── tests
        ├── reflection
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── php_reflection.c
        │   ├── php_reflection.h
        │   └── tests
        ├── session
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── mod_files.bat
        │   ├── mod_files.c
        │   ├── mod_files.h
        │   ├── mod_files.sh
        │   ├── mod_mm.c
        │   ├── mod_mm.h
        │   ├── mod_user.c
        │   ├── mod_user.h
        │   ├── mod_user_class.c
        │   ├── package.xml
        │   ├── php_session.h
        │   ├── session.c
        │   └── tests
        ├── shmop
        │   ├── CREDITS
        │   ├── README
        │   ├── config.m4
        │   ├── config.w32
        │   ├── package.xml
        │   ├── package2.xml
        │   ├── php_shmop.h
        │   ├── shmop.c
        │   └── tests
        ├── simplexml
        │   ├── CREDITS
        │   ├── README
        │   ├── config.m4
        │   ├── config.w32
        │   ├── examples
        │   ├── php_simplexml.h
        │   ├── php_simplexml_exports.h
        │   ├── simplexml.c
        │   ├── sxe.c
        │   ├── sxe.h
        │   └── tests
        ├── skeleton
        │   ├── CREDITS
        │   ├── EXPERIMENTAL
        │   ├── create_stubs
        │   ├── php_skeleton.h
        │   ├── skeleton.c
        │   ├── skeleton.php
        │   └── tests
        ├── snmp
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── php_snmp.h
        │   ├── snmp.c
        │   └── tests
        ├── soap
        │   ├── CREDITS
        │   ├── TODO
        │   ├── TODO.old
        │   ├── config.m4
        │   ├── config.w32
        │   ├── interop
        │   ├── package.xml
        │   ├── php_encoding.c
        │   ├── php_encoding.h
        │   ├── php_http.c
        │   ├── php_http.h
        │   ├── php_packet_soap.c
        │   ├── php_packet_soap.h
        │   ├── php_schema.c
        │   ├── php_schema.h
        │   ├── php_sdl.c
        │   ├── php_sdl.h
        │   ├── php_soap.h
        │   ├── php_xml.c
        │   ├── php_xml.h
        │   ├── soap.c
        │   └── tests
        ├── sockets
        │   ├── CREDITS
        │   ├── config.m4
        │   ├── config.w32
        │   ├── conversions.c
        │   ├── conversions.h
        │   ├── multicast.c
        │   ├── multicast.h
        │   ├── package.xml
        │   ├── php_sockets.h
        │   ├── sendrecvmsg.c
        │   ├── sendrecvmsg.h
        │   ├── sockaddr_conv.c
        │   ├── sockaddr_conv.h
        │   ├── sockets.c
        │   ├── tests
        │   ├── unix_socket_constants.h
        │   ├── win32_socket_constants.h
        │   └── windows_common.h
        ├── sodium
        │   ├── CREDITS
        │   ├── README.md
        │   ├── config.m4
        │   ├── config.w32
        │   ├── libsodium.c
        │   ├── libsodium.php
        │   ├── php_libsodium.h
        │   └── tests
        ├── spl
        │   ├── CREDITS
        │   ├── README
        │   ├── TODO
        │   ├── config.m4
        │   ├── config.w32
        │   ├── doxygen.cfg
        │   ├── examples
        │   ├── internal
        │   ├── package.xml
        │   ├── php_spl.c
        │   ├── php_spl.h
        │   ├── spl.php
        │   ├── spl_array.c
        │   ├── spl_array.h
        │   ├── spl_directory.c
        │   ├── spl_directory.h
        │   ├── spl_dllist.c
        │   ├── spl_dllist.h
        │   ├── spl_engine.c
        │   ├── spl_engine.h
        │   ├── spl_exceptions.c
        │   ├── spl_exceptions.h
        │   ├── spl_fixedarray.c
        │   ├── spl_fixedarray.h
        │   ├── spl_functions.c
        │   ├── spl_functions.h
        │   ├── spl_heap.c
        │   ├── spl_heap.h
        │   ├── spl_iterators.c
        │   ├── spl_iterators.h
        │   ├── spl_observer.c
        │   ├── spl_observer.h
        │   └── tests
        ├── sqlite3
        │   ├── CREDITS
        │   ├── config.w32
        │   ├── config0.m4
        │   ├── libsqlite
        │   ├── php_sqlite3.h
        │   ├── php_sqlite3_structs.h
        │   ├── sqlite3.c
        │   └── tests
        └── standard
            ├── Makefile.frag
            ├── Makefile.frag.w32
            ├── array.c
            ├── assert.c
            ├── base64.c
            ├── base64.h
            ├── basic_functions.c
            ├── basic_functions.h
            ├── browscap.c
            ├── config.m4
            ├── config.w32
            ├── crc32.c
            ├── crc32.h
            ├── credits.c
            ├── credits.h
            ├── credits_ext.h
            ├── credits_sapi.h
            ├── crypt.c
            ├── crypt_blowfish.c
            ├── crypt_blowfish.h
            ├── crypt_freesec.c
            ├── crypt_freesec.h
            ├── crypt_sha256.c
            ├── crypt_sha512.c
            ├── css.c
            ├── css.h
            ├── cyr_convert.c
            ├── cyr_convert.h
            ├── datetime.c
            ├── datetime.h
            ├── dir.c
            ├── dl.c
            ├── dl.h
            ├── dns.c
            ├── dns_win32.c
            ├── exec.c
            ├── exec.h
            ├── file.c
            ├── file.h
            ├── filestat.c
            ├── filters.c
            ├── flock_compat.c
            ├── flock_compat.h
            ├── formatted_print.c
            ├── fsock.c
            ├── fsock.h
            ├── ftok.c
            ├── ftp_fopen_wrapper.c
            ├── head.c
            ├── head.h
            ├── html.c
            ├── html.h
            ├── html_tables
            ├── html_tables.h
            ├── http.c
            ├── http_fopen_wrapper.c
            ├── image.c
            ├── incomplete_class.c
            ├── info.c
            ├── info.h
            ├── iptc.c
            ├── lcg.c
            ├── levenshtein.c
            ├── link.c
            ├── link_win32.c
            ├── mail.c
            ├── math.c
            ├── md5.c
            ├── md5.h
            ├── metaphone.c
            ├── microtime.c
            ├── microtime.h
            ├── mt_rand.c
            ├── pack.c
            ├── pack.h
            ├── pageinfo.c
            ├── pageinfo.h
            ├── password.c
            ├── php_array.h
            ├── php_assert.h
            ├── php_browscap.h
            ├── php_crypt.h
            ├── php_crypt_r.c
            ├── php_crypt_r.h
            ├── php_dir.h
            ├── php_dns.h
            ├── php_ext_syslog.h
            ├── php_filestat.h
            ├── php_fopen_wrapper.c
            ├── php_fopen_wrappers.h
            ├── php_ftok.h
            ├── php_http.h
            ├── php_image.h
            ├── php_incomplete_class.h
            ├── php_iptc.h
            ├── php_lcg.h
            ├── php_link.h
            ├── php_mail.h
            ├── php_math.h
            ├── php_metaphone.h
            ├── php_mt_rand.h
            ├── php_password.h
            ├── php_rand.h
            ├── php_random.h
            ├── php_smart_string.h
            ├── php_smart_string_public.h
            ├── php_standard.h
            ├── php_string.h
            ├── php_type.h
            ├── php_uuencode.h
            ├── php_var.h
            ├── php_versioning.h
            ├── proc_open.c
            ├── proc_open.h
            ├── quot_print.c
            ├── quot_print.h
            ├── rand.c
            ├── random.c
            ├── scanf.c
            ├── scanf.h
            ├── sha1.c
            ├── sha1.h
            ├── soundex.c
            ├── streamsfuncs.c
            ├── streamsfuncs.h
            ├── string.c
            ├── strnatcmp.c
            ├── syslog.c
            └── tests

164 directories, 918 files


标签: php hp 源码 下载

实例下载地址

PHP7.2源码 下载

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警