137 changed files with 2749 additions and 2751 deletions
-
2.appveyor.yml
-
20.gdbinit
-
4.travis.yml
-
2CODING_STANDARDS
-
26LICENSE
-
2Makefile.gcov
-
28NEWS
-
6README.EXT_SKEL
-
4README.NEW-OUTPUT-API
-
18README.PARAMETER_PARSING_API
-
12README.RELEASE_PROCESS
-
16README.SELF-CONTAINED-EXTENSIONS
-
10README.STREAMS
-
2README.SUBMITTING_PATCH
-
2README.input_filter
-
2TSRM/build.mk
-
12TSRM/threads.m4
-
10UPGRADING
-
2UPGRADING.INTERNALS
-
24Zend/LICENSE
-
16Zend/README.ZEND_VM
-
10Zend/bench.php
-
2Zend/build.mk
-
6Zend/micro_bench.php
-
2Zend/zend_ini_parser.y
-
1Zend/zend_vm_trace_map.h
-
4appveyor/build.bat
-
14build/mkdep.awk
-
2build/order_by_dep.awk
-
2build/scan_makefile_in.awk
-
2ext/bcmath/libbcmath/FAQ
-
4ext/ctype/ctype.xml
-
2ext/curl/config.w32
-
2ext/curl/tests/responder/get.php
-
84ext/dba/README
-
4ext/dba/install_cdb.sh
-
4ext/dom/tests/domdocumentload_utilities.php
-
2ext/dom/tests/domdocumentloadxml_test_method.php
-
2ext/dom/tests/domdocumentloadxml_test_method_savexml.php
-
2ext/dom/tests/note.xml
-
6ext/gd/config.w32
-
2ext/hash/README
-
2ext/hash/bench.php
-
4ext/hash/config.w32
-
2ext/iconv/CREDITS
-
2ext/iconv/config.w32
-
2ext/imap/tests/README
-
2ext/interbase/config.w32
-
2ext/intl/ERROR.CONVENTIONS
-
8ext/intl/config.w32
-
2ext/intl/normalizer/normalizer_normalize.c
-
2ext/json/json_scanner.re
-
2ext/ldap/tests/README
-
2ext/mbstring/libmbfl/LICENSE
-
6ext/mbstring/libmbfl/NEWS
-
68ext/mbstring/libmbfl/filters/mk_emoji_tbl.pl
-
2ext/mbstring/libmbfl/filters/mk_sb_tbl.awk
-
2ext/mbstring/libmbfl/mbfl/mk_eaw_tbl.awk
-
2ext/mbstring/libmbfl/tests/conv_kana.tests/conv_kana.exp
-
2ext/mbstring/ucgendat/ucgendat.php
-
2ext/mysqli/config.w32
-
2ext/mysqlnd/config.w32
-
2ext/opcache/config.w32
-
2ext/openssl/README
-
4ext/pcntl/README
-
2ext/pdo_firebird/config.w32
-
4ext/pdo_mysql/get_error_codes.php
-
2ext/pdo_oci/config.w32
-
2ext/pdo_oci/package2.xml
-
2ext/pdo_sqlite/config.w32
-
68ext/pgsql/README
-
14ext/pgsql/mysql_users.php
-
12ext/pgsql/tests/README
-
4ext/phar/gdbhelp
-
14ext/phar/phar.1.in
-
2ext/phar/shortarc.php
-
6ext/pspell/README
-
2ext/session/mod_files.bat
-
34ext/shmop/README
-
6ext/simplexml/README
-
2ext/simplexml/tests/sxe.xml
-
2ext/simplexml/tests/sxe私はガラスを食べられます.xml
-
2ext/skeleton/config.m4.in
-
2ext/snmp/tests/README
-
8ext/soap/interop/client_round2_interop.php
-
2ext/soap/interop/client_round2_params.php
-
4ext/spl/README
-
2ext/spl/examples/dba_array.php
-
2ext/spl/examples/dba_dump.php
-
4ext/spl/examples/findregex.php
-
2ext/spl/examples/ini_groups.php
-
2ext/spl/examples/phar_from_dir.php
-
4064ext/standard/html_tables/ents_html5.txt
-
30ext/standard/html_tables/html_table_gen.php
-
2ext/standard/strnatcmp.c
-
2ext/standard/tests/ini_info/scandir/0.ini
-
4ext/xmlreader/README
-
6ext/xmlrpc/EXPERIMENTAL
-
2ext/xmlrpc/libxmlrpc/xmlrpc.m4
-
2ext/xsl/config.w32
@ -1,54 +1,54 @@ |
|||
These functions build the foundation for accessing Berkeley DB style |
|||
databases. |
|||
These functions build the foundation for accessing Berkeley DB style |
|||
databases. |
|||
|
|||
This is a general abstraction layer for several file-based databases. As |
|||
such, functionality is limited to a common subset of features supported |
|||
by modern databases such as Sleepycat Software's DB2. (This is not to be |
|||
confused with IBM's DB2 software, which is supported through the ODBC |
|||
functions.) |
|||
such, functionality is limited to a common subset of features supported |
|||
by modern databases such as Sleepycat Software's DB2. (This is not to be |
|||
confused with IBM's DB2 software, which is supported through the ODBC |
|||
functions.) |
|||
|
|||
This extensions allows to work with the following databases: |
|||
dbm DBM is the oldest (original) type of Berkeley DB style databases. |
|||
You should avoid it, if possible. We do not support the |
|||
compatibility functions built into DB2 and gdbm, because they are |
|||
only compatible on the source code level, but cannot handle the |
|||
original dbm format. |
|||
ndbm NDBM is a newer type and more flexible than dbm. It still has |
|||
most of the arbitrary limits of dbm (therefore it is deprecated). |
|||
gdbm GDBM is the GNU database manager. |
|||
You should avoid it, if possible. We do not support the |
|||
compatibility functions built into DB2 and gdbm, because they are |
|||
only compatible on the source code level, but cannot handle the |
|||
original dbm format. |
|||
ndbm NDBM is a newer type and more flexible than dbm. It still has |
|||
most of the arbitrary limits of dbm (therefore it is deprecated). |
|||
gdbm GDBM is the GNU database manager. |
|||
db2 DB2 is Sleepycat Software's DB2. It's described as "a programmatic |
|||
toolkit that provides high-performance built-in database support |
|||
for both standalone and client/server applications. |
|||
db3 DB3 is Sleepycat Software's DB3. |
|||
toolkit that provides high-performance built-in database support |
|||
for both standalone and client/server applications. |
|||
db3 DB3 is Sleepycat Software's DB3. |
|||
db4 DB4 is Sleepycat Software's DB4. This is available since PHP 5.0. |
|||
cdb CDB is "a fast, reliable, lightweight package for creating and |
|||
reading constant databases." It is from the author of qmail and |
|||
can be found at http://cr.yp.to/cdb.html. Since it is constant, |
|||
we support only reading operations. And since PHP 4.3.0 we support |
|||
writing (not updating) through the internal cdb library. |
|||
cdb_make Since PHP 4.3.0 we support creation (not updating) of cdb files |
|||
when the bundled cdb library is used. |
|||
flatfile This is available since PHP 4.3.0 for compatibility with the |
|||
deprecated dbm extension only and should be avoided. However you |
|||
may use this where files were created in this format. That happens |
|||
when configure could not find any external library. |
|||
inifile This is available since PHP 4.3.3 to be able to modify php.ini |
|||
files from within PHP scripts. When working with ini files you |
|||
can pass arrays of the form array(0=>group,1=>value_name) or |
|||
strings of the form "[group]value_name" where group is optional. |
|||
As the functions dba_firstkey() and dba_nextkey() return string |
|||
representations of the key there is a new function dba_key_split() |
|||
available since PHP 5 which allows to convert the string keys into |
|||
array keys without losing FALSE. |
|||
qdbm This is available since PHP 5.0.0. The qdbm library can be loaded |
|||
from http://qdbm.sourceforge.net. |
|||
cdb CDB is "a fast, reliable, lightweight package for creating and |
|||
reading constant databases." It is from the author of qmail and |
|||
can be found at http://cr.yp.to/cdb.html. Since it is constant, |
|||
we support only reading operations. And since PHP 4.3.0 we support |
|||
writing (not updating) through the internal cdb library. |
|||
cdb_make Since PHP 4.3.0 we support creation (not updating) of cdb files |
|||
when the bundled cdb library is used. |
|||
flatfile This is available since PHP 4.3.0 for compatibility with the |
|||
deprecated dbm extension only and should be avoided. However you |
|||
may use this where files were created in this format. That happens |
|||
when configure could not find any external library. |
|||
inifile This is available since PHP 4.3.3 to be able to modify php.ini |
|||
files from within PHP scripts. When working with ini files you |
|||
can pass arrays of the form array(0=>group,1=>value_name) or |
|||
strings of the form "[group]value_name" where group is optional. |
|||
As the functions dba_firstkey() and dba_nextkey() return string |
|||
representations of the key there is a new function dba_key_split() |
|||
available since PHP 5 which allows to convert the string keys into |
|||
array keys without losing FALSE. |
|||
qdbm This is available since PHP 5.0.0. The qdbm library can be loaded |
|||
from http://qdbm.sourceforge.net. |
|||
|
|||
|
|||
After configuring and compiling PHP you must execute the following test |
|||
from commandline: |
|||
php run-tests.php ext/dba. |
|||
This shows whether your combination of handlers works. Most problematic |
|||
are dbm and ndbm which conflict with many installations. The reason for |
|||
from commandline: |
|||
php run-tests.php ext/dba. |
|||
This shows whether your combination of handlers works. Most problematic |
|||
are dbm and ndbm which conflict with many installations. The reason for |
|||
this is that on several systems these libraries are part of more than one |
|||
other library. The configuration test only prevents you from configuring |
|||
other library. The configuration test only prevents you from configuring |
|||
malfaunctioning single handlers but not combinations. |
|||
@ -1,2 +1,2 @@ |
|||
Iconv |
|||
Rui Hirokawa, Stig Bakken, Moriyoshi Koizumi |
|||
Rui Hirokawa, Stig Bakken, Moriyoshi Koizumi |
|||
@ -1,15 +1,15 @@ |
|||
Test scripts assumes: |
|||
Test scripts assumes: |
|||
- PostgreSQL server is installed locally |
|||
- there is a PostgreSQL account for the users running the test scripts |
|||
- there is database named "test" |
|||
|
|||
For instance, if your login name is 'testuser', you should have PostgreSQL |
|||
user account named 'testuser' and grant that user access to the database |
|||
For instance, if your login name is 'testuser', you should have PostgreSQL |
|||
user account named 'testuser' and grant that user access to the database |
|||
'test'. |
|||
|
|||
If you have account and database, type "createdb test" from command prompt |
|||
to create the database to execute the test scripts. By executing the above |
|||
command as the same user running the tests you ensure that the user is |
|||
If you have account and database, type "createdb test" from command prompt |
|||
to create the database to execute the test scripts. By executing the above |
|||
command as the same user running the tests you ensure that the user is |
|||
granted access to the database. |
|||
|
|||
If you find problems in PostgreSQL module, please mail to |
|||
|
|||
@ -1,7 +1,7 @@ |
|||
This is an extension that aims to implement some efficient data access |
|||
This is an extension that aims to implement some efficient data access |
|||
interfaces and classes. You'll find the classes documented using php |
|||
code in the file spl.php or in the corresponding .inc file in the examples |
|||
subdirectory. Based on the internal implementations or the files in the |
|||
subdirectory. Based on the internal implementations or the files in the |
|||
examples subdirectory there are also some .php files to experiment with. |
|||
|
|||
For more information look at: http://php.net/manual/en/book.spl.php |
|||
4064
ext/standard/html_tables/ents_html5.txt
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -1,4 +1,4 @@ |
|||
; This file is named 0.ini so it should be the first line of |
|||
; This file is named 0.ini so it should be the first line of |
|||
; any scanned ini output |
|||
|
|||
date.timezone = Antarctica/McMurdo |
|||
@ -1,5 +1,5 @@ |
|||
XMLReader represents a reader that provides non-cached, |
|||
forward-only access to XML data. It is based upon the |
|||
XMLReader represents a reader that provides non-cached, |
|||
forward-only access to XML data. It is based upon the |
|||
xmlTextReader api from libxml |
|||
|
|||
This extension is designed to only work under PHP 5+. |
|||
@ -1,5 +1,5 @@ |
|||
this extension is experimental, |
|||
its functions may change their names |
|||
or move to extension all together |
|||
so do not rely to much on them |
|||
its functions may change their names |
|||
or move to extension all together |
|||
so do not rely to much on them |
|||
you have been warned! |
|||
Some files were not shown because too many files changed in this diff
Write
Preview
Loading…
Cancel
Save
Reference in new issue