| Conditions | 1 |
| Paths | 1 |
| Total Lines | 19 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public static function str_get_html( |
||
| 36 | $str, |
||
| 37 | $lowercase = true, |
||
| 38 | $forceTagsClosed = true, |
||
| 39 | $target_charset = DEFAULT_TARGET_CHARSET, |
||
| 40 | $stripRN = true, |
||
| 41 | $defaultBRText = DEFAULT_BR_TEXT, |
||
| 42 | $defaultSpanText = DEFAULT_SPAN_TEXT |
||
| 43 | ) { |
||
| 44 | $domx = new simple_html_dom(); |
||
| 45 | |||
| 46 | return $domx->str_get_html( |
||
| 47 | $str, |
||
| 48 | $lowercase, |
||
| 49 | $forceTagsClosed, |
||
| 50 | $target_charset, |
||
| 51 | $stripRN, |
||
| 52 | $defaultBRText, |
||
| 53 | $defaultSpanText |
||
| 54 | ); |
||
| 57 |