crocciari/

htmlchars

HtmlChars类将字母和数字转换为相应的HTML实体。

1.0.4 2024-01-04 10:09 UTC

This package is auto-updated.

Last update: 2024-09-04 11:34:09 UTC


README

HtmlChars类将字母和数字转换为相应的HTML实体

安装

composer require crocciari/htmlchars

以下基本示例

<?php

require_once("vendor/autoload.php");

use Crocciari\HtmlChars;

$html = new HtmlChars;

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

var_dump($result);