当前位置: 首页>>代码示例>>PHP>>正文


PHP simple_html_dom::__construct方法代码示例

本文整理汇总了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);
 }
开发者ID:realpeterz,项目名称:ischool,代码行数:12,代码来源:scrap_faculty.php

示例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);
 }
开发者ID:avz-cmf,项目名称:zaboy-utils,代码行数:14,代码来源:Simple.php

示例3:

 function CI_Phpdom()
 {
     //php dom construct
     parent::__construct();
 }
开发者ID:bimbingan,项目名称:SkripsiSPK,代码行数:5,代码来源:Phpdom.php

示例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);
 }
开发者ID:bhoidhos,项目名称:aceAdminPanel,代码行数:6,代码来源:DomFrag.class.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
 }
开发者ID:johnatanivini,项目名称:RetornoRastreioCorreios,代码行数:4,代码来源:retorno_correios.class.php


注:本文中的simple_html_dom::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。