Date: 06/27/01
- Next message: danbeck <email protected>: "[PHP-DOC] Bug #10022 Updated: Constants not handled in arrays defined in class declaration"
- Previous message: danbeck <email protected>: "[PHP-DOC] Bug #7569 Updated: Transmuting indices"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
danbeck Wed Jun 27 08:11:31 2001 EDT
Modified files:
/phpdoc/en/language oop.xml
Log:
adding extra example for issue in bug #10022
Index: phpdoc/en/language/oop.xml
diff -u phpdoc/en/language/oop.xml:1.14 phpdoc/en/language/oop.xml:1.15
--- phpdoc/en/language/oop.xml:1.14 Fri May 18 14:44:37 2001
+++ phpdoc/en/language/oop.xml Wed Jun 27 08:11:31 2001
@@ -82,6 +82,7 @@
var $todays_date = date("Y-m-d");
var $name = $firstname;
var $owner = 'Fred ' . 'Jones';
+ var $items = array("VCR", "TV");
}
/* This is how it should be done. */
@@ -89,6 +90,7 @@
var $todays_date;
var $name;
var $owner;
+ var $items;
function Cart() {
$this->todays_date = date("Y-m-d");
- Next message: danbeck <email protected>: "[PHP-DOC] Bug #10022 Updated: Constants not handled in arrays defined in class declaration"
- Previous message: danbeck <email protected>: "[PHP-DOC] Bug #7569 Updated: Transmuting indices"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

