coercive / head
Coercive Utility Head
0.0.7
2024-09-17 13:19 UTC
Requires
- php: >=7.4.3
README
Handler for html head tags
Get
composer require coercive/head
Example
<?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();