本文整理汇总了PHP中simple_html_dom::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP simple_html_dom::__construct方法的具体用法?PHP simple_html_dom::__construct怎么用?PHP simple_html_dom::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类simple_html_dom
的用法示例。
在下文中一共展示了simple_html_dom::__construct方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function __construct($base_url, $page = NULL)
{
if (!$page) {
parent::__construct($base_url);
} else {
parent::__construct($base_url . $page);
}
$this->base_url = $base_url;
$this->faculty_info = $this->get_faculty_info();
$this->faculty_thumb_srcs = $this->get_faculty_thumb_srcs();
$this->faculty_members = array_map(array($this, "merge_obj_arrays"), $this->faculty_info, $this->faculty_thumb_srcs);
}
示例2: __construct
public function __construct($str = null)
{
$lowercase = true;
$forceTagsClosed = true;
$target_charset = DEFAULT_TARGET_CHARSET;
$stripRN = true;
$defaultBRText = DEFAULT_BR_TEXT;
$defaultSpanText = DEFAULT_SPAN_TEXT;
parent::__construct(null, $lowercase, $forceTagsClosed, $target_charset, $stripRN, $defaultBRText, $defaultSpanText);
if (empty($str) || strlen($str) > MAX_FILE_SIZE) {
throw new \RuntimeException('Wrong $str param. Strlen = ' . ($str ? strlen($str) : 0));
}
$this->load($str, $lowercase, $stripRN);
}
示例3:
function CI_Phpdom()
{
//php dom construct
parent::__construct();
}
示例4: __construct
public function __construct($sHtml)
{
$this->block_tags[HDOM_ROOT_PSEUDOTAG] = 1;
$this->dom_node_class = 'DomFragNode';
parent::__construct($sHtml, false, false, 'UTF-8', false);
}
示例5: __construct
public function __construct()
{
parent::__construct();
}