1<?php 2/* 3 * Common definition and Settings 4 */ 5 6// Var def for testing 7$t_ary = array( 8 's1' => '���ܸ�EUC-JP��ʸ����', 9 's2' => 'English Text' 10 ); 11 12class tc 13{ 14 public $s1 = '���ܸ�EUC-JP��ʸ����'; 15 public $s2 = 'English Text'; 16 17 function __construct() 18 { 19 } 20} 21 22$t_obj = new tc; 23 24?> 25