使用/不使用 eval 从 mysql 数据库访问类/函数
我正在制作一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,你不需要存储它。相反,您需要存储诸如
%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.