summaryrefslogtreecommitdiff
path: root/ext/mbstring/tests/common.inc
blob: c8467a29f512d309878aaf90e8e4fe11206a986e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/*
 * Common definition and Settings
 */

// Var def for testing
$t_ary = array(
		's1' => '日本語EUC-JPの文字列',
		's2' => 'English Text'
		);

class tc
{
	public $s1 = '日本語EUC-JPの文字列';
	public $s2 = 'English Text';

	function __construct()
	{
	}
}

$t_obj = new tc;

?>