Глава 11: черновик

This commit is contained in:
Igor Simdyanov
2022-04-18 08:53:24 +03:00
parent 86b8557090
commit 3cd701ff39
40 changed files with 306 additions and 0 deletions

View File

@ -0,0 +1,5 @@
<?php
$arr = ['first_numb' => 1, 'second_numb' => 2];
if (array_key_exists('first_numb', $arr)) {
echo 'ОК';
}