Method dtd_check
- Info
-
<?php public function dtd_check ($doctype); ?>
Affects markup formatting by setting document type definition.
- Arguments
-
@doctype
- Either 5 as integer (or string) or string 'X'.
- Return Value
-
This method returns no value.
- Examples
-
<?php
// 5 is for HTML5 spec
$funcdown->dtd_check(5);
// X is for XML spec
$funcdown->dtd_check("X");
?>