document.php
<?php
if (!function_exists('document')) {
function document($text = '') {
return $text;
}
}
建立一個 helpers.php 檔案,讓我們假設它現在生活在 app/Helpers/document.php
中。你可以在一個檔案中放置許多幫助程式(這是 Laravel 的工作方式),或者你可以按名稱拆分它們。
<?php
if (!function_exists('document')) {
function document($text = '') {
return $text;
}
}
建立一個 helpers.php 檔案,讓我們假設它現在生活在 app/Helpers/document.php
中。你可以在一個檔案中放置許多幫助程式(這是 Laravel 的工作方式),或者你可以按名稱拆分它們。