Shawn McKenzie wrote:
>>
> Never mind, that was stupid. I saw that somewhere before, but obviously
> it doesn't work.
> 

I found some code, maybe I redeem myself?

static public function cast(&$object, $class=__CLASS__){

        if(class_exists($class)) {
                $object = unserialize(
                        preg_replace('/^O:[0-9]+:"[^"]+":/i',
                        'O:'.strlen($class).':"'.$class.'":',
                        serialize($object)));
        }
}

$row = odbc_fetch_object($result);
structuresRemovalReason::cast($row);

-- 
Thanks!
-Shawn
http://www.spidean.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to