Hi!
I'm getting the contexts for each available context (Locals, Globals).
Now say I have the following code:
<?php
class Test {
var $l = 55;
function DoMe() {
return $l * 5; <-- BREAK #1
}
}
$obj = new Test();
$obj->DoMe();
echo "blabla"; <-- BREAK #2
?>
Now on BREAK #1 everything works fine, I get $l and $this for the contexts.
Now when breaking on #2, I get Sobj AND $this?? This doesn't happen when
leaving out BREAK #1.. Can it be that there's a bug in there with this?
Thanks!
Alexander Adam
-- EvolGrafiX - http://www.EvolGrafiX.com GoSVG!.NET - http://www.GoSVG.net Phone: +49 991 3831719Received on Sun Mar 12 2006 - 01:22:33 GMT
This archive was generated by hypermail 2.2.0 : Mon Jun 25 2018 - 06:00:04 BST