API15

JRegistryFormatPHP/objectToString: Difference between revisions

From Joomla! Documentation

m removing red link to edit, no existant pages
m preparing for archive only
 
Line 65: Line 65:


===Examples===
===Examples===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
  noresultsheader=\n
  noresultsheader=\n
  category=objectToString
  category=objectToString
  category=JRegistryFormatPHP
  category=JRegistryFormatPHP
  category=CodeExample
  namespace=CodeExample
  category=MethodExample
  category=MethodExample
  include=*
  include=*

Latest revision as of 01:04, 25 March 2017

Description

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


[<! removed edit link to red link >]

<! removed transcluded page call, red link never existed >

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;
}

[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >

Examples

Code Examples