泛小栈
Home
About
Apr 15, 2020
PHP交换两个值
$a = 1; $b = 2; list($a, $b) = array($b, $a); [$a, $b] = [$b, $a];
fyn