This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Incam_SGD/tests/phpcompat/array_combine.php

12 lines
180 B
PHP
Raw Permalink Normal View History

<?php
require_once("../../config/dmsDefaults.php");
$a = array('green', 'red', 'yellow');
$b = array('avocado', 'apple', 'banana');
$c = array_combine($a, $b);
print_r($c);
?>