php-src/ext/mbstring/tests/common.inc
Nikita Popov 4bd18db8cc Remove custom error handler in mbstring tests
To make it more obvious what is tested and what the error messages
are.
2019-03-05 11:41:53 +01:00

24 lines
286 B
PHP

<?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;
?>