gpt4 book ai didi

php - 不使用mysql更改网站内容

转载 作者:行者123 更新时间:2023-11-29 12:35:32 25 4
gpt4 key购买 nike

我的客户想要更新网站中的内容,例如“营业时间”或其业务的其他详细信息。

我想知道是否有一种方法可以让他们更新内容,而无需为每个字段提供 SQL 条目,然后提供一个表单供他们更新。

其中一些信息被硬编码在每种语言的 php 页面中,因为有一个路由脚本将根据所选语言选择相应的页面来提取信息。

当前信息显示示例:

$openingHours = "Our business opens from 9am to 3pm and then evenings from 6pm to 10pm";
$introText = "Welcome to ABCD, where we offer the greatest food in town";

最好的办法是让我的客户能够更新 php 文件,但以用户友好的模式,而不是手动编辑。有办法吗?

最佳答案

您可以使用 config.php 来制作它,然后您可以像上面一样使用它:

<?php

$business = array();

$business['opening'] = 9;
$business['closing'] = 21;

?>

您可以将其包含在您想要的任何地方并使用。 (或者你可以通过 ini 制作该配置文件。但 php 更容易)

关于php - 不使用mysql更改网站内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26838796/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com