<!DOCTYPE html>
<html>
<body>
<pre>
<?php
$cars = array("Volvo", "BMW", "Tesla");
foreach ($cars as &$x) {
$x = "Ford";
}
unset($x);
var_dump($cars);
?>
</pre>
</body>
</html>