Laravel框架中扩展函数、扩展自定义类的方法_PHP
Laravel
一、扩展自己的类
在app/ 下建立目录 libraries\class
然后myTest.php 类名格式 驼峰 myTest
代码如下:
class myTest
{
public function test()
{
return '1asdasd111';
}
}
在 app/start/global.php
代码如下:
ClassLoader::addDirectories(array(
app_path().'/commands',
app_path().'/controllers',
app_path().'/models',
app_path().'/database/seeds',
app_path().'/libraries/class', //增加这一段
));
用 make 载入
代码如下:
class HomeController extends BaseController {
protected $layout = 'layouts.main';
public function index()
{
$a = App::make('mytest'); // 用法
echo $a->test();
}
}
二、扩展自己的函数
在app/ 下建立目录 libraries\function
建立helper.php
函数格式,如下用function_exists,防止与系统重名
代码如下:
if (! function_exists('test2'))
{
function test2()
{
echo 2222222222222222;
}
}
方法一:
在 app/filters.php
代码如下:
App::before(function($request)
{
require app_path().'/libraries/function/helper.php'; //载入 自定义函数
});
方法二:
在app/bootstrap/autolad.php
代码如下:
require __DIR__.'/../app/functions.php'; // 引入自定义函数库
我感觉方法一会比较好。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use model events (ModelEvents) in Laravel framework Laravel framework provides many powerful features, one of which is model events (ModelEvents). Model events are a feature used in Laravel's EloquentORM (Object Relational Mapping) that allows developers to execute custom code when a specific action occurs on the model. In this article, we will explore how to use model events in the Laravel framework and provide a

How to extend the functionality of classes through Attributes in PHP8? In PHP8, a new feature was introduced - Attributes, also known as attributes. It can add metadata to entities such as classes, class properties, methods, and functions, and these metadata can be accessed and used at runtime. Attributes provide a concise and flexible way to extend the functionality of classes and help developers better organize and understand code. In order to better understand and apply Attributes, the following

PHP extension functions are additional functions beyond the core components that extend the functionality of PHP. After installing extension functions, enable them in php.ini and then use extension functions such as the Imagick extension for processing images. You can install extensions using the command line (PECL), the extensions folder, or Composer, and then use the extension functions in your code via namespaces.

How to use the task scheduler (TaskScheduler) to execute scheduled tasks in the Laravel framework. With the development of web applications, scheduled tasks play a crucial role in many scenarios. The Laravel framework provides a powerful task scheduler (TaskScheduler) function that can easily perform various scheduled tasks, such as generating reports, cleaning caches, sending emails, etc. This article will introduce how to use the task scheduler to execute scheduled tasks in the Laravel framework.

With the rapid development of the Internet, Web applications are playing an increasingly important role in our lives. For developers, how to use efficient tools and frameworks to develop web applications is crucial. The Laravel framework is undoubtedly one of the efficient choices. This article will introduce the basic concepts and uses of the Laravel framework to help you quickly develop efficient web applications. 1. Basic concepts of the Laravel framework The Laravel framework is an open source web application framework based on the PHP language. it

How to use Attributes to extend the functionality of a class in PHP8? With the release of PHP8, new language features Attributes were introduced. Attributes is a feature that adds metadata in the form of annotations in the code. By using Attributes, we can add additional information to elements such as classes, methods, properties, etc. to meet more complex business requirements and development specifications. In this article, we will detail using the Attributes extension in PHP8

How to use the queue (Queue) function in the Laravel framework Introduction: Queue (Queue) is a common asynchronous processing mechanism that plays an important role in web development. The Laravel framework provides powerful queue functions that can easily handle various background tasks, such as sending emails, generating reports, processing big data, etc. This article will introduce how to use the queue function in the Laravel framework, including queue configuration, task definition and execution, etc., and give corresponding code examples. 1. Configure the queue in

ThinkPHP6 is a very popular PHP development framework that provides many modern features and tools so that developers can build Web applications more efficiently. One very powerful feature is custom function libraries, which allow reused code to be encapsulated in a function library, making development and maintenance easier and faster. This article will introduce how you can extend ThinkPHP6 with a custom function library. Create a custom function library First, we need to create a custom function library. in Think
