tidyNode::isAsp

(PHP 5, PHP 7, PHP 8)

tidyNode::isAspChecks if this node is ASP

Description

publictidyNode::isAsp(): bool

Tells whether the current node is ASP.

Parameters

This function has no parameters.

Return Values

Returns true if the node is ASP, false otherwise.

Examples

Example #1 Extract ASP code from a mixed HTML document

<?php

$html
= <<< HTML
<html><head>
<?php echo '<title>title</title>'; ?>
<#

alert('Hello World');
#>
</head>
<body>

<?php

The above example will output:

# asp node #1 <% response.write("Hello World!") %>
To Top