0

下面在 Smarty 中调用此 PHP 代码将不起作用

PHP 中的示例用法

$content=@file_get_contents("http://www.gempixel.com/short/api/?url=http://www.google.com&api=APIKEY");

$url=json_decode($content,TRUE);//Decodes json into an array

if(!$url["error"]){  // If there is no error
echo $url["short"]; //Outputs the short url
}else{ 
echo $url["msg"]; //Outputs the error message
}

对于 Smarty,我只需要将 php 替换为 {php} 就可以了。

{php}$shortenedurl = file_get_contents('http://www.gempixel.com/short/api/?api=fAaFjILdbigF&url=' . urlencode('http://' . $_SERVER['HTTP_HOST']  . $_SERVER['REQUEST_URI']));{/php}

{php}$url=json_decode($content,TRUE);if(!$url["error"]){echo $url["short"];}else{echo $url["msg"];}{/php}

但它不会调用字符串。我究竟做错了什么?

4

1 回答 1

3

首先,您需要将变量值分配给 smarty

$iframe="hiii";
$smarty->assign( 'iframe', $iframe ); //$smarty is a global var to assign

然后得到它你的 .tpl 文件

{$iframe}
于 2013-02-04T04:48:48.993 回答