2011/4/5 Sebastian Bergmann <[email protected]>:
> On 04/05/2011 01:12 PM, Patrick ALLAERT wrote:
>>
>> I would, however, refrain from providing erroneous reflection information:
>>
>> php --rf debug_print_backtrace
>> Function [<internal:Core> function debug_print_backtrace ] {
>>
>> - Parameters [2] {
>> Parameter #0 [<optional> $options ]
>> Parameter #1 [<optional> $limit ]
>> }
>> }
>
> I did not touch debug_print_backtrace().
Yes, you did (or plan to) :)
Both debug_backtrace() and debug_print_backtrace() uses
arginfo_debug_backtrace which you modified to include the "limit"
parameter:
ZEND_BEGIN_ARG_INFO_EX(arginfo_debug_backtrace, 0, 0, 0)
ZEND_ARG_INFO(0, options)
+ ZEND_ARG_INFO(0, limit)
ZEND_END_ARG_INFO()
Patrick
--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php