include_once
是 PHP 語言中的一個內置函數,用于在當前腳本中包含指定的文件僅一次
下面是一個簡單的示例來說明如何使用 include_once
:
header.php
的文件,其中包含一些通用的 HTML 頭部信息:<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
content.php
的文件,其中包含一些頁面內容:<h1>Welcome to my website!</h1>
<p>This is some content.</p>
index.php
)中使用 include_once
來包含 header.php
和 content.php
文件:<?php
include_once 'header.php';
include_once 'content.php';
?>
</body>
</html>
在這個例子中,header.php
和 content.php
文件只會被包含一次,即使 index.php
腳本被多次調用。這有助于避免因多次包含相同文件而導致的潛在問題,例如函數重定義或變量重復聲明。