mirror of
https://github.com/igorsimdyanov/php8.git
synced 2026-01-14 03:00:06 +00:00
5 lines
59 B
PHP
5 lines
59 B
PHP
<?php
|
|
$first = $second = 1;
|
|
$first = 3;
|
|
echo $second; // 1
|