API17

JRegistryFormat::stringToObject: Difference between revisions

From Joomla! Documentation

Doxiki2 (talk | contribs)
Bulk upload by Doxiki2
 
m preparing for archive only
 
(6 intermediate revisions by 2 users not shown)
Line 4: Line 4:
Converts a formatted string into an object.  
Converts a formatted string into an object.  


{{Description:JRegistryFormat::stringToObject}}
 
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JRegistryFormat::stringToObject|Edit Descripton]]<nowiki>]</nowiki>
</span>
===Since===
{{JVer|11.1 }}
===Synopsis===
<source lang="php">
<source lang="php">
public JRegistryFormat->stringToObject ($data, $options=null)
public function stringToObject (
        $data
        $options=null
)
</source>
</source>
{| class="wikitable"
{| class="wikitable"
Line 32: Line 30:
|-
|-
|}
|}
===Returns===
* '''Returns''' object Data Object
object Data Object
* '''Defined''' on line 78 of libraries/joomla/registry/format.php
===Defined in===
* '''Since''' {{JVer|11.1 }}
libraries/joomla/registry/format.php
===Referenced by===
===See also===
===See also===
<span class="editsection" style="font-size:76%;">
* {{JVer|11.1}} '''JRegistryFormat::stringToObject source code''' on [[jplatform:registry/format.php#cl-70|BitBucket]]
<nowiki>[</nowiki>[[SeeAlso:JRegistryFormat::stringToObject|Edit See Also]]<nowiki>]</nowiki>
* {{JVer|11.1}} Class [[API17:JRegistryFormat|JRegistryFormat]]
</span>
* {{JVer|11.1}} Subpackage [[API17:Subpackage_Registry|Registry]]
* [[JRegistryFormat/11.1|JRegistryFormat]]
* [[API17:JRegistryFormat::stringToObject|Other versions of JRegistryFormat::stringToObject]]
* [[JRegistryFormat::stringToObject|Other versions of this method]]
 
{{SeeAlso:JRegistryFormat::stringToObject}}
 
===Examples===
===User contributed notes===
<CodeExamplesForm />
=== Code Examples ===
<dpl>
<dpl>
noresultsheader=\n
noresultsheader=\n
category=JRegistryFormat::stringToObject
category=JRegistryFormat::stringToObject
category=CodeExample
namespace=CodeExample
category=MethodExample
category=MethodExample
include=*
include=*
namespace=CodeExample
format= ,,,
format= ,,,
</dpl>
</dpl>
<noinclude>[[Category:JRegistryFormat]][[Category:JRegistryFormat::stringToObject]]</noinclude>
<noinclude>[[Category:Platform 11.1]][[Category:Archived pages API17]]</noinclude>

Latest revision as of 03:34, 25 March 2017

Joomla 11.1 JRegistryFormat::stringToObject

Description

Converts a formatted string into an object.


public function stringToObject (
        $data
        $options=null
)
Parameter Type Default Description
$data string Formatted string
$options array null An array of options for the formatter.
  • Returns object Data Object
  • Defined on line 78 of libraries/joomla/registry/format.php
  • Since Joomla 11.1

See also


User contributed notes

Code Examples