php8.5
Home/ Manual/ dom / tokenlist/ Dom\TokenList::replace

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

token

The token to replace.

newToken

The 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>

Source: reference/dom/dom/tokenlist/replace.xml · from the official PHP manual (php/doc-en)