PHP: Difference between revisions

From miki
Jump to navigation Jump to search
(Created page with "== References == TBC")
 
No edit summary
Line 1: Line 1:
== References ==
== References ==
TBC
TBC

== Syntax ==
<source lang=php>
/* arrays */
$attr = array(); // an empty array
$attr = array("border"=>"myborder", "mode"=>"mymode"); // associative array


/* constant */
NULL; // The null reference
</source>

Revision as of 00:18, 2 January 2016

References

TBC

Syntax

/* arrays */
$attr = array();          // an empty array
$attr = array("border"=>"myborder", "mode"=>"mymode");   // associative array


/* constant */
NULL;              // The null reference