denshoch/utils

Utility class used in Denshoch softwares.

1.1.7 2023-05-11 07:43 UTC

This package is auto-updated.

Last update: 2024-04-11 09:33:07 UTC


README

Utility class used in Denshoch softwares.

Install

composer install

Usage

removeControlChars()

Remove Unicode control characters from input text.

$text = "�&#x1";
\Denshoch\Utils::removeControlChars( $text );
var_dump( $text ); #=> ''

HtmlModifier

$html = "<div><p>Hello, world!</p></div>";
$result = \Denshoch\HtmlModifier::addClass($html, 'p', 'my-class');
=> '<div><p class="my-class">Hello, world!</p></div>'


$html = "<div><p>Hello, world!</p></div>";
$tagClassPairs = [
    'p' => 'my-class',
    'div' => 'my-other-class'
];
$result = HtmlModifier::addClassMultiple($html, $tagClassPairs);
=> '<div class="my-other-class"><p class="my-class">Hello, world!</p></div>'

Test

vendor/bin/phpunit --bootstrap vendor/autoload.php tests