Lines Matching refs:this
18 $this->varname = $url["host"];
19 $this->position = 0;
26 $ret = substr($GLOBALS[$this->varname], $this->position, $count);
27 $this->position += strlen($ret);
33 $left = substr($GLOBALS[$this->varname], 0, $this->position);
34 $right = substr($GLOBALS[$this->varname], $this->position + strlen($data));
35 $GLOBALS[$this->varname] = $left . $data . $right;
36 $this->position += strlen($data);
42 return $this->position;
47 return $this->position >= strlen($GLOBALS[$this->varname]);
53 if ($offset < strlen($GLOBALS[$this->varname]) && $offset >= 0) {
54 $this->position = $offset;
63 $this->position += $offset;
71 if (strlen($GLOBALS[$this->varname]) + $offset >= 0) {
72 $this->position = strlen($GLOBALS[$this->varname]) + $offset;