Modern DOM library written in PHP for HTML documents
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

329 B

title
Document::__construct

Document::__construct — Creates a new Document object

Description

public Document::__construct ( )

Creates a new Document object.

Examples

Example #1 Creating a new Document

<?php

namespace MensBeam\HTML;

$dom = new Document();
echo $dom;

?>