Laravel 中如何从字符串编译 Blade 模板?

Patricia Arquette
发布: 2024-10-22 12:03:02
原创
123 人浏览过

How Can Blade Templates Be Compiled from Strings in Laravel?

Compiling Blade Templates from Strings

In Laravel, a popular web application framework, Blade is the default template engine. Typically, Blade views are stored in view files. However, a question arose regarding the possibility of compiling Blade templates from strings rather than view files.

The provided code demonstrates an attempt to compile a Blade template from a string:

<code class="php">$string = '<h2>{{ $name }}</h2>';
echo Blade::compile($string, array('name' => 'John Doe'));</code>
登录后复制

To extend the functionality of BladeCompiler, a custom BladeCompiler class was created. The new compileWiths() method takes a string and an array of arguments as inputs. It compiles the string, extracts the passed arguments, and evaluates the compiled code within an exception handler.

The updated code below shows the implementation:

<code class="php">namespace Laravel\Enhanced;

use Illuminate\View\Compilers\BladeCompiler as LaravelBladeCompiler;

class BladeCompiler extends LaravelBladeCompiler {

    /**
     * Compile blade template with passing arguments.
     *
     * @param string $value HTML-code including blade
     * @param array $args Array of values used in blade
     * @return string
     */
    public function compileWiths($value, array $args = array())
    {
        $generated = parent::compileString($value);

        ob_start() and extract($args, EXTR_SKIP);

        // We'll include the view contents for parsing within a catcher
        // so we can avoid any WSOD errors. If an exception occurs we
        // will throw it out to the exception handler.
        try
        {
            eval('?&gt;'.$generated);
        }

        // If we caught an exception, we'll silently flush the output
        // buffer so that no partially rendered views get thrown out
        // to the client and confuse the user with junk.
        catch (\Exception $e)
        {
            ob_get_clean(); throw $e;
        }

        $content = ob_get_clean();

        return $content;
    }

}</code>
登录后复制

以上是Laravel 中如何从字符串编译 Blade 模板?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!