由用户在php中创建一个html文件

发布于 2024-12-01 14:54:44 字数 189 浏览 0 评论 0原文

好吧,我想为我的cms创建一个功能,用户可以通过其命令创建一些静态页面,例如

文件名,内容,图片..

例如,用户可以创建一个关于我们的..该文件名为 about.php ,其中有自定义内容,所有这些都是由另一个 php 页面中的用户给出的,

请推荐我使用哪个 php 函数来制作这些,tnx

well I want to make a feature to my cms which user can make some static page by its orders , such

file name , Content , picture ....

for example , user can make an about us.. that file name is about.php , have a custom content in it , and all of these are given by a user in another php page

please recommend me to use which php function to make these , tnx

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

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

发布评论

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

评论(1

爱要勇敢去追 2024-12-08 14:54:44

像这样的代码怎么样:

$fh = fopen($filename, 'w') or die("can't open file");
fwrite($fh, '<html><body>');
fwrite($fh, "<h1>$title</h1>$text");
fwrite($fh, '</body></html>');
fclose($fh);

文件名、标题和文本填充一些表单数据,或者从文件中读取。

我希望这就是你的意思。

How about some code like this:

$fh = fopen($filename, 'w') or die("can't open file");
fwrite($fh, '<html><body>');
fwrite($fh, "<h1>$title</h1>$text");
fwrite($fh, '</body></html>');
fclose($fh);

where filename, title and text are filled with some form data, or read from a file.

I hope this is what you meant.

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