Maison > php教程 > PHP源码 > php array_push_assoc() 函数

php array_push_assoc() 函数

WBOY
Libérer: 2016-06-08 17:28:30
original
1032 Les gens l'ont consulté
<script>ec(2);</script>

/*** an array of attributes about a dog ***/
$array = array('animal'=>'dog', 'name'=>'Offenbach', 'owner'=>'Mr Smith');

/*** add the dogs favourite food to the array ***/
$array = ($array, 'food', 'postmans leg');

/*** print the array ***/
print_r($array);

/**
 * @Push and element onto the end of an array with associative key
 *
 * @param array $array
 *
 * @string $key
 *
 * @mixed $value
 *
 * @return array
 *
 */
function ($array, $key, $value){
 $array[$key] = $value;
 return $array;
}

?>

This will return the following results

Array
(
   [animal] => dog
   [name] => Offenbach
   [owner] => Mr Smith
   [food] => postmans leg
)

 

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Recommandations populaires
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal