如何递归地将stdClass转换为我的自定义类?

时间:2014-07-11 15:09:40

标签: php object recursion casting stdclass

我有一个类stdClass的对象,它包含同一个类的其他对象。如何将该对象的所有stdClasses重命名为名为“AppCategory”的自定义类?

我发现这个函数将对象强制转换为类,但它不能递归地工作:(它只重命名主对象,而不是它的子对象。

function cast($object, $class) {
    if( !is_object($object) ) 
        throw new InvalidArgumentException('$object must be an object.');
    if( !is_string($class) )
        throw new InvalidArgumentException('$class must be a string.');
    if( !class_exists($class) )
        throw new InvalidArgumentException(sprintf('Unknown class: %s.', $class));
    if( !is_subclass_of($class, get_class($object)) )
        throw new InvalidArgumentException(sprintf(
            '%s is not a descendant of $object class: %s.',
            $class, get_class($object)
        ));

    /**
     * This is a beautifully ugly hack.
     *
     * First, we serialize our object, which turns it into a string, allowing
     * us to muck about with it using standard string manipulation methods.
     *
     * Then, we use preg_replace to change it's defined type to the class
     * we're casting it to, and then serialize the string back into an
     * object.
     */



    logToFile(print_r($x, true), false, $_SERVER['DOCUMENT_ROOT'].'/administrator/components/com_apps/log.php', 'a');



    return unserialize(
        preg_replace(
            '/^O:\d+:"[^"]++"/', 
            'O:'.strlen($class).':"'.$class.'"',
            serialize($object)
        )
    );

1 个答案:

答案 0 :(得分:0)

也许是这样的:

foreach($object as &$prop) {
    if(is_object($prop)) {
        $prop = cast($prop, $class);
    }
}    

return unserialize(
        preg_replace(
            '/^O:\d+:"[^"]++"/', 
            'O:'.strlen($class).':"'.$class.'"',
            serialize($object)
        )
    );