首页 > 代码库 > [李景山php]每天laravel-20161105|EngineInterface.php

[李景山php]每天laravel-20161105|EngineInterface.php

<?php

namespace Illuminate\View\Engines;

interface EngineInterface
{
    /**
     * Get the evaluated contents of the view.
     *
     * @param  string  $path
     * @param  array   $data
     * @return string
     */
    public function get($path, array $data = []);
}// a get


本文出自 “专注php 群号:414194301” 博客,请务必保留此出处http://jingshanls.blog.51cto.com/3357095/1846647

[李景山php]每天laravel-20161105|EngineInterface.php