Source Code:
(back to article)
<?php $fruits = ["Apfel", "Banane"]; if (in_array("Apfel", $fruits)) { echo "Apfel existiert im Array"; } else { echo "Apfel existiert nicht im Array"; }
Result:
Report an issue