mirror of
https://github.com/php/web-php.git
synced 2026-03-24 23:32:16 +01:00
23 lines
452 B
PHP
Executable File
23 lines
452 B
PHP
Executable File
<?require "header.inc";?>
|
|
<h1>Returning arrays or objects</h1>
|
|
<h3>Initialize with:</h3>
|
|
<ul>
|
|
<li> array_init()
|
|
<li> object_init()
|
|
</ul>
|
|
<h3>Add to array with one of:</h3>
|
|
<ul>
|
|
<li> add_index_long()
|
|
<li> add_index_double()
|
|
<li> add_index_string()
|
|
</ul>
|
|
<h3>Add to object with one of:</h3>
|
|
<ul>
|
|
<li> add_property_long()
|
|
<li> add_property_double()
|
|
<li> add_property_string()
|
|
<li> add_property_stringl()
|
|
<li> add_method()
|
|
</ul>
|
|
<?require "footer.inc";?>
|