Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 637 Bytes

meta.md

File metadata and controls

38 lines (25 loc) · 637 Bytes

HAPEL Core Method Reference


<meta ...>

Description

Creates a <meta> html tag.

meta($name, $content, $attr);

Parameters

Parameter Required Default
$name yes null
$content yes null
$attr no null

Return Values

string

Example

Usage:

echo meta('robots', 'index, follow');

Result:

<meta name="robots" content="index, follow">