ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "removeClass.md"

Full Path: /home/zcziejy/ryadselyen/plugins/wp-optimize/vendor/simplehtmldom/simplehtmldom/docs/HtmlNode/removeClass.md
File size: 673 bytes
MIME-type: text/plain
Charset: utf-8

```php
removeClass ( [ mixed $class = null ] )
```

| Parameter | Description                                      |
|-----------|--------------------------------------------------|
| `class`   | Specifies one or more class names to be removed. |

Removes one or more class names from the current node.

**Remarks**

* To remove more than one class, separate the class names with space or provide them as an array.
* If no parameter is specified, this method will remove all class names from the current node.

**Examples**

```php
$node->removeClass('hidden');
$node->removeClass('article important');
$node->removeClass(array('article', 'new'));
$node->removeClass();
```