大侠一个Smarty的有关问题

WBOY
Release: 2016-06-13 10:06:06
Original
829 people have browsed it

请教各位大侠一个Smarty的问题
如题,下面是源代码:
index.php:
include 'main.inc.php';
  header("Content-Type:text/html;charset=UTF-8");
  $sm->assign("time",date("Y-m-d H-i-s"));
  class User{
  function smarty_function_myname($param,&$smarty) {
  if (isset($param['name'])) {
  if ("xxx"==$param['name']) {
  return "我认识".
  }else {
  return "我不认识你!";
  }
  }
  }
  }
  $user = new User(); 
  $sm->register_function("myname", array($user,"smarty_function_myname"));
  $sm->display("index.tpl");
?>
--------------------------------------------------------------------
index.tpl:




Insert title here


 


----------------------------------------------------
为什么访问index.php的时候一直报错,错误如下:
Fatal error: Call to undefined function smarty_function_myname() in F:\AppServ\www\Demo\templates_c\%%45^45E^45E480CD%%index.tpl.php on line 12

PS:要是将index.php换成如下,可以正常使用:
  include 'main.inc.php';
  header("Content-Type:text/html;charset=UTF-8");
  function smarty_function_myname($param,&$smarty) {
  //$param是使用函数时的属性数组
  if (isset($param['name'])) {
  if ("徐小虾"==$param['name']) {
  return "我认识".date("Y-m-d H-i-s");
  }else {
  return "我不认识你!";
  }
  }
  }
   
  $sm->register_function("myname", "smarty_function_myname");
  $sm->display("index.tpl");
?>
求高手指教...

------解决方案--------------------
不懂~~都是用php处理,用smarty显示而已~
array(&$object, $method)数组形式,其中&$object是一个对象的引用,而$method是它的一个方法;
会不会是$sm->register_function("myname", array(&$user,"smarty_function_myname"));呢?
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!