$dt = date_default_timezone_set('America/New_York');
$dt = date("h:i:s");
$x = date('d-m-Y');
$d = $dt;
//echo $x." ".$d;
echo do_shortcode('[tminus t= "10-10-2015 00:00:00"]');
//echo do_shortcode('[tminus t= "'.$x.'""00:00:00"]');
我在短代码中使用了$ x变量,但由于语法错误我知道,我的网站空白。但是我怎么能在这个短代码中调用变量,任何人都可以告诉我?
答案 0 :(得分:0)
您可以使用"..$x.."
替换字符串或连接字符串
级联:
echo do_shortcode('[tminus t= "' . $x . ' 00:00:00"]');
替换(vars将被扩展):
echo do_shortcode("[tminus t= \"$x 00:00:00\"]");
有关详细信息,请查看http://www.php.net/manual/en/language.types.string.php