如何在 PHP 中的字符串中定义常量?
我正在使用常量 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 连接运算符 ;)
Use the concatenation operator ;)