convert() публичный Метод

Convert HTML into a textual representation
public convert ( ) : string
Результат string Text representation
Пример #1
0
 /**
  * Convert the post content to text
  *
  * @wp-filter bbsub_html_to_text
  * @param string $html HTML to convert
  * @return string Text version of the content
  */
 public static function convert_html_to_text($html)
 {
     $converter = new Falcon_Converter($html);
     return $converter->convert();
 }