2 header('Content-Type: text/html; charset=utf-8');
6 <title>PHPUTF8 Tests</title>
11 <a href="runtests.php">RUN ALL TESTS</a>
12 <a href="runtests.php?engine=mbstring">[mbstring]</a>
13 <a href="runtests.php?engine=native">[native]</a>
18 $path = dirname(__FILE__).'/cases';
19 if ( $d = opendir($path) ) {
20 while (($file = readdir($d)) !== false) {
21 if ( is_file($path.'/'.$file) ) {
22 $farray = explode('.',$file);
23 if ( $farray[1] == 'test' ) {
26 <a href="./cases/<?php echo htmlspecialchars($file); ?>"><?php echo htmlspecialchars($file); ?></a>
27 <a href="./cases/<?php echo htmlspecialchars($file); ?>?engine=mbstring">[mbstring]</a>
28 <a href="./cases/<?php echo htmlspecialchars($file); ?>?engine=native">[native]</a>