Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 587 Bytes

html.md

File metadata and controls

38 lines (25 loc) · 587 Bytes

HAPEL Core Method Reference


<html ...>

Description

Creates a <html> html tag.

html($child, $lang, $attr);

Parameters

Parameter Required Default
$child no false
$lang no 'en'
$attr no null

Return Values

string

Example

Usage:

echo html(true, 'en');

Result:

<html lang="en">