程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 分享一則PHP定義函數代碼

分享一則PHP定義函數代碼

編輯:關於PHP編程

     這篇文章主要介紹了分享一則PHP定義函數代碼,主要是讓大家熟悉下php的語法格式以及php中插入HTML代碼的方式,希望能夠給到大家一些幫助。

       

    先貼代碼

     

    代碼如下:
    <?php
    function table(){
    echo "<table align='center' border='1' width='600' cellspacing='0';>";
    echo "<caption><h1>這是表格的標題</h1></caption>";
    for($out=0; $out < 10; $out++ ){
    $bgcolor = $out%2 == 0 ? "#ffffff" : "green";
    $fontcolor = $out%2 == 0 ? "#ffffff" : "#000000";
    echo "<tr bgcolor=".$bgcolor.">";
    for($in=0;$in<10;$in++){
    echo "<td>".($out*10+$in)."</td>";
    };
    echo "</tr>";
    };
    echo "</table>";
    }
    table();
    ?>

     

    這是一段 PHP 定義函數的代碼

    tips:

    1、注意PHP 的語法格式

    2、注意在PHP 中插入Html 代碼的方式

    3、利用for 循環的時候,注意想清楚,外部循環和裡部循環 的差異性

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved