summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorgodzilla80@gmx.net <>2009-03-21 08:17:29 +0000
committergodzilla80@gmx.net <>2009-03-21 08:17:29 +0000
commit789f1d83abad4321d3fe5c337af3238257d3f1f7 (patch)
tree04ca8a335366cd939702a44d8adcd85336fa19d8 /framework
parent88ca6ce4fae584a72470343d9e786c8ac736c62d (diff)
reverting array_push() changes of r2625
Diffstat (limited to 'framework')
-rw-r--r--framework/Web/Javascripts/TJSON.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/framework/Web/Javascripts/TJSON.php b/framework/Web/Javascripts/TJSON.php
index 92a58815..e0d31b05 100644
--- a/framework/Web/Javascripts/TJSON.php
+++ b/framework/Web/Javascripts/TJSON.php
@@ -146,10 +146,10 @@ class TJSON
return (float) $var;
case 'string':
- if (($g=Prado::getApplication()->getGlobalization(false))!==null &&
+ if (($g=Prado::getApplication()->getGlobalization(false))!==null &&
strtoupper($enc=$g->getCharset())!='UTF-8')
$var=iconv($enc, 'UTF-8', $var);
-
+
// STRINGS ARE EXPECTED TO BE IN ASCII OR UTF-8 FORMAT
$ascii = '';
$strlen_var = strlen($var);
@@ -508,9 +508,9 @@ class TJSON
}
}
- $stk[] = array('what' => self::JSON_SLICE,
+ array_push($stk, array('what' => self::JSON_SLICE,
'where' => 0,
- 'delim' => false);
+ 'delim' => false));
$chrs = substr($str, 1, -1);
$chrs = $this->reduce_string($chrs);
@@ -538,12 +538,12 @@ class TJSON
// found a comma that is not inside a string, array, etc.,
// OR we've reached the end of the character list
$slice = substr($chrs, $top['where'], ($c - $top['where']));
- $stk[] = array('what' => self::JSON_SLICE, 'where' => ($c + 1), 'delim' => false);
+ array_push($stk, array('what' => self::JSON_SLICE, 'where' => ($c + 1), 'delim' => false));
//print("Found split at {$c}: ".substr($chrs, $top['where'], (1 + $c - $top['where']))."\n");
if (reset($stk) == self::JSON_IN_ARR) {
// we are in an array, so just push an element onto the stack
- $arr[] = $this->decode($slice);
+ array_push($arr, $this->decode($slice));
} elseif (reset($stk) == self::JSON_IN_OBJ) {
// we are in an object, so figure
@@ -576,7 +576,7 @@ class TJSON
} elseif ((($chrs{$c} == '"') || ($chrs{$c} == "'")) && ($top['what'] != self::JSON_IN_STR)) {
// found a quote, and we are not inside a string
- $stk = array('what' => self::JSON_IN_STR, 'where' => $c, 'delim' => $chrs{$c});
+ array_push($stk, array('what' => self::JSON_IN_STR, 'where' => $c, 'delim' => $chrs{$c}));
//print("Found start of string at {$c}\n");
} elseif (($chrs{$c} == $top['delim']) &&
@@ -590,7 +590,7 @@ class TJSON
} elseif (($chrs{$c} == '[') &&
in_array($top['what'], array(self::JSON_SLICE, self::JSON_IN_ARR, self::JSON_IN_OBJ))) {
// found a left-bracket, and we are in an array, object, or slice
- $stk = array('what' => self::JSON_IN_ARR, 'where' => $c, 'delim' => false);
+ array_push($stk, array('what' => self::JSON_IN_ARR, 'where' => $c, 'delim' => false));
//print("Found start of array at {$c}\n");
} elseif (($chrs{$c} == ']') && ($top['what'] == self::JSON_IN_ARR)) {
@@ -601,7 +601,7 @@ class TJSON
} elseif (($chrs{$c} == '{') &&
in_array($top['what'], array(self::JSON_SLICE, self::JSON_IN_ARR, self::JSON_IN_OBJ))) {
// found a left-brace, and we are in an array, object, or slice
- $stk = array('what' => self::JSON_IN_OBJ, 'where' => $c, 'delim' => false);
+ array_push($stk, array('what' => self::JSON_IN_OBJ, 'where' => $c, 'delim' => false));
//print("Found start of object at {$c}\n");
} elseif (($chrs{$c} == '}') && ($top['what'] == self::JSON_IN_OBJ)) {
@@ -612,7 +612,7 @@ class TJSON
} elseif (($substr_chrs_c_2 == '/*') &&
in_array($top['what'], array(self::JSON_SLICE, self::JSON_IN_ARR, self::JSON_IN_OBJ))) {
// found a comment start, and we are in an array, object, or slice
- $stk = array('what' => self::JSON_IN_CMT, 'where' => $c, 'delim' => false);
+ array_push($stk, array('what' => self::JSON_IN_CMT, 'where' => $c, 'delim' => false));
$c++;
//print("Found start of comment at {$c}\n");
@@ -759,4 +759,4 @@ class TJSON
}
-?>
+?> \ No newline at end of file