File "hasClass.md"

Full Path: /var/www/html/wordpress/wp-content/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/hasClass.md
File size: 331 bytes
MIME-type: text/plain
Charset: utf-8

 
Open Back
```php
hasClass ( string $class ) : bool
```

| Parameter | Description                             |
|-----------|-----------------------------------------|
| `class`   | Specifies the class name to search for. |

Returns true if the current node has the specified class name.

**Examples**

```php
$node->hasClass('article');
```