我想知道是否可以在PHP中使用兩個變量的值之間的替代。在PHP中的兩個變量的值之間進行替換
我可以更好地解釋:
<?php
$a = "Cat";
$b = "Dog";
// The strange/non-existent function I am talking about //
MakeSubstitution($a, $b);
// After this (non-existent) function the values of the variables should be:
// $a = "Dog"
// $b = "Cat"
?>
所以,它存在嗎?我進行了搜索,但沒有找到任何結果。 在此先感謝。
'function MakeSubstitution($ a,$ b){$ t = $ a; $ a = $ b; $ b = $ a}'。完成了嗎? – 2013-03-06 13:27:42
你想交換兩個變量的值嗎?這是什麼用例?編寫你自己的方法(看看上面的Brad Christie - 不要忘記接受變量作爲參考,如果你想修改它們)在調用者的範圍內 – 2013-03-06 13:28:01
你真的期待一個函數來處理這樣一個小問題嗎?男人,等到事情變得複雜,你必須編寫自己的200多行算法。 – Shoe 2013-03-06 13:30:35