History log of /PHP-5.5/Zend/zend_API.h (Results 51 – 75 of 294)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: BEFORE_HEAD_NS_CHANGE, BEFORE_NS_RULES_CHANGE, php-5.2.7RC3
# 7126de49 04-Nov-2008 Marcus Boerger

- Next step in namespaces, using / as namespace separator.


# 7a37fa2d 02-Nov-2008 Felipe Pena

- Revert ZEND_BEGIN_ARG_INFO change


# df100055 24-Oct-2008 Felipe Pena

- MFH: Added 'static' into ZEND_BEGIN_ARG_INFO_EX macro


Revision tags: php-5.2.7RC2, php-5.2.7RC1
# f87d4530 12-Aug-2008 Nuno Lopes

mark empty_fcall_info and empty_fcall_info_cache as constant. a few less bytes in the dirty page :P


# cf7384aa 12-Aug-2008 Felipe Pena

- MFH: Constness (Added const qualifier to several function parameters)


Revision tags: php-4.4.9
# e304515d 02-Aug-2008 Felipe Pena

- MFH: Added parameter TSRMLS_DC in zend_is_callable()


Revision tags: php-5.3.0alpha1
# af05ce0a 26-Jul-2008 Dmitry Stogov

Fixed is_callable/call_user_func mess that had done different things for very similar arguments e.g. array("A","B") and "A::B"


# feb85801 24-Jul-2008 Dmitry Stogov

LSB parent/self forwarding


Revision tags: php-4.4.9RC1
# e59bfcff 27-Jun-2008 Stanislav Malyshev

deprecate zend_get_parameters_ex


Revision tags: BEFORE_NEW_PARAMETER_PARSE
# 7da75d81 27-May-2008 Matt Wilmas

MFH: Add array_init_size() and use it where array size is known at initialization


Revision tags: RELEASE_1_2_5, RELEASE_2_0_0b1
# 907fa665 12-May-2008 Dmitry Stogov

Added API to use namesapces in internal extensions


Revision tags: php-5.2.6
# 2ecf4bb0 29-Apr-2008 Dmitry Stogov

Lazy EG(active_symbol_table) initialization


Revision tags: RELEASE_1_0_2, php-5.2.6RC5, php-5.2.6RC4, php-5.2.6RC3, RELEASE_2_0_0a2, RELEASE_2_0_0a1
# cc2b17d5 10-Mar-2008 Felipe Pena

MFH: Added new macro for check void parameters.
(deprecating ZEND_WRONG_PARAM_COUNT for this cases)


Revision tags: php-5.2.6RC2, php-5.2.6RC1, RELEASE_1_3_1
# e8a8acdf 01-Feb-2008 Marcus Boerger

[DOC]
- Fix callable/static mess, the following will now all result in a E_STRICT
. binding a dynamic function as a static callback
. static call of a dynamic function
. is_call

[DOC]
- Fix callable/static mess, the following will now all result in a E_STRICT
. binding a dynamic function as a static callback
. static call of a dynamic function
. is_callable() on a static binding to a dynamic function
# [marcus@frodo PHP_5_3]$ php -a -d error_reporting=8191
# make: `sapi/cli/php' is up to date.
# Interactive shell
#
# php > class t{ function f() { echo "Funny\n"; } }
# php > $c = array("t","f");
# php > call_user_func($c);
#
# Strict Standards: call_user_func() expects parameter 1 to be a valid callback, non-static method t::f() cannot be called statically in php shell code on line 1
# Funny
# php > var_dump(is_callable($c));
#
# Strict Standards: Non-static method t::f() cannot be called statically in php shell code on line 1
# bool(true)
# php > t::f();
#
# Strict Standards: Non-static method t::f() should not be called statically in php shell code on line 1
# Funny
# php >

show more ...


# d90ebc65 24-Jan-2008 Dmitry Stogov

Fixed comilation warnings


Revision tags: php-4.4.8
# d1dded87 31-Dec-2007 Sebastian Bergmann

MFH: Bump copyright year, 2 of 2.


Revision tags: php-4.4.8RC1, RELEASE_1_2_3, php-5.2.5
# b4892511 02-Nov-2007 Jani Taskinen

- MFH from HEAD:
. Folding tags
. Parameter parsing
. SPL debug info
. array function improvements (not all yet)
. Improvements to function calling with call_user_* func

- MFH from HEAD:
. Folding tags
. Parameter parsing
. SPL debug info
. array function improvements (not all yet)
. Improvements to function calling with call_user_* functions
. Improvements to debugging info in var_dump/print_r
# I propably forgot already something but this all was pretty close tied
# to each other so it wasn't possible to do it in parts.

show more ...


Revision tags: php-5.2.5RC2, php-5.2.5RC1
# 4b4d634c 07-Oct-2007 Yiduo (David) Wang

MFH: Added macros for managing zval refcounts and is_ref statuses


Revision tags: BEFORE_IMPORT_OF_MYSQLND_IN_5_3, RELEASE_1_2_2
# 72d0454b 29-Sep-2007 Dmitry Stogov

Added support for __callstatic() magic method (missing part). (Sara)


# b20ed0d2 29-Sep-2007 Dmitry Stogov

Added support for __callstatic() magic method. (Sara)


# 6c810b0d 27-Sep-2007 Dmitry Stogov

Improved memory usage by movig constants to read only memory. (Dmitry, Pierre)


Revision tags: RELEASE_1_2_4, RELEASE_1_2_1, php-5.2.4, RELEASE_1_5, php-5.2.4RC3, php-5.2.4RC2, php-5.2.4RC1, BEFORE_REAL_IMPORT_OF_MYSQLND, BEFORE_IMPORT_OF_MYSQLND, php-5.2.3, RELEASE_1_4, php-5.2.3RC1, RELEASE_1_2_0, php-4.4.7, php-5.2.2, php-5.2.2RC2
# e1814f0d 16-Apr-2007 Dmitry Stogov

WIN64 support


Revision tags: RELEASE_1_1_0, php-4.4.7RC1, php-5.2.2RC1, RELEASE_1_0_1, php-4.4.6, php-4.4.6RC1, php-4.4.5, php-5.2.1, RELEASE_1_0_0RC1, php-4.4.5RC2, php-5.2.1RC4, php-5.2.1RC3, php-4.4.5RC1, php-5.2.1RC2
# 4223aa4d 01-Jan-2007 Sebastian Bergmann

MFH: Bump year.


# 1e19ee87 20-Dec-2006 Hannes Magnusson

- Fixed incorrect function names on FreeBSD where inet_pton() was named
__inet_pton() and inet_ntop() was named __inet_ntop()
- Fixed bug #39685 (iconv() - undefined function)
- F

- Fixed incorrect function names on FreeBSD where inet_pton() was named
__inet_pton() and inet_ntop() was named __inet_ntop()
- Fixed bug #39685 (iconv() - undefined function)
- Fixed bug #38852 (XML-RPC Breaks iconv)

show more ...


Revision tags: php-5.2.1RC1, php-5.2.0, php-5.2.0RC6, php-5.2.0RC5, php-5.2.0RC4, php-5.2.0RC3, php-5.1.6, php-5.2.0RC2, php-5.1.5, php-4.4.4, php-4.4.4RC1, php-5.1.5RC1, php-4.4.3, php-5.2.0RC1
# 29ed52ff 18-Jul-2006 Dmitry Stogov

New memory manager


12345678910>>...12