Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
/** @package tests */
/** @package tests */
class bug_489398
{
        /**
        * Checking the single quote var case
        */
        var $test_01 = '$Id: bug-489398.php 198623 2005-10-17 18:37:50Z jeichorn $';

        /**
        * 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");
}
?>