1: <?php
2:
3: 4: 5: 6: 7:
8:
9:
10:
11: 12: 13: 14: 15: 16:
17: class NPhpHelpers
18: {
19: const PHP_IDENT = '[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*';
20:
21:
22: 23: 24: 25:
26: public static function dump($var)
27: {
28: return self::_dump($var);
29: }
30:
31:
32: private static function _dump(& $var, $level = 0)
33: {
34: if ($var instanceof NPhpLiteral) {
35: return $var->value;
36:
37: } elseif (is_float($var)) {
38: $var = var_export($var, TRUE);
39: return strpos($var, '.') === FALSE ? $var . '.0' : $var;
40:
41: } elseif (is_bool($var)) {
42: return $var ? 'TRUE' : 'FALSE';
43:
44: } elseif (is_string($var) && (preg_match('#[^\x09\x20-\x7E\xA0-\x{10FFFF}]#u', $var) || preg_last_error())) {
45: static $table;
46: if ($table === NULL) {
47: foreach (range("\x00", "\xFF") as $ch) {
48: $table[$ch] = ord($ch) < 32 || ord($ch) >= 127
49: ? '\\x' . str_pad(dechex(ord($ch)), 2, '0', STR_PAD_LEFT)
50: : $ch;
51: }
52: $table["\r"] = '\r';
53: $table["\n"] = '\n';
54: $table["\t"] = '\t';
55: $table['$'] = '\\$';
56: $table['\\'] = '\\\\';
57: $table['"'] = '\\"';
58: }
59: return '"' . strtr($var, $table) . '"';
60:
61: } elseif (is_array($var)) {
62: $s = '';
63: $space = str_repeat("\t", $level);
64:
65: static $marker;
66: if ($marker === NULL) {
67: $marker = uniqid("\x00", TRUE);
68: }
69: if (empty($var)) {
70:
71: } elseif ($level > 50 || isset($var[$marker])) {
72: throw new InvalidArgumentException('Nesting level too deep or recursive dependency.');
73:
74: } else {
75: $s .= "\n";
76: $var[$marker] = TRUE;
77: $counter = 0;
78: foreach ($var as $k => & $v) {
79: if ($k !== $marker) {
80: $s .= "$space\t" . ($k === $counter ? '' : self::_dump($k) . " => ") . self::_dump($v, $level + 1) . ",\n";
81: $counter = is_int($k) ? max($k + 1, $counter) : $counter;
82: }
83: }
84: unset($var[$marker]);
85: $s .= $space;
86: }
87: return "array($s)";
88:
89: } elseif (is_object($var)) {
90: $arr = (array) $var;
91: $s = '';
92: $space = str_repeat("\t", $level);
93:
94: static $list = array();
95: if (empty($arr)) {
96:
97: } elseif ($level > 50 || in_array($var, $list, TRUE)) {
98: throw new InvalidArgumentException('Nesting level too deep or recursive dependency.');
99:
100: } else {
101: $s .= "\n";
102: $list[] = $var;
103: foreach ($arr as $k => & $v) {
104: $s .= "$space\t" . self::_dump($k) . " => " . self::_dump($v, $level + 1) . ",\n";
105: }
106: array_pop($list);
107: $s .= $space;
108: }
109: return get_class($var) === 'stdClass'
110: ? "(object) array($s)"
111: : __CLASS__ . "::createObject('" . get_class($var) . "', array($s))";
112:
113: } else {
114: return var_export($var, TRUE);
115: }
116: }
117:
118:
119: 120: 121: 122:
123: public static function format($statement)
124: {
125: $args = func_get_args();
126: return self::formatArgs(array_shift($args), $args);
127: }
128:
129:
130: 131: 132: 133:
134: public static function formatArgs($statement, array $args)
135: {
136: $a = strpos($statement, '?');
137: while ($a !== FALSE) {
138: if (!$args) {
139: throw new InvalidArgumentException('Insufficient number of arguments.');
140: }
141: $arg = array_shift($args);
142: if (substr($statement, $a + 1, 1) === '*') {
143: if (!is_array($arg)) {
144: throw new InvalidArgumentException('Argument must be an array.');
145: }
146: $arg = implode(', ', array_map(array(__CLASS__, 'dump'), $arg));
147: $statement = substr_replace($statement, $arg, $a, 2);
148:
149: } else {
150: $arg = substr($statement, $a - 1, 1) === '$' || in_array(substr($statement, $a - 2, 2), array('->', '::'), TRUE)
151: ? self::formatMember($arg) : self::_dump($arg);
152: $statement = substr_replace($statement, $arg, $a, 1);
153: }
154: $a = strpos($statement, '?', $a + strlen($arg));
155: }
156: return $statement;
157: }
158:
159:
160: 161: 162: 163:
164: public static function formatMember($name)
165: {
166: return $name instanceof NPhpLiteral || !self::isIdentifier($name)
167: ? '{' . self::_dump($name) . '}'
168: : $name ;
169: }
170:
171:
172: 173: 174:
175: public static function isIdentifier($value)
176: {
177: return is_string($value) && preg_match('#^' . self::PHP_IDENT . '\z#', $value);
178: }
179:
180:
181:
182: public static function createObject($class, array $props)
183: {
184: return unserialize('O' . substr(serialize((string) $class), 1, -1) . substr(serialize($props), 1));
185: }
186:
187: }
188: