php类中引用smarty的有关问题?
core
gt
model
php
smarty
php类中引用smarty的问题???
问题概述:
想在类中调用smarty方法,却出现如下错误:
PHP Fatal error: Using $this when not in object context in G:\SVN\YCMS\localhost\core\smarty\sysplugins\smarty_internal_data.php on line 38
下面贴代码,希望各位能帮我下[app/model/home.php已经通过其他页面引入了_Model类]:
app/model/home.php
- PHP code
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php /** * Name: app-model-home * Author: yinhexi */ if(!defined('IN_MODEL')) die('Access Violation Error:app-model-home!'); class home extends _Model { public static function index() { parent::assign('title', 'YCMS'); } } ?>
登录后复制
core/model/index.php
- PHP code
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php /** * Name: core-model-index * Author: yinhexi */ define('IN_MODEL', 1); include_once(Y_CORE.DS.'config'.DS.'smarty.php'); //引入smarty类 class _Model extends Smarty { public function __construct() { } //检测相关类中是否存在对应方法 protected function instance($c_f,$c_c_m) { if(!in_array($c_f,get_class_methods($c_c_m))) { die("Model: Class $c_c_m does not exist in Method $c_f!"); } } } ?>
登录后复制
core/config/smarty
- PHP code
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <?php /** * Name: core-config-smarty * Author: yinhexi */ if(!defined('IN_CORE')) die('Access Violation Error:core-config-smarty!'); include_once(Y_CORE.DS.'smarty'.DS.'Smarty.class.php'); $smarty = new Smarty(); $smarty->template_dir = Y_APP.DS.'view';//设置模版目录 $smarty->compile_dir = Y_CACHE.DS."view_c";//设置编译目录 $smarty->config_dir = Y_APP.DS.'config'.DS.'smarty';//配置目录变量 //$smarty->php_handling = SMARTY_PHP_ALLOW; //不赞成设置为SMARTY_PHP_ALLOW $smarty->left_delimiter = "{"; $smarty->right_delimiter = "}"; //compile #$smarty->compile_check = false;//编译检查变量 //Cache $smarty->caching = true; //缓存模版的输出 $smarty->cache_dir = Y_CACHE; //存放模版缓存的目录名 #$smarty->cache_lifetime = 1; //缓存生命周期 ?>
登录后复制
文件关联都没有问题,有些在这没有显示。
提示的错误所指向的是smarty源代码,在此也贴出:
- PHP code
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> public function assign($tpl_var, $value = null, $nocache = false) { if (is_array($tpl_var)) { foreach ($tpl_var as $_key => $_val) { if ($_key != '') { $this->tpl_vars[$_key] = new Smarty_variable($_val, $nocache); } } } else { if ($tpl_var != '') { $this->tpl_vars[$tpl_var] = new Smarty_variable($value, $nocache); } } }
登录后复制
望各位不吝指教!
------解决方案--------------------
assign需要实例化后才能引用,你的类home中有一句,parent::assign()这句其父类根本没有实例化
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前
By 尊渡假赌尊渡假赌尊渡假赌
仓库:如何复兴队友
4 周前
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒险:如何获得巨型种子
3 周前
By 尊渡假赌尊渡假赌尊渡假赌
击败分裂小说需要多长时间?
3 周前
By DDD
R.E.P.O.保存文件位置:在哪里以及如何保护它?
3 周前
By DDD

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu

Visual Studio Code,也称为 VS Code,是一个免费的源代码编辑器 - 或集成开发环境 (IDE) - 可用于所有主要操作系统。 VS Code 拥有针对多种编程语言的大量扩展,可以轻松编写
