zoukankan      html  css  js  c++  java
  • How to use external classes and PHP files in Laravel Controller?

     

    Laravel is an MVC framework with its own folder structure, but sometimes we want to use something external which doesn’t follow the same structure. Let’s review two different scenarios – when we have external class and when it’s just a .php file.

    Let’s say we have a simple example, a PagesController.php file like this:

    Pretty simple, right? Now, let’s say we want to have our product prices on the homepage, but they come from some kind of external class or PHP file.

    Use an external class in Controller

    Let’s say we have a simple class to define the prices:

    Now, where to put this class and how to use it? A couple of steps here:

    1. You can put a class itself anywhere you want within App folder

    By default, Laravel offers you some folders there like Providers, but I personally prefer to create a separate one – like AppLibraries, AppClasses or AppServices. Or you can call it your own application – AppMyApp. This is totally your choice.

    So, in this example, let’s save the class as AppClassesPricesClass.php.

    2. Namespace within the file

    Now we have to tell Laravel what is the namespace of this new file – it’s the same as the folder:

    3. Use the class in your Controller

    Let’s get back to our PagesController.php – here we have to add use statement for that external class, and then we’re free to use it! Like this:

    That’s it, nothing more complicated than that.

    Have you tried our tool to generate Laravel adminpanel without a line of code?
    Go to QuickAdminPanel.com

    Use an external PHP file in Controller

    Another case – it’s not always an OOP file that we want to use. For some cases it’s just a list of functions. Of course, we can wrap them in a class as well, but not always. So, how to use the same function, if we just have a prices.php file like this:

    And that’s it – no class, no namespace, nothing.
    Let’s place our function as app/functions/prices.php file. Then – we have three differentways of include it:

    1. Just include the class with PHP functions like include() or require() – and don’t forget app_path() function:

    Note that you still need a slash symbol before the folder functions.
    You can read more about app_path() and other Helper functions in the official documentation.

    2. In composer.json file you just add needed files in “autoload” section – in a new entry called “files”:
    (thanks for this suggestion to the commenters Joseph and Hisham)

    This way you don’t need to use any include() functions anywhere within your controllers – just use the functions straight away.

    3. Autoload the whole folder in composer.json
    (thanks to YOzaz for pointing this out in comments)

    Another way is just autoload the folder with that file – so you would place any similar external “helpers” in that folder, and that would be included in the future. In this case – add this folder in array or “classmap”:

    Choose this option if you want those files to be included in a manner of “set it and forget it”.

    Notice: if you make these changes to composer.json file, don’t forget to run composer dump-autoload for changes to take effect.

    Check out my new online course: Laravel Eloquent: Expert Level 
  • 相关阅读:
    Building Apache Thrift on CentOS 6.5
    ToStringBuilder 学习
    对List中对象的去重
    MyEclipse启动Tomcat服务器时老是跳到Debug调试上
    JS 实现点击展开菜单
    详解公钥、私钥、数字证书的概念 转载
    eclipse svn 忽略 target目录 等等... 我用的后边的方法 (转载)
    Log4j XML 配置
    JS完成改变新闻字体大中小的显示
    Javascript 简单学习
  • 原文地址:https://www.cnblogs.com/mouseleo/p/9979418.html
Copyright © 2011-2022 走看看