crocciari/htmlchars

The HtmlChars class converts letters and numbers into their respective HTML entities.

1.0.4 2024-01-04 10:09 UTC

This package is auto-updated.

Last update: 2025-06-04 13:09:54 UTC


README

The HtmlChars class converts letters and numbers into their respective HTML entities

Install

composer require crocciari/htmlchars

This basic example

<?php

require_once("vendor/autoload.php");

use Crocciari\HtmlChars;

$html = new HtmlChars;

$result = $html->getString("Hello World 2024");

var_dump($result);