Table of Contents
回复讨论(解决方案)
Home Backend Development PHP Tutorial thinkphp的问题弄了半天了,还是不知道,各位大神帮忙看看吧

thinkphp的问题弄了半天了,还是不知道,各位大神帮忙看看吧

Jun 23, 2016 pm 01:35 PM

控制器中的代码:
public function testt(){
//$title="练习册";
//$content='
'.$_GET['name'];
//$this->assign('title',$title);
$User = M('name');
$list = $User->select();
$this->assign('list',$list);
$this->assign("title","SMARTY测试");
$this->display();
}
模板中的代码:
{$title}




{$vo.age}{$vo.name}


重要去掉foreach部分就正常,否则就会出显这样
syntax error, unexpected ')', expecting T_VARIABLE or '$' D:\AppServ\www\App\admin\Runtime\Cache\6e178638460c8ba2282739c247c2ce14.php 第 10 行.

cache文件中的代码为:





$): echo ($vo["age"]); echo ($vo["name"]); ?>


看来好久也没有头绪,怎么办啊?


回复讨论(解决方案)

list是空 你自己在检查下

list是为空,在控制器里面能查到数据,可是交给模板后,通过foreach标签函数处理后就变为空了。不知道哪里的错误???????????????????????????????????

public function _foreach($attr,$content) {        static $_iterateParseCache = array();        //如果已经解析过,则直接返回变量值        $cacheIterateId = md5($attr.$content);        if(isset($_iterateParseCache[$cacheIterateId]))            return $_iterateParseCache[$cacheIterateId];        $tag        =   $this->parseXmlAttr($attr,'foreach');        $name       =   $tag['name'];        $item       =   $tag['item'];        $key        =   !empty($tag['key'])?$tag['key']:'key';        $name       =   $this->autoBuildVar($name);        $parseStr   =   '<?php if(is_array('.$name.')): foreach('.$name.' as $'.$key.'=>$'.$item.'): ?>';        $parseStr  .=   $this->tpl->parse($content);        $parseStr  .=   '<?php endforeach; endif; ?>';        $_iterateParseCache[$cacheIterateId] = $parseStr;        if(!empty($parseStr)) {            return $parseStr;        }        return ;    }
Copy after login
Copy after login
Copy after login

稍微查了下解析foreach标签的源码,这个并不是list变量为空,其实是没取到标签里name和item的值,具体原因楼主可以自己去查源码排除下,当然最简单的解决办法就是改用volist标签。

你模板中的foreach应该写成{foreach name='' item=''}吧?

public function _foreach($attr,$content) {        static $_iterateParseCache = array();        //如果已经解析过,则直接返回变量值        $cacheIterateId = md5($attr.$content);        if(isset($_iterateParseCache[$cacheIterateId]))            return $_iterateParseCache[$cacheIterateId];        $tag        =   $this->parseXmlAttr($attr,'foreach');        $name       =   $tag['name'];        $item       =   $tag['item'];        $key        =   !empty($tag['key'])?$tag['key']:'key';        $name       =   $this->autoBuildVar($name);        $parseStr   =   '<?php if(is_array('.$name.')): foreach('.$name.' as $'.$key.'=>$'.$item.'): ?>';        $parseStr  .=   $this->tpl->parse($content);        $parseStr  .=   '<?php endforeach; endif; ?>';        $_iterateParseCache[$cacheIterateId] = $parseStr;        if(!empty($parseStr)) {            return $parseStr;        }        return ;    }
Copy after login
Copy after login
Copy after login

稍微查了下解析foreach标签的源码,这个并不是list变量为空,其实是没取到标签里name和item的值,具体原因楼主可以自己去查源码排除下,当然最简单的解决办法就是改用volist标签。



我看了是 $this->parseXmlAttr($attr,'foreach')执行后$tag没值??????????????

怎么办啊,我写的都是最简单的几句代码,
结果在源码里测就是parseXmlAttr函数里面出的问题。可是会是源码的问题么

怎么办啊,我写的都是最简单的几句代码,
结果在源码里测就是parseXmlAttr函数里面出的问题。可是会是源码的问题么


public function parseXmlAttr($attr,$tag) {        //XML解析安全过滤        $attr   =   str_replace('&','___', $attr);        $xml    =   '<tpl><tag '.$attr.' /></tpl>';        $xml    =   simplexml_load_string($xml);        if(!$xml) {            throw_exception(L('_XML_TAG_ERROR_').' : '.$attr);        }        $xml    =   (array)($xml->tag->attributes());        $array  =   array_change_key_case($xml['@attributes']);        if($array) {            $attrs  = explode(',',$this->tags[strtolower($tag)]['attr']);            if(isset($this->tags[strtolower($tag)]['must'])){                $must   =   explode(',',$this->tags[strtolower($tag)]['must']);            }else{                $must   =   array();            }            foreach($attrs as $name) {                if( isset($array[$name])) {                    $array[$name] = str_replace('___','&',$array[$name]);                }elseif(false !== array_search($name,$must)){                    throw_exception(L('_PARAM_ERROR_').':'.$name);                }            }            return $array;        }    }
Copy after login
Copy after login

再顺着查一下源码不就好了么,不清楚的变量就打印一下,很容易就能找出问题来,源码有错误也不是什么稀奇的事,也可能是书写格式不对。


怎么办啊,我写的都是最简单的几句代码,
结果在源码里测就是parseXmlAttr函数里面出的问题。可是会是源码的问题么


public function parseXmlAttr($attr,$tag) {        //XML解析安全过滤        $attr   =   str_replace('&','___', $attr);        $xml    =   '<tpl><tag '.$attr.' /></tpl>';        $xml    =   simplexml_load_string($xml);        if(!$xml) {            throw_exception(L('_XML_TAG_ERROR_').' : '.$attr);        }        $xml    =   (array)($xml->tag->attributes());        $array  =   array_change_key_case($xml['@attributes']);        if($array) {            $attrs  = explode(',',$this->tags[strtolower($tag)]['attr']);            if(isset($this->tags[strtolower($tag)]['must'])){                $must   =   explode(',',$this->tags[strtolower($tag)]['must']);            }else{                $must   =   array();            }            foreach($attrs as $name) {                if( isset($array[$name])) {                    $array[$name] = str_replace('___','&',$array[$name]);                }elseif(false !== array_search($name,$must)){                    throw_exception(L('_PARAM_ERROR_').':'.$name);                }            }            return $array;        }    }
Copy after login
Copy after login

再顺着查一下源码不就好了么,不清楚的变量就打印一下,很容易就能找出问题来,源码有错误也不是什么稀奇的事,也可能是书写格式不对。



控制器里面传给模板的数组是$select=array('id'=>1,'name'=>'yan');
在进过foreach标签处理就是它里面的函数parseXmlAttr($attr,$tag)中的这句话
$xml = (array)($xml->tag->attributes());得到的$xml是array(0){}
他处理后就变为空数组了,这个函数就没有返回数据。
就是这一步。和你发的对比了一下。源码就是这样的啊,到底那不错了啊?????????

public function _foreach($attr,$content) {        static $_iterateParseCache = array();        //如果已经解析过,则直接返回变量值        $cacheIterateId = md5($attr.$content);        if(isset($_iterateParseCache[$cacheIterateId]))            return $_iterateParseCache[$cacheIterateId];        $tag        =   $this->parseXmlAttr($attr,'foreach');        $name       =   $tag['name'];        $item       =   $tag['item'];        $key        =   !empty($tag['key'])?$tag['key']:'key';        $name       =   $this->autoBuildVar($name);        $parseStr   =   '<?php if(is_array('.$name.')): foreach('.$name.' as $'.$key.'=>$'.$item.'): ?>';        $parseStr  .=   $this->tpl->parse($content);        $parseStr  .=   '<?php endforeach; endif; ?>';        $_iterateParseCache[$cacheIterateId] = $parseStr;        if(!empty($parseStr)) {            return $parseStr;        }        return ;    }
Copy after login
Copy after login
Copy after login

稍微查了下解析foreach标签的源码,这个并不是list变量为空,其实是没取到标签里name和item的值,具体原因楼主可以自己去查源码排除下,当然最简单的解决办法就是改用volist标签。



volist和foreach还有for效果都是一样的。
纠结,好好地数组,传给源码后就被处理为空了。

上面说过了,list数组里的值并没有变化,只是在处理模版时没有正确的生成php代码罢了,我刚才下载了一个thinkphp,用楼主的代码试了下,结果是正常的,建议去thinkphp官网上重新下个最新版的看看

上面说过了,list数组里的值并没有变化,只是在处理模版时没有正确的生成php代码罢了,我刚才下载了一个thinkphp,用楼主的代码试了下,结果是正常的,建议去thinkphp官网上重新下个最新版的看看



我下载的是官网上的3.1.3,会不会是编程平台的问题我用的是EclipsePHP Studio v1.2.2。
开发环境用的是集成的appserv。

有弄了一下午,在网上也有人说是有bug,就是parseXmlAttr($attr,$tag) 中的
$xml    =   (array)($xml->tag->attributes());
使用foreach遍历给$array,我试了试,这样有输出数组正常,可是在TagLibCx中进行字符串链接的时候,出现字符串链接不上的情况

运行环境出问题了,以前用的appserv换了个新的。问题解决了。不过以前那个用的没啥问题。
为啥就thinkphp的标签出问题呢???????

php环境最好在php3.0以上

运行环境出问题了,以前用的appserv换了个新的。问题解决了。不过以前那个用的没啥问题。
为啥就thinkphp的标签出问题呢???????


你的问题解决了?必须更换环境吗?,我的ThinkPHP也是3.1.3,php版本是php6。这个也要重新换吗?

解决了,PHP6不行,我改成了PHP5,然后就可以了

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles