Constructor – creates a reference to a token in some external HTML string.
Parameters
$bookmark_name
stringrequired- Name of bookmark corresponding to location in HTML where token is found.
$node_name
stringrequired- Name of node token represents; if uppercase, an HTML element; if lowercase, a special value like "marker".
$has_self_closing_flag
boolrequired- Whether the source token contains the self-closing flag, regardless of whether it’s valid.
$on_destroy
callableoptional- Function to call when destroying token, useful for releasing the bookmark.
Default:
null
Source
/**
* Called when token is garbage-collected or otherwise destroyed.
*
* @var callable|null
*/
Changelog
Version | Description |
---|---|
6.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.