Escribimos:
$info = ['Pera', 'Manzana', 'Cambur'];
if (array_key_exists(2, $info))
{
echo "Si existe el índice buscado";
}
else
{
echo "No existe el índice buscado";
}
Fuente:
http://www.hep.by/gnu/php-doc/php_manual_es/function.array-key-exists.html
.