Lines Matching refs:this

58             $this->ID = $m[2];
59 $this->LOADER = strtolower($m[3]);
69 $this->ID = 0;
70 $this->LOADER = 'unknown';
74 $this->_uniqHash = md5(microtime() . getmypid());
75 ini_set('error_prepend_string', ini_get('error_prepend_string') . $this->_uniqHash);
76 ini_set('error_append_string', ini_get('error_append_string') . $this->_uniqHash);
77 ob_start(array(&$this, "_obHandler"));
80 $this->setEncoding($enc);
124 $this->SCRIPT_ENCODING = strtolower(!empty($p[1])? $p[1] : $enc);
125 $this->SCRIPT_DECODE_MODE = !empty($p[2])? $p[2] : '';
127 $this->_correctSuperglobals();
144 if ($this->SCRIPT_DECODE_MODE == 'entities')
213 if ($this->LOADER == 'form') return;
230 $GLOBALS[$dst] = $this->_ucs2EntitiesDecode($data);
250 if (preg_match('{'.$this->_uniqHash.'(.*?)'.$this->_uniqHash.'}sx', $text)) {
251 $text = str_replace($this->_uniqHash, '', $text);
255 if (!isset($this->RESULT)) {
256 $this->RESULT = isset($GLOBALS['_RESULT'])? $GLOBALS['_RESULT'] : null;
258 $encoding = $this->SCRIPT_ENCODING;
260 'id' => $this->ID,
261 'js' => $this->RESULT,
266 $this->_nonAsciiChars = join("", array_map('chr', range(128, 255)));
267 $this->_toUtfFailed = false;
268 … array_walk_recursive($result, array(&$this, '_toUtf8_callback'), $this->SCRIPT_ENCODING);
269 if (!$this->_toUtfFailed) {
273 $text = $this->php2js($result);
276 $text = $this->php2js($result);
281 …$ctype = !empty($this->_contentTypes[$this->LOADER])? $this->_contentTypes[$this->LOADER] : $this-…
284 if ($this->LOADER != "xml") {
289 …. ($this->LOADER == "form"? 'top && top.JsHttpRequestGlobal && top.JsHttpRequestGlobal' : 'JsHttpR…
292 if ($this->LOADER == "form") {
308 if ($this->_toUtfFailed || strpbrk($k, $this->_nonAsciiChars) !== false) {
309 $this->_toUtfFailed = true;
325 $d[$this->_ucs2EntitiesDecode($k)] = $this->_ucs2EntitiesDecode($v);
330 …$data = preg_replace_callback('/%u([0-9A-F]{1,4})/si', array(&$this, '_ucs2EntitiesDecodeCallback'…
344 if ($dec === "38" && $this->SCRIPT_DECODE_MODE == 'entities') {
349 $c = @iconv('UCS-2BE', $this->SCRIPT_ENCODING, pack('n', $dec));
351 $c = $this->_decUcs2Decode($dec, $this->SCRIPT_ENCODING);
354 if ($this->SCRIPT_DECODE_MODE == 'entities') {
376 if (isset($this->_encTables[$toEnc])) {
378 $p = array_search($code, $this->_encTables[$toEnc]);