home *** CD-ROM | disk | FTP | other *** search
- <?php
- /** @package tests */
- /** @package tests */
- class bug_489398
- {
- /**
- * Checking the single quote var case
- */
- var $test_01 = '$Id: bug-489398.php,v 1.5 2002/05/21 15:47:58 CelloG Exp $';
-
- /**
- * checking the double quote var case
- */
- var $test_02 = "Double quoted value";
-
- /**
- * Checking the no quote cause
- */
- var $test_03 = false;
-
- /**
- * Checking the empty array case
- */
- var $test_04 = array();
-
- /**
- * Checking the array with data case
- */
- var $test_05 = array("test1","test2" => "value");
- }
- ?>
-