THINKPHP有关问题

WBOY
Release: 2016-06-13 13:52:16
Original
884 people have browsed it

THINKPHP问题
在thinkphp模版里
有一个标签{$ppvod.vod_play}
他的值是aa$$$bb 
用$$$分割的字符串
我现在要分开输出,我写的代码入下

$arr=explode('$$$','{$ppvod.vod_play}');
print_r($arr);
 

但是就是出错,得不到值,
请问我该怎么办呢???

------解决方案--------------------
直接使用原生php就行了,没必要使用模板。
------解决方案--------------------
$arr=explode('$$$',"{$ppvod.vod_play}");
print_r($arr);

是不是应该双引号呢?
------解决方案--------------------
直接使用php的语法

var_dump($arr);

?>

在模版中应用php语法的时候两边都要有空格隔开。

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!