For example, I'm currently doing this:
foreach ($ myArray as $ key => $ unused) { // use $ key here }
Is there a way to do this without specifying $ unused value?
<?php foreach(array_keys($myArray) as $key) {}
API