home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / bug-559494.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  461 b   |  23 lines

  1. <?php
  2. /**
  3. * tests variable names with the word 'array' in them
  4. * @package tests
  5. */
  6. /**
  7. * tests variable names with the word 'array' in them
  8. * @package tests
  9. */
  10. class testarraybug
  11. {
  12.     var $arrayType = 'name should be arrayType';
  13.     var $myarrayName = 'name should be myarrayName';
  14.     /**
  15.     * test with no default, should be arrayType1
  16.     */
  17.     var $arrayType1    ;
  18.     /**
  19.     * test with no default, should be myarrayName1
  20.     */
  21.     var $myarrayName1   ; 
  22. }
  23. ?>