Lines Matching refs:this
17 $this->varname = $url["host"];
18 $this->position = 0;
25 $ret = substr($GLOBALS[$this->varname], $this->position, $count);
26 $this->position += strlen($ret);
32 $left = substr($GLOBALS[$this->varname], 0, $this->position);
33 $right = substr($GLOBALS[$this->varname], $this->position + strlen($data));
34 $GLOBALS[$this->varname] = $left . $data . $right;
35 $this->position += strlen($data);
41 return $this->position;
46 return $this->position >= strlen($GLOBALS[$this->varname]);
52 if ($offset < strlen($GLOBALS[$this->varname]) && $offset >= 0) {
53 $this->position = $offset;
62 $this->position += $offset;
70 if (strlen($GLOBALS[$this->varname]) + $offset >= 0) {
71 $this->position = strlen($GLOBALS[$this->varname]) + $offset;