Home> php教程> PHP开发> body text

Methods to extend functions and extend custom classes in the Laravel framework

高洛峰
Release: 2016-12-27 10:47:06
Original
1340 people have browsed it

1. Expand your own class

Create the directory librariesclass under app/

Then the myTest.php class name format is camel case myTest


        
Copy after login

in app/start/global .php

ClassLoader::addDirectories(array( app_path().'/commands', app_path().'/controllers', app_path().'/models', app_path().'/database/seeds', app_path().'/libraries/class', //增加这一段 ));
Copy after login

Use make to load

test(); } }
Copy after login

2. Expand your own functions

Create a directory under app/ librariesfunction

Create helper.php

Function format, use function_exists as follows to prevent duplicate names with the system

if (! function_exists('test2')) { function test2() { echo 2222222222222222; } }
Copy after login

Method one:

In app/filters.php

App::before(function($request) { require app_path().'/libraries/function/helper.php'; //载入 自定义函数 });
Copy after login

Method two:

In app/bootstrap/autolad.php

require __DIR__.'/../app/functions.php'; // 引入自定义函数库
Copy after login

I think the first method is better.

For more related articles on extension functions and methods of extending custom classes in the Laravel framework, please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!