Home >Backend Development >PHP Tutorial >THINKPHP有关问题

THINKPHP有关问题

WBOY
WBOYOriginal
2016-06-13 09:58:40867browse

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语法的时候两边都要有空格隔开。

Statement:
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