Difference between revisions of "ARRAY()"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
Line 1: | Line 1: | ||
{{YLM to do}} | {{YLM to do}} | ||
+ | |||
+ | |||
+ | <code lang="recital"> | ||
+ | customer = array("name" => "A Buyer Ltd.", ; | ||
+ | "currentorder" => array("ord_id" => "00001", "ord_date" => date(),"ord_total" => 1599,; | ||
+ | "orderitems" => array("10 reams A4 paper","500 business cards",; | ||
+ | "500 black ballpoint pens"))) | ||
+ | display memory | ||
+ | |||
+ | Memory Variables: | ||
+ | ------------------------ | ||
+ | CUSTOMER Dynamic array (refptr ARRAY, refcnt 1) | ||
+ | .NAME Character 'A Buyer Ltd.' | ||
+ | .CURRENTORDER Dynamic array (refptr ARRAY, refcnt 0) | ||
+ | .ORD_ID Character '00001' | ||
+ | .ORD_DATE Date 11/04/2009 | ||
+ | .ORD_TOTAL Numeric 1599 (1599.000000000) | ||
+ | .ORDERITEMS Dynamic array (refptr ARRAY, refcnt 0) | ||
+ | .00000001 Character '10 reams A4 paper' | ||
+ | .00000002 Character '500 business cards' | ||
+ | .00000003 Character '500 black ballpoint pens' | ||
+ | |||
+ | ** Total of ** 10 variables defined and 784 bytes used. | ||
+ | </code> |
Revision as of 16:53, 4 November 2009
customer = array("name" => "A Buyer Ltd.", ; "currentorder" => array("ord_id" => "00001", "ord_date" => date(),"ord_total" => 1599,; "orderitems" => array("10 reams A4 paper","500 business cards",; "500 black ballpoint pens"))) display memory Memory Variables: ------------------------ CUSTOMER Dynamic array (refptr ARRAY, refcnt 1) .NAME Character 'A Buyer Ltd.' .CURRENTORDER Dynamic array (refptr ARRAY, refcnt 0) .ORD_ID Character '00001' .ORD_DATE Date 11/04/2009 .ORD_TOTAL Numeric 1599 (1599.000000000) .ORDERITEMS Dynamic array (refptr ARRAY, refcnt 0) .00000001 Character '10 reams A4 paper' .00000002 Character '500 business cards' .00000003 Character '500 black ballpoint pens' ** Total of ** 10 variables defined and 784 bytes use ** Total of ** 10 variables defined and 784 bytes used.