PHP允許您包括文件,以便頁面內容可以重複使用。
兩種方法在PHP中包括文件:
include
require
兩種方法在PHP中包括文件:
include
require
包括文件的優點
代碼重用性:可以在許多PHP腳本中重複使用HTML代碼或PHP腳本。
代碼重用性:可以在許多PHP腳本中重複使用HTML代碼或PHP腳本。
文件: menu1.html<head>
<meta charset="utf-8" />
<title>html菜單示例</title>
</head>
<a href="https://JimmyKenny.blogspot.com">蕃薯家的生活</a> |
<a href="https://50air.blogspot.com/">50新空域</a> |
<a href="https://sites.google.com/view/yellowcat">黃子貓工作室 (雲端主頁)</a> |
<a href="https://dyhms.blogspot.com/">黃子貓工作室 (部落格)</a>
文件: include1.php
<?php include("menu1.html"); ?>
<h1>這是主菜單(include)</h1>
include VS require 差異在於: 文件丟失時的處理方式
include語句允許腳本繼續
require語句暫停腳本產生致命的E_COMPILE_ERROR級別錯誤。
沒有留言:
張貼留言