Jacek Kowalski
2012-06-23 8bd4d9f5065a5b94dc83f0ed6859ed0d93c75d84
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
class jsarray {
    static function parse($array) {
        $data = '<?php '.$array.' ?>';
        $data = token_get_all($data);
        
        $stack = array( array() );
        $element = NULL;
        foreach($data as $token) {
            if(is_array($token)) {
                // Ignore  < ? php  and  ? >  added above
                if($token[0] == T_OPEN_TAG OR $token[0] == T_CLOSE_TAG) continue;
                // String/int element within an array
                if($token[0] == T_CONSTANT_ENCAPSED_STRING || $token[0] == T_LNUMBER) {
                    $element = substr($token[1], 1, -1);
                }
            }
            // Nested array
            elseif($token == '[') {
                array_push($stack, array());
            }
            // End of nested array
            elseif($token == ']') {
                // Put elements into the lastest array
                if($element !== NULL && $element !== FALSE) {
                    end($stack);
                    $stack[key($stack)][] = $element;
                    $element = NULL;
                }
                
                // Check - maybe there are no elements between ] and next ]
                $element = FALSE;
                
                $temp = array_pop($stack);
                end($stack);
                $stack[key($stack)][] = $temp;
                unset($temp);
            }
            // Elements separator
            elseif($token == ',') {
                // Put elements into the lastest array (]] check)
                if($element !== FALSE) {
                    end($stack);
                    $stack[key($stack)][] = $element;
                }
                $element = NULL;
            }
            else
            {
                return array();
            }
        }
        
        return $stack[0][0];
    }
}
?>