ID:               28377
 Updated by:       [EMAIL PROTECTED]
 Reported By:      sean at caedmon dot net
-Status:           Open
+Status:           Verified
 Bug Type:         Scripting Engine problem
 Operating System: Linux
-PHP Version:      4CVS-2004-05-12 (stable)
+PHP Version:      4CVS-2004-07-02


Previous Comments:
------------------------------------------------------------------------

[2004-05-12 20:43:48] sean at caedmon dot net

Description:
------------
debug_backtrace() behaves strangely when passed as a function
argument.

This does not happen if debug_backtrace is dereferenced (see code), nor
if debug_backtrace() is the first parameter to my custom_callback
function (not denoted in code)

I'll be happy to provide additional details.

This SEEMS like #27397 but is not a ZE2 problem (I'm using 4.3) and is
NOT fixed in CVS.

Thanks,
S


Reproduce code:
---------------
<?php
function doit($a, $b)
{
  $trace = debug_backtrace();
  custom_callback('dereferenced', $trace);
  custom_callback('direct', debug_backtrace());
}
  
function custom_callback($traceName, $btInfo)
{
  echo $traceName ." -- args: ";
  echo isset($btInfo[0]['args']) ? 'exists' : 'does not exist';
  echo "\n";
}
  
doit('a','b');

?>


Expected result:
----------------
dereferenced -- args: exists
direct -- args: exists


Actual result:
--------------
dereferenced -- args: exists
direct -- args: does not exist



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=28377&edit=1

Reply via email to