![]() |
|
|||||||
![]() |
|
|
Thread Tools | Display Modes |
|
#1
IP: 180.125.109.50
|
|||
|
|||
|
Code:
<?php
//array_values(): 取出数组的值,行成索引数组
$lamp=array("os"=>"linux","webserver"=>"apache","db"=>"mysql","language"=>"php");
$arr=array_values($lamp);
echo '<pre>';
print_r($arr);
echo '</pre>';
list($os,$wb,$db,$lang)=$arr;
echo $os."<br>";
echo $wb."<br>";
echo $db."<br>";
echo $lang."<br>";
按几下 ESC 确认当前处在 Normal 模式下, 然后按 yy , 即可将当前行复制到默认寄存器中 (相当于剪贴板) 。 然后按下 4p , VIM 将执行粘贴动作 12 次, 屏幕上出现了 13 行这样的字符: echo $os."<br>"; echo $os."<br>"; echo $os."<br>"; echo $os."<br>"; |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|