<?php cp_latest_tweet('<?=$next_fixture?>'); ?>
next_fixture
部分是我遇到麻烦的地方。我该怎么做?
答案 0 :(得分:2)
你为什么要那样做?
直接传递var:
<?php cp_latest_tweet($next_fixture); ?>
如果你想在它之前/之后有一个字符串,例如:
<?php '<div>' . cp_latest_tweet($next_fixture) . '</div>'; ?>
或
<div><?php cp_latest_tweet($next_fixture); ?></div>
答案 1 :(得分:2)
假设你的意思是:
如何使用变量而不是字符串文字来调用函数?
<?php cp_latest_tweet($next_fixture); ?>
答案 2 :(得分:0)
你有没有修复,前两个答案是正确的,但你知道变量$ next_fixture在哪里?如果它在你调用该函数的同一个脚本中,那么你应该没有问题,但是如果它在另一个名为next_fixture.php的脚本中,则必须在调用该函数的脚本中包含此脚本。如果是这种情况,您可以使用require_once:
require_once( 'next_fixture.php');
然后:
cp_latest_tweet(next_fixture $);