PHP 不使用第三个变量实现交换两个变量的值
2021-06-06 01:03
标签:异或 list substr str span 实现 strong lis echo //字符串版本 PHP 不使用第三个变量实现交换两个变量的值 标签:异或 list substr str span 实现 strong lis echo 原文地址:http://www.cnblogs.com/llkbk/p/7340765.html
结合使用substr,strlen两个方法实现
$a="a";
$b="b";
echo ‘交换前 $a:‘.$a.‘,$b:‘.$b.‘
‘;
$a.=$b;
$b=substr($a,0,(strlen($a)-strlen($b)));
$a=substr($a, strlen($b));
echo ‘交换后$a:‘.$a.‘,$b:‘.$b.‘
‘;
echo ‘-----------------------
‘;
//字符串版本 使用str_replace方法实现
$a="a";
$b="b";
echo ‘交换前 $a:‘.$a.‘,$b:‘.$b.‘
‘;
$a.=$b;
$b=str_replace($b, "", $a);
$a=str_replace($b, "", $a);
echo ‘交换后$a:‘.$a.‘,$b:‘.$b.‘
‘;
echo ‘-----------------------
‘;
//字符串版本 结合使用list方法和array实现
$a="a";
$b="b";
echo ‘交换前 $a:‘.$a.‘,$b:‘.$b.‘
‘;
list($b,$a)=array($a,$b);
echo ‘交换后$a:‘.$a.‘,$b:‘.$b.‘
‘;
echo ‘-----------------------
‘;
//字符串和数字都适用 使用异或运算
$a=‘a‘;
$b=‘b‘;
echo ‘交换前 $a:‘.$a.‘,$b:‘.$b.‘
‘;
$a=$a^$b;
$b=$b^$a;
$a=$a^$b;
echo ‘交换后$a:‘.$a.‘,$b:‘.$b.‘
‘;
echo ‘-----------------------
‘;
//只适用于数字
$a=3;
$b=5;
echo ‘交换前 $a:‘.$a.‘,$b:‘.$b.‘
‘;
$a=$a+$b;
$b=$a-$b;
$a=$a-$b;
echo ‘交换后$a:‘.$a.‘,$b:‘.$b.‘
‘;
文章标题:PHP 不使用第三个变量实现交换两个变量的值
文章链接:http://soscw.com/index.php/essay/91052.html