<?php
 
/**
 
 * This is a test file for strUnicode class from MiscString package.
 
 * Run this file in your browser and submit some text.
 
 * 
 
 * @package Test MiscString
 
 * @author Vladislav Bailovic <[email protected]>
 
 */
 
 
 
include ('../miscstring.php');
 
 
$reply = @$_POST['text'];
 
 
$s = new strUnicode();
 
 
?>
 
<!--------------------------- PREVIEW ------------------------->
 
<div style="border: 3px solid #EEE; margin: 2em">
 
    <dl>
 
    <dt>original</dt> <dd><strong><?=$reply?></strong></dd>
 
    <dt>strlen()</dt> <dd><?=strlen($reply)?></dd>
 
    <dt>strUnicode::strlen()</dt> <dd> <?=$s->strlen($reply)?></dd>
 
    <dt>substr(text, 3, 6)</dt> <dd><?=substr($reply, 3, 6)?></dd>
 
    <dt>strUnicode::substr(text, 3, 6)</dt> <dd><?=$s->substr($reply, 3, 6)?></dd>
 
    </dl>
 
</div>
 
<!--------------------------- FORM ------------------------->
 
<h3>Enter a string with special characters to test:</h3>
 
<form action='<?=$_SERVER['PHP_SELF']?>' accept-charset='utf-8' method='post'>
 
    <textarea rows='8' 
 
        style="width:100%;border: 1px solid black" name='text'><?=(@$_POST['text']) ? @$_POST['text'] :    'Iñtërnâtiônà lizætiøn' ?></textarea>
 
    <br />
 
    <input type='submit' />
 
</form>
 
 |