PHP 8.5.0 Beta 1 available for testing

Voting

: three plus zero?
(Example: nine)

The Note You're Voting On

frowa at foxmail dot com
4 years ago
it's my way to remember.

<?php

// the var $a is point to the value 1, as a line connect to value 1
$a = 1;

// the var $b point to the value which the var $a point to, as a new line connect to value 1
$b =& $a;

// cut the line of the var $a to value 1,now $a is freedom,it's nothing point to. so the value of $a is null
unset($a);
?>

$a--------> 1

|
|
$b

<< Back to user notes page

To Top