This commit is contained in:
Roly Rudy Gutierrez Pinto
2017-04-04 10:07:08 -04:00
parent 9c9a828593
commit dade2fcc87

View File

@@ -18,12 +18,12 @@ if (PMLicensedFeatures
* reference, eg:
* <?php
* $obj = new stdClass();
* $obj->valor1 = "value";
* $obj->value = "value";
*
* $a = ["uno" => 1, "dos" => $obj, "tres" => 3];
* $a = ["one" => 1, "two" => $obj, "three" => 3];
* $b = $a;
* $a["dos"]->valor1 = "modify";
* $a["two"]->value = "modify";
*
* In 'b' is reflected the output of 'a'.
*/