Files
php_8/classes/links.php
2022-04-10 18:52:14 +03:00

6 lines
68 B
PHP

<?php
$first = 5;
$second = &$first;
$second = 1;
echo $first; // 1