Smarty,子目录中的页面

发布于 2024-10-10 19:26:03 字数 580 浏览 6 评论 0原文

我试图弄清楚如何使用 php Smarty 模板引擎将页面保存在子目录(类别)中。

例如,如果我的结构是:

index.php
category1/page1.php
category2/page2.php

等,

渲染得很好

根index.php使用默认的smarty设置

<?php 
require_once('lib/smtemplate.php');

$data = array(
    'meta_keywords' =>'key1, key2',
    'category' =>'category1'
    );

$tpl = new SMTemplate();
$tpl->render('page', $data);

?>

:但是如果我将它复制到子目录中,即使我更改为,它也会中断

require_once('../lib/smtemplate.php');

,并且到目前为止我找不到解决方案。

感谢您的帮助。 谢谢。

i am trying to figure out how to hold pages in subdirectories (categories) using php Smarty template engine.

For instance if my structure is:

index.php
category1/page1.php
category2/page2.php

etc.

the root index.php is rendering just fine

using the default smarty setup:

<?php 
require_once('lib/smtemplate.php');

$data = array(
    'meta_keywords' =>'key1, key2',
    'category' =>'category1'
    );

$tpl = new SMTemplate();
$tpl->render('page', $data);

?>

but if i copy it into subdirectory it breaks even if i change to

require_once('../lib/smtemplate.php');

and i cant find a solution so far.

Appreciate your help.
thx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世态炎凉 2024-10-17 19:26:03

定义基本路径:

define("BASEPATH", "/var/www/yoursite/");

并包含如下内容:

require_once(BASEPATH.'lib/smtemplate.php');

Define a basepath:

define("BASEPATH", "/var/www/yoursite/");

And include like this:

require_once(BASEPATH.'lib/smtemplate.php');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文