Voting

: max(eight, five)?
(Example: nine)

The Note You're Voting On

webmaster at redinfo dot co dot kr
5 years ago
// if : php ver < 7
// array_key_last

$arr = array('1'=>'bear1','2'=>array('22'=>'bear22'),'3'=>'bear3');
echo end(array_keys($arr));

// result : 3

<< Back to user notes page

To Top