add in_array
This commit is contained in:
parent
b0dc89a18e
commit
909cd73762
@ -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
10
PHP/in_array.php
Normal 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");
|
||||
}
|
||||
?>
|
Loading…
Reference in New Issue
Block a user