要調用自定義函數,首先需要定義函數并保存在一個PHP文件中。然后在另一個PHP文件中使用include或require語句引入包含自定義函數的文件,然后直接調用函數即可。
例如,假設我們有一個名為functions.php的文件,其中定義了一個名為myFunction的自定義函數:
// functions.php
function myFunction() {
echo "Hello, this is a custom function!";
}
然后在另一個PHP文件中引入functions.php文件并調用myFunction函數:
// index.php
include 'functions.php';
// 調用自定義函數
myFunction();
當運行index.php文件時,會輸出:Hello, this is a custom function!