Added Canvas 1.1.0, originally not under SCM so no historical development records...
[canvas.git] / library / YAML / spyc.php4
blob6c064655643c21258de7ce4d9005c512b47eb034
1 <?php
2 /**
3 * Spyc -- A Simple PHP YAML Class
4 * @version 0.2.2 -- 2006-01-29
5 * @author Chris Wanstrath <chris@ozmm.org>
6 * @link http://spyc.sourceforge.net/
7 * @copyright Copyright 2005-2006 Chris Wanstrath
8 * @license http://www.opensource.org/licenses/mit-license.php MIT License
9 * @package Spyc
12 /**
13 * A node, used by Spyc for parsing YAML.
14 * @package Spyc
16 class YAMLNode {
17 /**#@+
18 * @access public
19 * @var string
20 */
21 var $parent;
22 var $id;
23 /**#@+*/
24 /**
25 * @access public
26 * @var mixed
28 var $data;
29 /**
30 * @access public
31 * @var int
33 var $indent;
34 /**
35 * @access public
36 * @var bool
38 var $children = false;
40 /**
41 * The constructor assigns the node a unique ID.
42 * @access public
43 * @return void
45 function YAMLNode() {
46 $this->id = uniqid('');
50 /**
51 * The Simple PHP YAML Class.
53 * This class can be used to read a YAML file and convert its contents
54 * into a PHP array. It currently supports a very limited subsection of
55 * the YAML spec.
57 * Usage:
58 * <code>
59 * $parser = new Spyc;
60 * $array = $parser->load($file);
61 * </code>
62 * @package Spyc
64 class Spyc {
66 /**
67 * Load YAML into a PHP array statically
69 * The load method, when supplied with a YAML stream (string or file),
70 * will do its best to convert YAML in a file into a PHP array. Pretty
71 * simple.
72 * Usage:
73 * <code>
74 * $array = Spyc::YAMLLoad('lucky.yml');
75 * print_r($array);
76 * </code>
77 * @access public
78 * @return array
79 * @param string $input Path of YAML file or string containing YAML
81 function YAMLLoad($input) {
82 $spyc = new Spyc;
83 return $spyc->load($input);
86 /**
87 * Dump YAML from PHP array statically
89 * The dump method, when supplied with an array, will do its best
90 * to convert the array into friendly YAML. Pretty simple. Feel free to
91 * save the returned string as nothing.yml and pass it around.
93 * Oh, and you can decide how big the indent is and what the wordwrap
94 * for folding is. Pretty cool -- just pass in 'false' for either if
95 * you want to use the default.
97 * Indent's default is 2 spaces, wordwrap's default is 40 characters. And
98 * you can turn off wordwrap by passing in 0.
100 * @access public
101 * @return string
102 * @param array $array PHP array
103 * @param int $indent Pass in false to use the default, which is 2
104 * @param int $wordwrap Pass in 0 for no wordwrap, false for default (40)
106 function YAMLDump($array,$indent = false,$wordwrap = false) {
107 $spyc = new Spyc;
108 return $spyc->dump($array,$indent,$wordwrap);
112 * Load YAML into a PHP array from an instantiated object
114 * The load method, when supplied with a YAML stream (string or file path),
115 * will do its best to convert the YAML into a PHP array. Pretty simple.
116 * Usage:
117 * <code>
118 * $parser = new Spyc;
119 * $array = $parser->load('lucky.yml');
120 * print_r($array);
121 * </code>
122 * @access public
123 * @return array
124 * @param string $input Path of YAML file or string containing YAML
126 function load($input) {
127 // See what type of input we're talking about
128 // If it's not a file, assume it's a string
129 if (!empty($input) && (strpos($input, "\n") === false)
130 && file_exists($input)) {
131 $yaml = file($input);
132 } else {
133 $yaml = explode("\n",$input);
135 // Initiate some objects and values
136 $base = new YAMLNode;
137 $base->indent = 0;
138 $this->_lastIndent = 0;
139 $this->_lastNode = $base->id;
140 $this->_inBlock = false;
141 $this->_isInline = false;
143 foreach ($yaml as $linenum => $line) {
144 $ifchk = trim($line);
146 // If the line starts with a tab (instead of a space), throw a fit.
147 if (preg_match('/^(\t)+(\w+)/', $line)) {
148 $err = 'ERROR: Line '. ($linenum + 1) .' in your input YAML begins'.
149 ' with a tab. YAML only recognizes spaces. Please reformat.';
150 die($err);
153 if ($this->_inBlock === false && empty($ifchk)) {
154 continue;
155 } elseif ($this->_inBlock == true && empty($ifchk)) {
156 $last =& $this->_allNodes[$this->_lastNode];
157 $last->data[key($last->data)] .= "\n";
158 } elseif ($ifchk{0} != '#' && substr($ifchk,0,3) != '---') {
159 // Create a new node and get its indent
160 $node = new YAMLNode;
161 $node->indent = $this->_getIndent($line);
163 // Check where the node lies in the hierarchy
164 if ($this->_lastIndent == $node->indent) {
165 // If we're in a block, add the text to the parent's data
166 if ($this->_inBlock === true) {
167 $parent =& $this->_allNodes[$this->_lastNode];
168 $parent->data[key($parent->data)] .= trim($line).$this->_blockEnd;
169 } else {
170 // The current node's parent is the same as the previous node's
171 if (isset($this->_allNodes[$this->_lastNode])) {
172 $node->parent = $this->_allNodes[$this->_lastNode]->parent;
175 } elseif ($this->_lastIndent < $node->indent) {
176 if ($this->_inBlock === true) {
177 $parent =& $this->_allNodes[$this->_lastNode];
178 $parent->data[key($parent->data)] .= trim($line).$this->_blockEnd;
179 } elseif ($this->_inBlock === false) {
180 // The current node's parent is the previous node
181 $node->parent = $this->_lastNode;
183 // If the value of the last node's data was > or | we need to
184 // start blocking i.e. taking in all lines as a text value until
185 // we drop our indent.
186 $parent =& $this->_allNodes[$node->parent];
187 $this->_allNodes[$node->parent]->children = true;
188 if (is_array($parent->data)) {
189 $chk = $parent->data[key($parent->data)];
190 if ($chk === '>') {
191 $this->_inBlock = true;
192 $this->_blockEnd = ' ';
193 $parent->data[key($parent->data)] =
194 str_replace('>','',$parent->data[key($parent->data)]);
195 $parent->data[key($parent->data)] .= trim($line).' ';
196 $this->_allNodes[$node->parent]->children = false;
197 $this->_lastIndent = $node->indent;
198 } elseif ($chk === '|') {
199 $this->_inBlock = true;
200 $this->_blockEnd = "\n";
201 $parent->data[key($parent->data)] =
202 str_replace('|','',$parent->data[key($parent->data)]);
203 $parent->data[key($parent->data)] .= trim($line)."\n";
204 $this->_allNodes[$node->parent]->children = false;
205 $this->_lastIndent = $node->indent;
209 } elseif ($this->_lastIndent > $node->indent) {
210 // Any block we had going is dead now
211 if ($this->_inBlock === true) {
212 $this->_inBlock = false;
213 if ($this->_blockEnd = "\n") {
214 $last =& $this->_allNodes[$this->_lastNode];
215 $last->data[key($last->data)] =
216 trim($last->data[key($last->data)]);
220 // We don't know the parent of the node so we have to find it
221 // foreach ($this->_allNodes as $n) {
222 foreach ($this->_indentSort[$node->indent] as $n) {
223 if ($n->indent == $node->indent) {
224 $node->parent = $n->parent;
229 if ($this->_inBlock === false) {
230 // Set these properties with information from our current node
231 $this->_lastIndent = $node->indent;
232 // Set the last node
233 $this->_lastNode = $node->id;
234 // Parse the YAML line and return its data
235 $node->data = $this->_parseLine($line);
236 // Add the node to the master list
237 $this->_allNodes[$node->id] = $node;
238 // Add a reference to the node in an indent array
239 $this->_indentSort[$node->indent][] =& $this->_allNodes[$node->id];
240 // Add a reference to the node in a References array if this node
241 // has a YAML reference in it.
242 if (
243 ( (is_array($node->data)) &&
244 isset($node->data[key($node->data)]) &&
245 (!is_array($node->data[key($node->data)])) )
247 ( (preg_match('/^&([^ ]+)/',$node->data[key($node->data)]))
249 (preg_match('/^\*([^ ]+)/',$node->data[key($node->data)])) )
251 $this->_haveRefs[] =& $this->_allNodes[$node->id];
252 } elseif (
253 ( (is_array($node->data)) &&
254 isset($node->data[key($node->data)]) &&
255 (is_array($node->data[key($node->data)])) )
257 // Incomplete reference making code. Ugly, needs cleaned up.
258 foreach ($node->data[key($node->data)] as $d) {
259 if ( !is_array($d) &&
260 ( (preg_match('/^&([^ ]+)/',$d))
262 (preg_match('/^\*([^ ]+)/',$d)) )
264 $this->_haveRefs[] =& $this->_allNodes[$node->id];
271 unset($node);
273 // Here we travel through node-space and pick out references (& and *)
274 $this->_linkReferences();
276 // Build the PHP array out of node-space
277 $trunk = $this->_buildArray();
278 return $trunk;
282 * Dump PHP array to YAML
284 * The dump method, when supplied with an array, will do its best
285 * to convert the array into friendly YAML. Pretty simple. Feel free to
286 * save the returned string as tasteful.yml and pass it around.
288 * Oh, and you can decide how big the indent is and what the wordwrap
289 * for folding is. Pretty cool -- just pass in 'false' for either if
290 * you want to use the default.
292 * Indent's default is 2 spaces, wordwrap's default is 40 characters. And
293 * you can turn off wordwrap by passing in 0.
295 * @access public
296 * @return string
297 * @param array $array PHP array
298 * @param int $indent Pass in false to use the default, which is 2
299 * @param int $wordwrap Pass in 0 for no wordwrap, false for default (40)
301 function dump($array,$indent = false,$wordwrap = false) {
302 // Dumps to some very clean YAML. We'll have to add some more features
303 // and options soon. And better support for folding.
305 // New features and options.
306 if ($indent === false or !is_numeric($indent)) {
307 $this->_dumpIndent = 2;
308 } else {
309 $this->_dumpIndent = $indent;
312 if ($wordwrap === false or !is_numeric($wordwrap)) {
313 $this->_dumpWordWrap = 40;
314 } else {
315 $this->_dumpWordWrap = $wordwrap;
318 // New YAML document
319 $string = "---\n";
321 // Start at the base of the array and move through it.
322 foreach ($array as $key => $value) {
323 $string .= $this->_yamlize($key,$value,0);
325 return $string;
328 /**** Private Properties ****/
330 /**#@+
331 * @access private
332 * @var mixed
334 var $_haveRefs;
335 var $_allNodes;
336 var $_lastIndent;
337 var $_lastNode;
338 var $_inBlock;
339 var $_isInline;
340 var $_dumpIndent;
341 var $_dumpWordWrap;
342 /**#@+*/
344 /**** Private Methods ****/
347 * Attempts to convert a key / value array item to YAML
348 * @access private
349 * @return string
350 * @param $key The name of the key
351 * @param $value The value of the item
352 * @param $indent The indent of the current node
354 function _yamlize($key,$value,$indent) {
355 if (is_array($value)) {
356 // It has children. What to do?
357 // Make it the right kind of item
358 $string = $this->_dumpNode($key,NULL,$indent);
359 // Add the indent
360 $indent += $this->_dumpIndent;
361 // Yamlize the array
362 $string .= $this->_yamlizeArray($value,$indent);
363 } elseif (!is_array($value)) {
364 // It doesn't have children. Yip.
365 $string = $this->_dumpNode($key,$value,$indent);
367 return $string;
371 * Attempts to convert an array to YAML
372 * @access private
373 * @return string
374 * @param $array The array you want to convert
375 * @param $indent The indent of the current level
377 function _yamlizeArray($array,$indent) {
378 if (is_array($array)) {
379 $string = '';
380 foreach ($array as $key => $value) {
381 $string .= $this->_yamlize($key,$value,$indent);
383 return $string;
384 } else {
385 return false;
390 * Returns YAML from a key and a value
391 * @access private
392 * @return string
393 * @param $key The name of the key
394 * @param $value The value of the item
395 * @param $indent The indent of the current node
397 function _dumpNode($key,$value,$indent) {
398 // do some folding here, for blocks
399 if (strpos($value,"\n")) {
400 $value = $this->_doLiteralBlock($value,$indent);
401 } else {
402 $value = $this->_doFolding($value,$indent);
405 $spaces = str_repeat(' ',$indent);
407 if (is_int($key)) {
408 // It's a sequence
409 $string = $spaces.'- '.$value."\n";
410 } else {
411 // It's mapped
412 $string = $spaces.$key.': '.$value."\n";
414 return $string;
418 * Creates a literal block for dumping
419 * @access private
420 * @return string
421 * @param $value
422 * @param $indent int The value of the indent
424 function _doLiteralBlock($value,$indent) {
425 $exploded = explode("\n",$value);
426 $newValue = '|';
427 $indent += $this->_dumpIndent;
428 $spaces = str_repeat(' ',$indent);
429 foreach ($exploded as $line) {
430 $newValue .= "\n" . $spaces . trim($line);
432 return $newValue;
436 * Folds a string of text, if necessary
437 * @access private
438 * @return string
439 * @param $value The string you wish to fold
441 function _doFolding($value,$indent) {
442 // Don't do anything if wordwrap is set to 0
443 if ($this->_dumpWordWrap === 0) {
444 return $value;
447 if (strlen($value) > $this->_dumpWordWrap) {
448 $indent += $this->_dumpIndent;
449 $indent = str_repeat(' ',$indent);
450 $wrapped = wordwrap($value,$this->_dumpWordWrap,"\n$indent");
451 $value = ">\n".$indent.$wrapped;
453 return $value;
456 /* Methods used in loading */
459 * Finds and returns the indentation of a YAML line
460 * @access private
461 * @return int
462 * @param string $line A line from the YAML file
464 function _getIndent($line) {
465 preg_match('/^\s{1,}/',$line,$match);
466 if (!empty($match[0])) {
467 $indent = substr_count($match[0],' ');
468 } else {
469 $indent = 0;
471 return $indent;
475 * Parses YAML code and returns an array for a node
476 * @access private
477 * @return array
478 * @param string $line A line from the YAML file
480 function _parseLine($line) {
481 $line = trim($line);
483 $array = array();
485 if (preg_match('/^-(.*):$/',$line)) {
486 // It's a mapped sequence
487 $key = trim(substr(substr($line,1),0,-1));
488 $array[$key] = '';
489 } elseif ($line[0] == '-' && substr($line,0,3) != '---') {
490 // It's a list item but not a new stream
491 if (strlen($line) > 1) {
492 $value = trim(substr($line,1));
493 // Set the type of the value. Int, string, etc
494 $value = $this->_toType($value);
495 $array[] = $value;
496 } else {
497 $array[] = array();
499 } elseif (preg_match('/^(.+):/',$line,$key)) {
500 // It's a key/value pair most likely
501 // If the key is in double quotes pull it out
502 if (preg_match('/^(["\'](.*)["\'](\s)*:)/',$line,$matches)) {
503 $value = trim(str_replace($matches[1],'',$line));
504 $key = $matches[2];
505 } else {
506 // Do some guesswork as to the key and the value
507 $explode = explode(':',$line);
508 $key = trim($explode[0]);
509 array_shift($explode);
510 $value = trim(implode(':',$explode));
513 // Set the type of the value. Int, string, etc
514 $value = $this->_toType($value);
515 if (empty($key)) {
516 $array[] = $value;
517 } else {
518 $array[$key] = $value;
521 return $array;
525 * Finds the type of the passed value, returns the value as the new type.
526 * @access private
527 * @param string $value
528 * @return mixed
530 function _toType($value) {
531 if (preg_match('/^("(.*)"|\'(.*)\')/',$value,$matches)) {
532 $value = (string)preg_replace('/(\'\'|\\\\\')/',"'",end($matches));
533 $value = preg_replace('/\\\\"/','"',$value);
534 } elseif (preg_match('/^\\[(.+)\\]$/',$value,$matches)) {
535 // Inline Sequence
537 // Take out strings sequences and mappings
538 $explode = $this->_inlineEscape($matches[1]);
540 // Propogate value array
541 $value = array();
542 foreach ($explode as $v) {
543 $value[] = $this->_toType($v);
545 } elseif (strpos($value,': ')!==false && !preg_match('/^{(.+)/',$value)) {
546 // It's a map
547 $array = explode(': ',$value);
548 $key = trim($array[0]);
549 array_shift($array);
550 $value = trim(implode(': ',$array));
551 $value = $this->_toType($value);
552 $value = array($key => $value);
553 } elseif (preg_match("/{(.+)}$/",$value,$matches)) {
554 // Inline Mapping
556 // Take out strings sequences and mappings
557 $explode = $this->_inlineEscape($matches[1]);
559 // Propogate value array
560 $array = array();
561 foreach ($explode as $v) {
562 $array = $array + $this->_toType($v);
564 $value = $array;
565 } elseif (strtolower($value) == 'null' or $value == '' or $value == '~') {
566 $value = NULL;
567 } elseif (ctype_digit($value)) {
568 $value = (int)$value;
569 } elseif (in_array(strtolower($value),
570 array('true', 'on', '+', 'yes', 'y'))) {
571 $value = TRUE;
572 } elseif (in_array(strtolower($value),
573 array('false', 'off', '-', 'no', 'n'))) {
574 $value = FALSE;
575 } elseif (is_numeric($value)) {
576 $value = (float)$value;
577 } else {
578 // Just a normal string, right?
579 $value = trim(preg_replace('/#(.+)$/','',$value));
582 return $value;
586 * Used in inlines to check for more inlines or quoted strings
587 * @access private
588 * @return array
590 function _inlineEscape($inline) {
591 // There's gotta be a cleaner way to do this...
592 // While pure sequences seem to be nesting just fine,
593 // pure mappings and mappings with sequences inside can't go very
594 // deep. This needs to be fixed.
596 // Check for strings
597 $regex = '/(?:(")|(?:\'))((?(1)[^"]+|[^\']+))(?(1)"|\')/';
598 if (preg_match_all($regex,$inline,$strings)) {
599 $strings = $strings[2];
600 $inline = preg_replace($regex,'YAMLString',$inline);
602 unset($regex);
604 // Check for sequences
605 if (preg_match_all('/\[(.+)\]/U',$inline,$seqs)) {
606 $inline = preg_replace('/\[(.+)\]/U','YAMLSeq',$inline);
607 $seqs = $seqs[0];
610 // Check for mappings
611 if (preg_match_all('/{(.+)}/U',$inline,$maps)) {
612 $inline = preg_replace('/{(.+)}/U','YAMLMap',$inline);
613 $maps = $maps[0];
616 $explode = explode(', ',$inline);
618 // Re-add the strings
619 if (!empty($strings)) {
620 $i = 0;
621 foreach ($explode as $key => $value) {
622 if ($value == 'YAMLString') {
623 $explode[$key] = $strings[$i];
624 ++$i;
629 // Re-add the sequences
630 if (!empty($seqs)) {
631 $i = 0;
632 foreach ($explode as $key => $value) {
633 if (strpos($value,'YAMLSeq') !== false) {
634 $explode[$key] = str_replace('YAMLSeq',$seqs[$i],$value);
635 ++$i;
640 // Re-add the mappings
641 if (!empty($maps)) {
642 $i = 0;
643 foreach ($explode as $key => $value) {
644 if (strpos($value,'YAMLMap') !== false) {
645 $explode[$key] = str_replace('YAMLMap',$maps[$i],$value);
646 ++$i;
651 return $explode;
655 * Builds the PHP array from all the YAML nodes we've gathered
656 * @access private
657 * @return array
659 function _buildArray() {
660 $trunk = array();
662 if (!isset($this->_indentSort[0])) {
663 return $trunk;
666 foreach ($this->_indentSort[0] as $n) {
667 if (empty($n->parent)) {
668 $this->_nodeArrayizeData($n);
669 // Check for references and copy the needed data to complete them.
670 $this->_makeReferences($n);
671 // Merge our data with the big array we're building
672 $trunk = $this->_array_kmerge($trunk,$n->data);
676 return $trunk;
680 * Traverses node-space and sets references (& and *) accordingly
681 * @access private
682 * @return bool
684 function _linkReferences() {
685 if (is_array($this->_haveRefs)) {
686 foreach ($this->_haveRefs as $node) {
687 if (!empty($node->data)) {
688 $key = key($node->data);
689 // If it's an array, don't check.
690 if (is_array($node->data[$key])) {
691 foreach ($node->data[$key] as $k => $v) {
692 $this->_linkRef($node,$key,$k,$v);
694 } else {
695 $this->_linkRef($node,$key);
700 return true;
703 function _linkRef(&$n,$key,$k = NULL,$v = NULL) {
704 if (empty($k) && empty($v)) {
705 // Look for &refs
706 if (preg_match('/^&([^ ]+)/',$n->data[$key],$matches)) {
707 // Flag the node so we know it's a reference
708 $this->_allNodes[$n->id]->ref = substr($matches[0],1);
709 $this->_allNodes[$n->id]->data[$key] =
710 substr($n->data[$key],strlen($matches[0])+1);
711 // Look for *refs
712 } elseif (preg_match('/^\*([^ ]+)/',$n->data[$key],$matches)) {
713 $ref = substr($matches[0],1);
714 // Flag the node as having a reference
715 $this->_allNodes[$n->id]->refKey = $ref;
717 } elseif (!empty($k) && !empty($v)) {
718 if (preg_match('/^&([^ ]+)/',$v,$matches)) {
719 // Flag the node so we know it's a reference
720 $this->_allNodes[$n->id]->ref = substr($matches[0],1);
721 $this->_allNodes[$n->id]->data[$key][$k] =
722 substr($v,strlen($matches[0])+1);
723 // Look for *refs
724 } elseif (preg_match('/^\*([^ ]+)/',$v,$matches)) {
725 $ref = substr($matches[0],1);
726 // Flag the node as having a reference
727 $this->_allNodes[$n->id]->refKey = $ref;
733 * Finds the children of a node and aids in the building of the PHP array
734 * @access private
735 * @param int $nid The id of the node whose children we're gathering
736 * @return array
738 function _gatherChildren($nid) {
739 $return = array();
740 $node =& $this->_allNodes[$nid];
741 foreach ($this->_allNodes as $z) {
742 if ($z->parent == $node->id) {
743 // We found a child
744 $this->_nodeArrayizeData($z);
745 // Check for references
746 $this->_makeReferences($z);
747 // Merge with the big array we're returning
748 // The big array being all the data of the children of our parent node
749 $return = $this->_array_kmerge($return,$z->data);
752 return $return;
756 * Turns a node's data and its children's data into a PHP array
758 * @access private
759 * @param array $node The node which you want to arrayize
760 * @return boolean
762 function _nodeArrayizeData(&$node) {
763 if (is_array($node->data) && $node->children == true) {
764 // This node has children, so we need to find them
765 $childs = $this->_gatherChildren($node->id);
766 // We've gathered all our children's data and are ready to use it
767 $key = key($node->data);
768 $key = empty($key) ? 0 : $key;
769 // If it's an array, add to it of course
770 if (is_array($node->data[$key])) {
771 $node->data[$key] = $this->_array_kmerge($node->data[$key],$childs);
772 } else {
773 $node->data[$key] = $childs;
775 } elseif (!is_array($node->data) && $node->children == true) {
776 // Same as above, find the children of this node
777 $childs = $this->_gatherChildren($node->id);
778 $node->data = array();
779 $node->data[] = $childs;
782 // We edited $node by reference, so just return true
783 return true;
787 * Traverses node-space and copies references to / from this object.
788 * @access private
789 * @param object $z A node whose references we wish to make real
790 * @return bool
792 function _makeReferences(&$z) {
793 // It is a reference
794 if (isset($z->ref)) {
795 $key = key($z->data);
796 // Copy the data to this object for easy retrieval later
797 $this->ref[$z->ref] =& $z->data[$key];
798 // It has a reference
799 } elseif (isset($z->refKey)) {
800 if (isset($this->ref[$z->refKey])) {
801 $key = key($z->data);
802 // Copy the data from this object to make the node a real reference
803 $z->data[$key] =& $this->ref[$z->refKey];
806 return true;
811 * Merges arrays and maintains numeric keys.
813 * An ever-so-slightly modified version of the array_kmerge() function posted
814 * to php.net by mail at nospam dot iaindooley dot com on 2004-04-08.
816 * http://us3.php.net/manual/en/function.array-merge.php#41394
818 * @access private
819 * @param array $arr1
820 * @param array $arr2
821 * @return array
823 function _array_kmerge($arr1,$arr2) {
824 if(!is_array($arr1))
825 $arr1 = array();
827 if(!is_array($arr2))
828 $arr2 = array();
830 $keys1 = array_keys($arr1);
831 $keys2 = array_keys($arr2);
832 $keys = array_merge($keys1,$keys2);
833 $vals1 = array_values($arr1);
834 $vals2 = array_values($arr2);
835 $vals = array_merge($vals1,$vals2);
836 $ret = array();
838 foreach($keys as $key) {
839 list($unused,$val) = each($vals);
840 // This is the good part! If a key already exists, but it's part of a
841 // sequence (an int), just keep addin numbers until we find a fresh one.
842 if (isset($ret[$key]) and is_int($key)) {
843 while (array_key_exists($key, $ret)) {
844 $key++;
847 $ret[$key] = $val;
850 return $ret;