PHP code example of motokraft / html-element
1. Go to this page and download the library: Download motokraft/html-element library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
motokraft / html-element example snippets
define('DEBUG', true);// Учитываются уровни вложенности html-элементов
define('DEBUG', false);// Однострочный вывод без разрывов строк
use \Motokraft\HtmlElement\HtmlElement;
$div = new HtmlElement('div');
echo $div;// <div></div>