How to get the N element of an associative array in PHP

1 Answer

0 votes
$arr = array("php"=>"99", "c"=>"108", "c++"=>"31", "python"=>"21", "java"=>"80");

$N = 3;

echo array_keys($arr)[$N] . "\n"; 
echo array_values($arr)[$N]; 





/*
run:

python
21

*/

 



answered Jun 27, 2022 by avibootz

Related questions

...