On Fri, Aug 22, 2008 at 7:27 PM, Juan Felipe Alvarez Saldarriaga
<[EMAIL PROTECTED]> wrote:
> Hey!
>
> I like to use dompdf to render HTML -> PDF, but I can't use it in Zend
> Frameowrk, my
> bootstrap calls the registerAutoload method:
>
> Zend_Loader::registerAutoload();
I couldn't make that out from your email, but it probably doesn't
follow the standard convention?
E.g.
class Foo_Bar
{}
in Foo/Bar.php
Or does it?
If not, you can either match for the class name inside __autoload()
and do "something else" in case of it, or before you use your class
you can always require_/include_once.
Till