• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

请大家帮小弟我看下这是什么东东

php 搞代码 3年前 (2022-01-25) 12次浏览 已收录 0个评论

请大家帮我看下这是什么错误
类的自动加载别的类都可以自动加载就是tpl类不能自动加载
Fatal error: Class ‘Tpl’ not found in D:\AppServ\www\yshop\configs\run.inc.php on line 22

我手动 require ROOT_PATH.’/public/Tpl.class.php’;又出现这个错误
Fatal error: Access level to Tpl::__construct() must be public (as in class Smarty) in D:\AppServ\www\yshop\public\Tpl.class.php on line 46

<?php
class Tpl extends Smarty{

static private $instance;

static public function getInstance(){
if(!(self::$ins/本2文来源[email protected]搞@^&代*@码2网搞gaodaima代码tance instanceof self)){
self::$instance = new self();
}
return self::$instance;
}
private function __clone(){

}

private function __construct(){
$this->setConfigs();
}
private function setConfigs(){
//模板目录
$this->template_dir = ROOT_PATH.’/view/’;
//编译目录
$this->compile_dir = ROOT_PATH.’/compile/’;
//配置变量目录
$this->config_dir = ROOT_PATH.’/configs/’;
//缓存目录
$this->cache_dir = ROOT_PATH.’/cache/’;
//是否开启缓存,网站开发调试阶段,我们应该关闭缓存
$this->caching = 0;
//缓存的声明周期
$this->cache_lifetime = 60*60*24;
//左定界符
$this->left_delimiter = ‘{‘;
//右定界符
$this->right_delimiter = ‘}’;
}
} 这里是46行

?>

——解决方案——————–
那就是因为你的Smarty类的构造函数(__construct)访问权限是public,根据oo规则,子类复写的同一方法,访问权限必须低于父类的,所谓的高低关系为(private > protected > public)


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:请大家帮小弟我看下这是什么东东

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址