Logo white

Peter M. Groen / knowledgetree

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • knowledgetree
  • tests
  • phpcompat
  • array_combine.php
  • Test for phpcompat's array_combine ...
    0edba664
    
    git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@3492 c91229c3-7414-0410-bfa2-8a42b809f60b
    nbm authored
    2005-07-30 14:48:22 +0000  
    Browse Code ยป
array_combine.php 180 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
<?php

require_once("../../config/dmsDefaults.php");

$a = array('green', 'red', 'yellow');
$b = array('avocado', 'apple', 'banana');
$c = array_combine($a, $b);

print_r($c);

?>