Dom\TokenList::replace
PHP function
Edit on GitHub ✎
(PHP 8 >= 8.4.0)
Replaces a token in the list with another one
Description
Dom\TokenList::replace(string $token, string $newToken): bool
Replaces a token in the list with another one.
Parameters
tokenThe token to replace.
newTokenThe new token.
Return Values
Returns true if token was in the list, false otherwise.
Errors/Exceptions Errors
Examples
Dom\TokenList::replace example
Replaces a token in the paragraph with another one.
php
<?php
$dom = Dom\HTMLDocument::createFromString('<p class="font-bold important"></p>', LIBXML_NOERROR);
$p = $dom->body->firstChild;
$p->classList->replace('font-bold', 'font-small');
echo $dom->saveHtml($p);
?>The above example will output:
output
<p class="font-small important"></p>