vote up 0 vote down star

here is the code

 ob_start(array(&$dispatcher, 'outputCallback')); 
 include($file);
 ob_end_flush();

 function outputCallback($string) {
    if(ob_get_level() == 1) { 
        $static =& ParserStatic::getInstance();
        return $static->insertToppings($string);
    }
    return false;
  }

the problem is when i return $string it behaves ok, but when it executes the obejct assignment it goes blank screen, what's go wrong?

flag
1  
Are you still torturing yourself with PHP4? If not, then PHP5 basically forbids use of reference operator on objects. Remove &s. – porneL Sep 7 at 8:48

1 Answer

vote up 0 vote down

Have you tried checking your web server's error log to see if PHP is throwing an error? That should help you identify the cause of the problem.

link|flag
damn! somehow it unload the Static class, thanks for the help mate! – lordlinier Sep 7 at 8:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.