removeEmptyTags() public method

Remove empty tags.
public removeEmptyTags ( string $data ) : string
$data string Input data
return string
Beispiel #1
0
 /**
  * Called after XML parsing.
  */
 public function postFilter()
 {
     $this->output = $this->tag->removeEmptyTags($this->output);
     $this->output = $this->filterRules($this->output);
     $this->output = $this->tag->removeMultipleBreakTags($this->output);
     $this->output = trim($this->output);
 }
Beispiel #2
0
 /**
  * Called after XML parsing
  *
  * @access public
  */
 public function postFilter()
 {
     $this->output = $this->tag->removeEmptyTags($this->output);
     $this->output = trim($this->output);
 }