crocciari/htmlchars

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

Installs: 33

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/crocciari/htmlchars

1.0.4 2024-01-04 10:09 UTC

This package is auto-updated.

Last update: 2026-01-04 14:28:58 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);