tp5 使用对象给模板赋值

$obj=new \stdClass();
        $obj->username='奥巴马';
        $obj->num=111;
//        $this->assign('obj',$obj);
        return $this->fetch('index',['ob'=>$obj]);
html中:
      {$ob->username|default='没有值!'}{$ob->num}
      //{$password|md5}
      //{$time|date='Y-m-d: H:i:s'}
      //{$number|format=%d}
      //{$name?'不存在'}//?用于普通变量没有值时输出后面的
      //{%Think.get.name??'不存在'}??用于系统变量没有值输出后面的
      //其他与三元运算符类似

系统全局变量$_Get在模板的运用::http://localhost/public/index.php/see?key=dada
 {$Think.get.key}


获得系统版本
{$Think.PHP_VERSION}
获得config配置信息
{$Think.config.default_module}

你可能感兴趣的:(tp5 使用对象给模板赋值)