コード例 #1
0
ファイル: StringNoHTMLTags.php プロジェクト: rendix2/QW_MVS
 public function __construct($string = "", $debug = FALSE)
 {
     parent::__construct($string);
     $this->string = strip_tags($string);
 }
コード例 #2
0
ファイル: StringEntities.php プロジェクト: rendix2/QW_MVS
 public function __construct($string = "", $debug = FALSE)
 {
     parent::__construct($string);
     $this->string = htmlspecialchars($string, ENT_QUOTES);
 }