View file core/libs/htmlParser/manual/docs/api/simple_html_dom_node/hasClass.md

File size: 281B
# hasClass

```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');
```