html_entity_decodeの読み方

phpで利用されるメソッドの1つである「html_entity_decode」の読み方を掲載してます。
読み⽅
「エイチティーエムエル・エンティティ・デコード」と読みます。
英訳
「entity」は「実体」という意味があります。
html_entity_decodeとは
phpで、HTML エンティティに対応している文字に変換するメソッドとなります。
<?php
$str = "<a href="https://sebee.site/">link</a>";
$result = htmlspecialchars_decode($str);
print_r($result);
実行結果
<a href="https://sebee.site/">link</a>
-
前の記事
convert_uuencodeの読み方 2021.07.27
-
次の記事
unwrapの読み方 2021.08.02