Laravel 5 Helper功能

时间:2015-05-29 06:07:48

标签: laravel-5

有没有人知道源代码在内置的Laravel 5辅助函数中的位置,如view()和str_limit()?我很想知道他们是如何在后台做事的。

1 个答案:

答案 0 :(得分:1)

查看功能位于

/vendor/laravel/framework/source/illuminate/Foundation/helpers.php

第585行

内容如下:

if ( ! function_exists('view'))
{
/**
 * Get the evaluated view contents for the given view.
 *
 * @param  string  $view
 * @param  array   $data
 * @param  array   $mergeData
 * @return \Illuminate\View\View
 */
function view($view = null, $data = array(), $mergeData = array())
{
    $factory = app('Illuminate\Contracts\View\Factory');

    if (func_num_args() === 0)
    {
        return $factory;
    }

    return $factory->make($view, $data, $mergeData);
}
}

开始使用类似Php风暴的IDE,只需点击一下即可找到所有这些功能