You are here

public function HTML5::getOptions in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/masterminds/html5/src/HTML5.php \Masterminds\HTML5::getOptions()

Get the default options.

Return value

array The default options.

4 calls to HTML5::getOptions()
HTML5::parse in vendor/masterminds/html5/src/HTML5.php
Parse an input stream.
HTML5::parseFragment in vendor/masterminds/html5/src/HTML5.php
Parse an input stream where the stream is a fragment.
HTML5::save in vendor/masterminds/html5/src/HTML5.php
Save a DOM into a given file as HTML5.
HTML5::saveHTML in vendor/masterminds/html5/src/HTML5.php
Convert a DOM into an HTML5 string.

File

vendor/masterminds/html5/src/HTML5.php, line 44

Class

HTML5
This class offers convenience methods for parsing and serializing HTML5. It is roughly designed to mirror the \DOMDocument class that is provided with most versions of PHP.

Namespace

Masterminds

Code

public function getOptions() {
  return $this->options;
}