API15

JRegistryFormatPHP/objectToString: Difference between revisions

From Joomla! Documentation

Doxiki (talk | contribs)
New page: ===Description=== Converts an object into a php class string. NOTE: Only one depth level is supported. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>[[Descripti...
 
Doxiki (talk | contribs)
No edit summary
Line 19: Line 19:
!Description
!Description
|-
|-
|  
| &$object
|  
|  
|  $object Data Source Object  
|  $object Data Source Object  

Revision as of 17:39, 25 March 2010

Description

Converts an object into a php class string. NOTE: Only one depth level is supported.


[Edit Descripton]

Template:Description:JRegistryFormatPHP/objectToString

Syntax

objectToString(&$object, $params)
Parameter Name Default Value Description
&$object $object Data Source Object
$params $param Parameters used by the formatter

Returns

string Config class formatted string

Defined in

libraries/joomla/registry/format/php.php

Importing

jimport( 'joomla.registry.format.php' );

Source Body

function objectToString( &$object, $params ) {

        // Build the object variables string
        $vars = '';
        foreach (get_object_vars( $object ) as $k => $v)
        {
                if (is_scalar($v)) {
                        $vars .= "\tvar $". $k . " = '" . addcslashes($v, '\\\'') . "';\n";
                } elseif (is_array($v)) {
                        $vars .= "\tvar $". $k . " = " . $this->_getArrayString($v) . ";\n";
                }
        }

        $str = "<?php\nclass ".$params['class']." {\n";
        $str .= $vars;
        $str .= "}\n?>";

        return $str;
}

[Edit See Also] Template:SeeAlso:JRegistryFormatPHP/objectToString

Examples

<CodeExamplesForm />