Twig 渲染时细树枝阵列转换错误

Twig 渲染时细树枝阵列转换错误,twig,slim,Twig,Slim,我只是在玩微框架Slim+细枝模板引擎。但实际上在render方法中传递数组 有人帮我解决这个错误 使用XAMPP在本地环境中运行 下面是我在index.php中的代码 <?php /* Require and initialize Slim and Twig */ require 'Slim/Slim.php'; \Slim\Slim::registerAutoloader(); require 'Views/Twig/lib/Twig/Autoloader.php'; Twig

我只是在玩微框架Slim+细枝模板引擎。但实际上在render方法中传递数组

有人帮我解决这个错误

使用XAMPP在本地环境中运行

下面是我在index.php中的代码

   <?php

/* Require and initialize Slim and Twig */
require 'Slim/Slim.php';
\Slim\Slim::registerAutoloader();
require 'Views/Twig/lib/Twig/Autoloader.php';
Twig_Autoloader::register();

$app = new \Slim\Slim(array(
    'view'              =>  new \Slim\Extras\Views\Twig(),
    'templates.path'    =>  './Templates'
));

/* Application routes */
$app->get('/', function () use($app) {
    $pageTitle = 'hello world';
    $body = 'sup world';   
    $app->render('index.php',array('title' => $pageTitle, 'body' => $body));
});

/* Run the application */
$app->run();

不幸的是,我不得不回答我的问题

我刚刚对Twig.php(在slim extras中)做了一些修改,并引入了一个名为ObjectToArray的新函数,现在它可以工作了

function objectToArray( $object ) {
            $array=array();
    foreach($object as $member=>$data)
    {
        $array[$member]=$data;
    }
    return $array;
    }
因此,我的自定义Twig.php文件如下所示

<?php
/**
 * Slim - a micro PHP 5 framework
 *
 * @author      Josh Lockhart
 * @link        http://www.slimframework.com
 * @copyright   2011 Josh Lockhart
 *
 * MIT LICENSE
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
namespace Slim\Extras\Views;

/**
 * TwigView
 *
 * The TwigView is a custom View class that renders templates using the Twig
 * template language (http://www.twig-project.org/).
 *
 * Two fields that you, the developer, will need to change are:
 * - twigDirectory
 * - twigOptions
 */
class Twig extends \Slim\View
{
    /**
     * @var string The path to the Twig code directory WITHOUT the trailing slash
     */
    public static $twigDirectory = null;

    /**
     * @var array Paths to directories to attempt to load Twig template from
     */
    public static $twigTemplateDirs = array();

    /**
     * @var array The options for the Twig environment, see
     * http://www.twig-project.org/book/03-Twig-for-Developers
     */
    public static $twigOptions = array();

    /**
     * @var TwigExtension The Twig extensions you want to load
     */
    public static $twigExtensions = array();

    /**
     * @var TwigEnvironment The Twig environment for rendering templates.
     */
    private $twigEnvironment = null;

    /**
     * Get a list of template directories
     *
     * Returns an array of templates defined by self::$twigTemplateDirs, falls
     * back to Slim\View's built-in getTemplatesDirectory method.
     *
     * @return array
     **/
    private function getTemplateDirs()
    {
        if (empty(self::$twigTemplateDirs)) {
            return array($this->getTemplatesDirectory());
        }
        return self::$twigTemplateDirs;
    }

    /**
     * Render Twig Template
     *
     * This method will output the rendered template content
     *
     * @param   string $template The path to the Twig template, relative to the Twig templates directory.
     * @return  void
     */
    public function render($template)
    {
        $env = $this->getEnvironment();
        $template = $env->loadTemplate($template);
        return $template->render($this->objectToArray($this->data));
    }

    /**
     * Creates new TwigEnvironment if it doesn't already exist, and returns it.
     *
     * @return Twig_Environment
     */
    public function getEnvironment()
    {
        if (!$this->twigEnvironment) {
            // Check for Composer Package Autoloader class loading
            if (!class_exists('\Twig_Autoloader')) {
                require_once self::$twigDirectory . '/Autoloader.php';
            }

            \Twig_Autoloader::register();
            $loader = new \Twig_Loader_Filesystem($this->getTemplateDirs());
            $this->twigEnvironment = new \Twig_Environment(
                $loader,
                self::$twigOptions
            );

            // Check for Composer Package Autoloader class loading
            if (!class_exists('\Twig_Extensions_Autoloader')) {
                $extension_autoloader = dirname(__FILE__) . '/Extension/TwigAutoloader.php';
                if (file_exists($extension_autoloader)) require_once $extension_autoloader;
            }

            if (class_exists('\Twig_Extensions_Autoloader')) {
                \Twig_Extensions_Autoloader::register();

                foreach (self::$twigExtensions as $ext) {
                    $extension = is_object($ext) ? $ext : new $ext;
                    $this->twigEnvironment->addExtension($extension);
                }
            }
        }

        return $this->twigEnvironment;
    }

    /**
     * Converts PHP objects into Array.
     *
     * @return array
     */
    private function objectToArray( $object ) {
                $array=array();
        foreach($object as $member=>$data)
        {
            $array[$member]=$data;
        }
        return $array;
        }
}

您的分辨率是一项开销。更好的方法是传递
$this->all()
,它将返回集合的键值数据数组,作为
$template->render()
方法的参数

public function render($template)
{
    $env = $this->getEnvironment();
    $template = $env->loadTemplate($template);

    return $template->render($this->all());
}

在4月份之前,
$this->data
是一个数组,但现在它是一个
集合
,所以这就是问题发生的原因。

这将解决问题

function objectToArray($object){
    if (!is_object($object) && !is_array($object)) {
        return $object;
    }
    if (is_object($object)) {
        $object = get_object_vars($object);
    }
    return array_map('objectToArray', $object);
}

我对twig.php做了一个稍微不太重要的编辑,并对其提出了一个拉取请求:
function objectToArray($object){
    if (!is_object($object) && !is_array($object)) {
        return $object;
    }
    if (is_object($object)) {
        $object = get_object_vars($object);
    }
    return array_map('objectToArray', $object);
}