Lines Matching refs:null

70 function file_get_html($url, $use_include_path = false, $context=null, $offset = -1, $maxLen=-1, $l…
73 …$dom = new simple_html_dom(null, $lowercase, $forceTagsClosed, $target_charset, $stripRN, $default…
90 …$dom = new simple_html_dom(null, $lowercase, $forceTagsClosed, $target_charset, $stripRN, $default…
121 public $parent = null;
125 private $dom = null;
146 $this->dom = null;
147 $this->nodes = null;
148 $this->parent = null;
149 $this->children = null;
244 function parent($parent=null)
248 if ($parent !== null)
272 return null;
282 return null;
292 return null;
298 if ($this->parent===null)
300 return null;
311 return null;
319 if ($this->parent===null) return null;
324 if (--$idx<0) return null;
382 if ($this->dom && $this->dom->callback!==null)
479 if ($val===null || $val===false)
502 function find($selector, $idx=null, $lowercase=false)
548 return (isset($found[$idx])) ? $found[$idx] : null;
579 while (!isset($parent->_[HDOM_INFO_END]) && $parent!==null) {
697 list($tag, $key, $val, $exp, $no_key) = array($m[1], null, null, '=', false);
946 function removeAttribute($name) {$this->__set($name, null);}
948 function getElementsById($id, $idx=null) {return $this->find("#$id", $idx);}
950 function getElementsByTagName($name, $idx=null) {return $this->find($name, $idx);}
973 public $root = null;
975 public $callback = null;
1015 …function __construct($str=null, $lowercase=true, $forceTagsClosed=true, $target_charset=DEFAULT_TA…
1083 if (($error=error_get_last())!==null) {
1098 $this->callback = null;
1111 function find($selector, $idx=null, $lowercase=false)
1119 foreach ($this->nodes as $n) {$n->clear(); $n = null;}
1121 if (isset($this->children)) foreach ($this->children as $n) {$n->clear(); $n = null;}
1191 $charset = null;
1266 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1271 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1328 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1351 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1373 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1399 if ($this->char!==null && $space[0]==='')
1406 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1429 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1439 … $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1469 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1496 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1498 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1502 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1504 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1537 $this->char = (++$this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1544 $this->char = ($this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1552 $this->char = ($this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1562 $this->char = ($this->pos<$this->size) ? $this->doc[$this->pos] : null; // next
1568 if ($this->char===null) return '';
1572 $this->char = null;
1586 if ($this->char===null) return '';
1594 $this->char = null;
1712 …function createElement($name, $value=null) {return @str_get_html("<$name>$value</$name>")->first_c…
1715 function getElementsById($id, $idx=null) {return $this->find("#$id", $idx);}