I have an PHP array that looks something like this:
Index Key Value [0] 1 Awaiting for Confirmation [1]
Try this:
$keys = array_keys($array, "Completed");
/edit As mentioned by JohnP, this method only works for non-nested arrays.