Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 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 198623 2005-10-17 18:37:50Z jeichorn $';
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
?>