/ Published in: PHP
Expand |
Embed | Plain Text
<?php function swap(&$a, &$b) { $t = $b; $b = $a; $a = $t; } $hello = "world!"; $world = "Hello, "; swap($world, $hello);
You need to login to post a comment.
<?php function swap(&$a, &$b) { $t = $b; $b = $a; $a = $t; } $hello = "world!"; $world = "Hello, "; swap($world, $hello);
You need to login to post a comment.