1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00
Commit Graph

19520 Commits

Author SHA1 Message Date
Moriyoshi Koizumi 57fa382b4e MFB: Fixed typo 2003-02-10 19:53:13 +00:00
Moriyoshi Koizumi 9d5811c1f0 Jani happification 2003-02-10 19:45:34 +00:00
Moriyoshi Koizumi a143bed5d8 New function
# "deprecate me!"
2003-02-10 19:39:43 +00:00
Moriyoshi Koizumi 59be236a8e Removed unnecessary code 2003-02-10 19:12:02 +00:00
Moriyoshi Koizumi 21f766b7a4 Fixed zlib.output_compression so it can work even if zlib extension is built as shared 2003-02-10 19:04:44 +00:00
Melvyn Sopacua 63aa8acf02 MFB: disable output buffering 2003-02-10 18:58:49 +00:00
Wez Furlong 447976d8ee Implement com_describe 2003-02-10 18:37:28 +00:00
foobar 011229ef15 - Updated libtool to 1.4.3 which has test for the sed problem.. 2003-02-10 17:09:48 +00:00
Zeev Suraski f196e11f42 Fix zend_initialize_class_data() 2003-02-10 16:46:05 +00:00
Zeev Suraski c17c7a2bfa Centralize class initialization 2003-02-10 16:11:24 +00:00
Jon Parise 1b8755994e Correct the spelling of 'supported'. 2003-02-10 15:46:47 +00:00
Stig Bakken 983dd29a7e * update PEAR::isError phpdoc 2003-02-10 14:27:21 +00:00
Stig Bakken 4ef53806f4 * PEAR::isError accepts second parameter that will be matched against
the error code.  PEAR::isError($obj, FOO) will return true if $obj
  is an error object, and $obj->getCode() returns FOO.
2003-02-10 14:26:19 +00:00
Stig Bakken cab18bc2de * the "a" in "pear" is "application" now 2003-02-10 14:17:32 +00:00
Wez Furlong 35639435c9 Error reporting clean up 2003-02-10 13:13:28 +00:00
Zeev Suraski 6317e26576 - Treat $this->foo inside class X as an implicit 'public $foo' if X::$foo
is not explicitly declared
- Forbid multiple declaration of the same variable
2003-02-10 12:46:58 +00:00
Wez Furlong 81795c7f11 Newly created objects should use a separate function_table from the global class entry table.
For objects instantiated via new, make sure that intern->function_table uses the newly created table when the class is registered.
For generic per-object hashing, copy the ce->function_table into intern->function_table.
2003-02-10 12:36:07 +00:00
Wez Furlong b0894e7eba Error reporting leaks and cleanup 2003-02-10 12:33:15 +00:00
Zeev Suraski 778ce2495d whitespace 2003-02-10 11:49:21 +00:00
Zeev Suraski 5e12de9510 Add missing destructors 2003-02-10 11:03:22 +00:00
Zeev Suraski 8713fdd102 Fix the test 2003-02-10 10:58:56 +00:00
Stanislav Malyshev 10b6a84b74 update static constants too 2003-02-10 10:57:14 +00:00
Zeev Suraski 3661930f14 Fix get_parent_class() 2003-02-10 10:04:08 +00:00
Zeev Suraski 029abf8c51 Restore missing check 2003-02-10 10:03:19 +00:00
Wez Furlong 79c046d8a8 Add additional optional parameter to openssl_pkcs7_encrypt to specify the
cipher.  The cipher can be one of the constants listed below.

Based on a patch from:
stefan at cuba dot ionum dot ch

 	OPENSSL_CIPHER_RC2_40,   (the default)
 	OPENSSL_CIPHER_RC2_128,
 	OPENSSL_CIPHER_RC2_64,
 	OPENSSL_CIPHER_DES,
 	OPENSSL_CIPHER_3DES,

proto bool openssl_pkcs7_encrypt(string infile, string outfile,
   mixed recipcerts, array headers [, long flags [, long cipher]])
2003-02-10 09:49:31 +00:00
Zeev Suraski dbb73d8f1e Add ability to reference self:: and parent:: in constant initializers
(bug #21849)
2003-02-10 09:45:27 +00:00
Zeev Suraski edc8e67e3b Remove redundant code 2003-02-10 08:32:44 +00:00
324ff14366 ChangeLog update 2003-02-10 01:32:53 +00:00
Hartmut Holzgraefe 769cb03c35 proto fixes 2003-02-10 00:47:45 +00:00
foobar 885a1a4d08 some win32 fixes by Kai 2003-02-10 00:21:51 +00:00
Wez Furlong 1e9eeafe21 Fix php.ini customization.
Apparently, it seems that running the php script with output captured to
the log prevented it from working correctly.

Also, deletes the php.ini when uninstalled.

TODO: The defaults install and activate all extensions.  This is a problem
for those extension that require non-bundled .dlls (such as OCI).
2003-02-10 00:20:53 +00:00
foobar b69d4c004d style, ws 2003-02-09 23:48:22 +00:00
foobar 8c596d1394 Some compilers puke on these.. 2003-02-09 23:29:56 +00:00
Harald Radi b0fb007f0f fix a memleak 2003-02-09 23:17:42 +00:00
Wez Furlong eefe0f1bb0 ZTS fix 2003-02-09 23:11:23 +00:00
foobar b30256e28b We move, fix, change or add stuff 2003-02-09 23:09:23 +00:00
Kai Schroeder eb8bccee56 fix for #17928 2003-02-09 21:44:51 +00:00
Wez Furlong 03e22793ff Fix various little leaks and segfaults.
Fix scripts like this:
$obj = new COM('Foo');
$obj2 = $obj->get_object();
$obj2->method();  // <-- would segfault here
2003-02-09 21:40:13 +00:00
Wez Furlong 9ef5cc7ef9 Add get_class_name handler so that the current var_dump implementation does not segfault.
Add a generic rpc_object_from_data() function for generating rpc objects from C code (as discussed with Harald).
2003-02-09 21:37:41 +00:00
Wez Furlong 47922a6996 Fix some warnings 2003-02-09 21:35:31 +00:00
Sascha Schumann ba32a619ae use SUCCESS/FAILURE instead of 0/-1 2003-02-09 21:15:55 +00:00
Ilia Alshanetsky 2549b1b638 New features. 2003-02-09 20:47:32 +00:00
Ilia Alshanetsky f98ea4c46d Added feature request #9173 (added stream_get_line(), this function will
read either the specified number of bytes or until the ending string is
found).
2003-02-09 20:43:05 +00:00
Ilia Alshanetsky 8b5bc3ecd3 Added feature request #17983 (optional parameter to mkdir() that makes
directory creation recursive).
Fixed prototype for file() function.
2003-02-09 20:35:54 +00:00
foobar 6a539ee3f2 order, style.. 2003-02-09 20:07:22 +00:00
Ilia Alshanetsky 4eae41915f Added feature request #14097 (option allowing file() command not to include
line endings in it's output. As well as another option, which allows blank
lines to be excluded from the output).
2003-02-09 20:05:13 +00:00
foobar 83403958ed break: First one not needed, second missing. 2003-02-09 19:57:50 +00:00
Shane Caraveo a2a014fc46 news entry for previous commit 2003-02-09 19:52:43 +00:00
foobar a09e1397c7 Fixed compile failures when ZLIB / PCRE are compiled as shared
extensions in same build.
2003-02-09 19:09:52 +00:00
foobar 7d46becbb2 Let this compile even if PCRE is compiled as shared in same build. 2003-02-09 18:47:21 +00:00