/ Published in: PHP
Closes opened HTML tags.
Expand |
Embed | Plain Text
function closetags($html) { $openedtags = $result[1]; $closedtags = $result[1]; return $html; } for ($i=0; $i < $len_opened; $i++) { $html .= '</'.$openedtags[$i].'>'; } else { } } return $html; }
You need to login to post a comment.
