PHP Classes

File: example/whitespace.php

Recommend this page to a friend!
  Classes of Ve Bailovity   Misc String   example/whitespace.php   Download  
File: example/whitespace.php
Role: Example script
Content type: text/plain
Description: Example usage
Class: Misc String
Manipulate Unicode and unencoded strings
Author: By
Last change: Accessible without user login
Date: 17 years ago
Size: 1,551 bytes
 

Contents

Class file image Download
<?php
/**
 * This is a test file for strWhitespace class from MiscString package.
 * Run this file in your browser and submit some text.
 *
 * @package Test MiscString
 * @author Vladislav Bailovic <malatestapunk@gmail.com>
 */


include ('../miscstring.php');

$reply = @$_POST['text'];

$s = new strWhitespace();


?>
<!--------------------------- PREVIEW ------------------------->
<div style="border: 3px solid #EEE; margin: 2em">
    <dl>
    <dt>original</dt><dd><pre><?=$reply?></pre></dd>
    <dt>strNormal::stripNewlines()</dt><dd><pre><?=$s->stripNewlines($reply)?></pre></dd>
    <dt>strNormal::stripEmptyLines()</dt><dd><pre><?=$s->stripEmptyLines($reply)?></pre></dd>
    <dt>strNormal::spacesToTabs()</dt><dd><pre><?=$s->spacesToTabs($reply)?></pre></dd>
    <dt>strNormal::tabsToSpaces(strNormal::spacesToTabs())</dt><dd><pre><?=$s->tabsToSpaces($s->spacesToTabs($reply))?></pre></dd>
    <dt>strNormal::normalizeSpace()</dt><dd><pre><?=$s->normalizeSpace($reply)?></pre></dd>
    <dt>strNormal::normalizeWhitepace()</dt><dd><pre><?=$s->normalizeWhitespace($reply)?></pre></dd>
    <dt>strNormal::htmlHardSpaces()</dt><dd><pre><?=$s->htmlHardSpaces($reply)?></pre></dd>
    </dl>
</div>
<!--------------------------- FORM ------------------------->
<h3>Enter a few paragraphs of text 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']?></textarea>
    <br />
    <input type='submit' />
</form>