add in_array

This commit is contained in:
Alexander Popov 2022-04-02 16:57:55 +03:00
parent b0dc89a18e
commit 909cd73762
Signed by: iiiypuk
GPG Key ID: 3F76816AEE08F908
2 changed files with 12 additions and 1 deletions

View File

@ -1,7 +1,8 @@
# PHP
## std
- [`gettype`](gettype.php) - Get the type of a variable
- [`gettype`](gettype.php) - Возвращает тип переменной
- [`in_array`](in_array.php) - Проверяет, присутствует ли значение в массиве
- [`SQLite3`](sqlite3.php) - Простой использования класса SQLite3
## Libs

10
PHP/in_array.php Normal file
View File

@ -0,0 +1,10 @@
<?php
$os = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $os)) {
echo("Got Irix");
}
if (in_array("mac", $os)) {
echo("Got mac");
}
?>