Assigning Array Values : Array Element « Data Structure « PHP
- PHP
- Data Structure
- Array Element
Assigning Array Values
<?php
function assign_key() {
return 'd';
}
$foo['a'] = 1;
$foo['b'] = 2;
$foo['c'] = 3;
$foo[assign_key()] = 4; /* Assigned the key value 'd' */
?>
Related examples in the same category