运行 ❯
获取您自己的
PHP
服务器
×
更改方向
更换主题、深色/浅色
转到 Spaces
<!DOCTYPE html> <html> <body> <pre> <?php $cars = array("Volvo", "BMW", "Toyota"); foreach ($cars as &$x) { $x = "Ford"; } $x = "ice cream"; var_dump($cars); ?> </pre> </body> </html>
array(3) { [0]=> string(4) "Ford" [1]=> string(4) "Ford" [2]=> &string(9) "ice cream" }