DiDom\Document::create PHP Method

create() public static method

Create new document.
public static create ( string $string = null, boolean $isFile = false, string $encoding = 'UTF-8', string $type = 'html' ) : Document
$string string HTML or XML string or file path
$isFile boolean Indicates that in first parameter was passed to the file path
$encoding string The document encoding
$type string The document type
return Document
    public static function create($string = null, $isFile = false, $encoding = 'UTF-8', $type = 'html')
    {
        return new Document($string, $isFile, $encoding, $type);
    }

Usage Example

Beispiel #1
0
 /**
  * Create new element node by CSS selector.
  *
  * @param string $selector
  * @param string $value
  * @param array $attributes
  *
  * @return \DiDom\Element
  */
 public static function createBySelector($selector, $value = null, $attributes = [])
 {
     return Document::create()->createElementBySelector($selector, $value, $attributes);
 }
All Usage Examples Of DiDom\Document::create