mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-10 03:01:01 +00:00
5 lines
190 B
PHP
5 lines
190 B
PHP
<?php
|
|
$hundred = 100;
|
|
if ($hundred == 1) echo 'хм, странно... переменная равна 1!<br />';
|
|
if ($hundred == true) echo 'переменная истинна!<br />';
|