📄 04c04-1.php
字号:
<?php// Create a variable$pet = 'Wiley';// Now create a reference to it:$petref = &$pet;// Echo out the value of $pet : 'Wiley'echo "<p>{$pet}</p>";// Now change the value via the reference$petref = 'Mimi-ow';// And echo it out again : 'Mimi-ow'echo "<p>{$pet}</p>";?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -