使用/不使用 eval 从 mysql 数据库访问类/函数

发布于 2024-11-04 16:07:01 字数 189 浏览 0 评论 0原文

我正在制作一个 CMS,但遇到了麻烦,我将 about 页面作为我的主页,并为我的博客制作另一个页面,但是,我需要存储

<?php $obj->blog_posts(); ?>

在数据库中,然后通过调用 get_content()函数

I am making a CMS and am having trouble, I have the about page as my home page and making another page for my blog, however, I need to store

<?php $obj->blog_posts(); ?>

in the database and then access by calling the get_content() function

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

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

发布评论

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

评论(1

我一向站在原地 2024-11-11 16:07:01

不,你不需要存储它。相反,您需要存储诸如 %BLOGPOSTS% 之类的令牌,并且需要一个模板引擎来将令牌替换为该方法调用的结果。

No, you don't need to store that. Instead, you need to store a token such as %BLOGPOSTS% and you need a template engine that will replace the token with the result of that method call.

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