Files
nssheung/School-Management-System/_hidden/scratch/helloworld_in_array.php
louiscklaw 6da7dca3e7 update,
2025-02-01 02:04:37 +08:00

11 lines
136 B
PHP

<?php
$a = [1,2,3,4,5];
if (in_array(1, $a)){
echo 'helloworld 1';
}
if (in_array(10, $a)){
echo 'helloworld 10';
}