怎么我的Smarty不能用

WBOY
풀어 주다: 2016-06-23 13:40:27
원래의
929명이 탐색했습니다.



这个是Smarty.php代码

<?phpdefine("ROOT", str_replace("\\", "/",dirname(__FILE__)).'/');require_once ROOT.'libs/Smarty.class.php';$smarty=new Smarty();$smarty->setTemplateDir(ROOT."tpl");$smarty->setCompileDir(ROOT."plusion/templates_c/");$smarty->setConfigDir(ROOT."plusion/configs/");$smarty->setCacheDir(ROOT."plusion/cache/");$smarty->debugging = false;$smarty->left_delimiter = '<{';$smarty->right_delimiter = '}>';?>
로그인 후 복사

这个是Test.php代码
<?require "smarty.php";$smarty->assign("title" , "smarty模板技术");//编辑器提示BUG未定义的变量$smarty,搞不懂上面require进去了,还怎么报这个错$smarty->assign("content","通过详细的安装使用步骤为你展示smarty模板技术");$smarty->display("test.html");?>
로그인 후 복사

这个是test.html代码;
<html><head><meta http-equiv="Content-type" content="text/html"; charset="utf-8"><title> <{$title}></title> </head> <body> <{$content}> </body> </html>
로그인 후 복사

最后在本地localhost竟然源代码输出,搞不懂


回复讨论(解决方案)

怎么感觉你的Apache和php没有配置对php脚本没有解析呢。
输出一phpinfo()看看你的Wamp环境对不对。

test.php

<?php require "smarty.php";$smarty->assign("title" , "smarty模板技术");//编辑器提示BUG未定义的变量$smarty,搞不懂上面require进去了,还怎么报这个错$smarty->assign("content","通过详细的安装使用步骤为你展示smarty模板技术");$smarty->display("test.html");?>
로그인 후 복사

apache httpd.conf 是否设置 .php呢

APACH 配置正常 只是smarty问题

#1 和 #3 不知道是怎么想的!
楼主截图中分明显示执行的是 test.php
如果是没有配置好 php 支持的话,那只能是产生下载对话框
另外,截图中只显示有第一个 assign 及以后的内容
显然是因为没有开启短标记功能,程序被原样输出了

<?  require "smarty.php";$smarty->
로그인 후 복사
被当做 html 标记,所以不会显示
查看网页源代码时,是都可以看到的

谢谢,确实粗心了

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿