?? create_table.php
字號:
<?phpfunction create_table($data){ echo '<table border = 1>'; reset($data); // Remember this is used to point to the beginning $value = current($data); while ($value) { echo "<tr><td>$value</td></tr>\n"; $value = next($data); } echo '</table>';}$my_array = array('Line one.','Line two.','Line three.');create_table($my_array);?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -