summaryrefslogtreecommitdiff
path: root/ext/mbstring/tests/common.inc
blob: 2ee26bbfd535aefa59110dc544c11c465a8263e6 (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;

?>