coercive/head

Coercive Utility Head

0.0.7 2024-09-17 13:19 UTC

This package is auto-updated.

Last update: 2024-09-17 13:20:45 UTC


README

HTML头部标签处理器

获取

composer require coercive/head

示例

<?php

$head = new Head;

# Meta Title
$head->Title()->setContent('example title');

# Meta Description
$head->Description()->setContent('example description');

# Meta Keywords
$head->Keywords()->setContent('example test');

# Show
echo $head->toHtml();