在 PHP 中,init()
函數通常用于在腳本開始時執行一些初始化操作
config.php
的文件,用于存儲配置信息。例如:<?php
// config.php
// 數據庫配置
define('DB_HOST', 'localhost');
define('DB_USER', 'username');
define('DB_PASS', 'password');
define('DB_NAME', 'database_name');
// 其他配置
define('SITE_URL', 'http://example.com');
define('SECRET_KEY', 'your_secret_key');
require_once
或 include_once
語句引入 config.php
文件。例如,在 index.php
文件中:<?php
// index.php
require_once 'config.php';
// 你的代碼
config.php
文件中,你可以定義一些常量或全局變量,然后在其他 PHP 腳本中使用它們。例如,在 functions.php
文件中:<?php
// functions.php
function connect_db()
{
$conn = new mysqli(DB_HOST, DB_USER, DB_PASS, DB_NAME);
if ($conn->connect_error) {
die("連接失敗: " . $conn->connect_error);
}
return $conn;
}
init()
函數來執行一些初始化操作。例如,在 index.php
文件中:<?php
// index.php
function init()
{
// 在這里執行初始化操作
}
init();
// 你的代碼
請注意,init()
函數并不是 PHP 的內置函數。你可以根據需要自定義 init()
函數,并在需要時調用它。在上面的示例中,我們將 init()
函數用于執行初始化操作,但你可以根據需要修改它。