如何在 PHP 中的字符串中定义常量?

发布于 2024-09-17 22:01:02 字数 320 浏览 4 评论 0原文

我正在使用常量 NEWS_POST_NUMBER 并且我对如何将其附加到字符串以将其查询到数据库感到困惑。我尝试了很多事情,但它给出了错误。

这是我尝试过的字符串。

$query = "
SELECT news.id, news.timestamp, news.title 
FROM news 
ORDER BY id DESC 
LIMIT $from, NEWS_POST_NUMBER";

请注意 NEWS_POST_NUMBER 是我定义的常量,我想将其附加到查询中,我该怎么做?

I am using a constant NEWS_POST_NUMBER and i am getting confused on how to attach it to a string to query it to database. i tried many things and it is giving errors.

here is the string i tried.

$query = "
SELECT news.id, news.timestamp, news.title 
FROM news 
ORDER BY id DESC 
LIMIT $from, NEWS_POST_NUMBER";

please note NEWS_POST_NUMBER is the constant i have defined i want to attach it to query how do i do it?

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

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

发布评论

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

评论(2

空城缀染半城烟沙 2024-09-24 22:01:02
$query = "SELECT news.id, news.timestamp, news.title FROM news ORDER BY id DESC LIMIT $from, " . NEWS_POST_NUMBER;

使用 连接运算符 ;)

$query = "SELECT news.id, news.timestamp, news.title FROM news ORDER BY id DESC LIMIT $from, " . NEWS_POST_NUMBER;

Use the concatenation operator ;)

謌踐踏愛綪 2024-09-24 22:01:02
$query = "
SELECT news.id, news.timestamp, news.title 
FROM news 
ORDER BY id DESC 
LIMIT $from, " . NEWS_POST_NUMBER;
$query = "
SELECT news.id, news.timestamp, news.title 
FROM news 
ORDER BY id DESC 
LIMIT $from, " . NEWS_POST_NUMBER;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文