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

  1. <?php
  2. /** @package tests */
  3. /** @package tests */
  4. class bug_489398
  5. {
  6.     /**
  7.     * Checking the single quote var case
  8.     */
  9.     var $test_01 = '$Id: bug-489398.php,v 1.5 2002/05/21 15:47:58 CelloG Exp $';
  10.  
  11.     /**
  12.     * checking the double quote var case
  13.     */
  14.     var $test_02 = "Double quoted value";
  15.  
  16.     /**
  17.     * Checking the no quote cause
  18.     */
  19.     var $test_03 = false;
  20.  
  21.     /**
  22.     * Checking the empty array case
  23.     */
  24.     var $test_04 = array();
  25.  
  26.     /**
  27.     * Checking the array with data case
  28.     */
  29.     var $test_05 = array("test1","test2" => "value");
  30. }
  31. ?>
  32.