spyrosoft/php-format-html-output
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
A simple HTML formatter.
Example:
<?php
include_once('format.php');
$html = 'BIG STRING FULL OF HTML';
$format = new Format;
$formatted_html = $format->HTML($html);
echo $formatted_html;