0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
vendor
/
flp
/
flp
/
Phraser
/
[
Home
]
File: Phrase.php
<?php namespace Phraser; class Phrase { public $original; public $sanitized; public $words; public function __construct($text) { $this->original = $text; $this->words = Phraser::sanitizeToWords($text); $this->sanitized = implode('', $this->words); } }