crocciari/htmlchars

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

Maintainers

Package info

github.com/crocciari/htmlchars

pkg:composer/crocciari/htmlchars

Statistics

Installs: 35

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.0.4 2024-01-04 10:09 UTC

This package is auto-updated.

Last update: 2026-04-04 14:56:44 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);