如何将 php 语句放入 php 语句内?

发布于 2024-11-19 12:50:07 字数 137 浏览 0 评论 0原文

<?php cp_latest_tweet('<?=$next_fixture?>'); ?>

next_fixture 部分是我遇到麻烦的地方。我该怎么办?

<?php cp_latest_tweet('<?=$next_fixture?>'); ?>

The next_fixture part is where I'm having trouble. How do I go about this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

拧巴小姐 2024-11-26 12:50:07

你到底为什么要这么做?

只需直接传递 var:

<?php cp_latest_tweet($next_fixture); ?>

如果您想在其之前/之后有一个字符串,例如:

<?php '<div>' . cp_latest_tweet($next_fixture) . '</div>'; ?>

<div><?php cp_latest_tweet($next_fixture); ?></div>

Why the hell would you do that?

Simply pass the var directly:

<?php cp_latest_tweet($next_fixture); ?>

If you want to have a string before/after it, e.g.:

<?php '<div>' . cp_latest_tweet($next_fixture) . '</div>'; ?>

or

<div><?php cp_latest_tweet($next_fixture); ?></div>
此生挚爱伱 2024-11-26 12:50:07

假设你的意思是:

如何使用变量而不是字符串来调用函数?

<?php cp_latest_tweet($next_fixture); ?>

Assuming you mean:

How do I call a function using a variable instead of a string literal?

<?php cp_latest_tweet($next_fixture); ?>
属性 2024-11-26 12:50:07

你已经解决这个问题了吗,前两个答案是正确的,但是你知道变量 $next_fixture 存在哪里吗?如果它位于您调用该函数的同一脚本中,那么您应该没有问题,但如果它位于另一个名为 next_fixture.php 的脚本中,您将必须将此脚本包含在您调用该函数的脚本中。如果是这种情况,您可以使用 require_once:

require_once('next_fixture.php');

然后:

cp_latest_tweet($next_fixture);

Have you got this fixed yet, the previous two answers are correct but do you know where the variable $next_fixture exists? if it's in the same script where you CALL the function then you should have no problem, but if it's in another script called something like next_fixture.php you will have to include this script in the one your calling the function from. If this is the case you can use require_once:

require_once('next_fixture.php');

and then:

cp_latest_tweet($next_fixture);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文