我找到了一个基于 PHP 的食谱和膳食计划脚本,我想对其进行编辑。
有一个MealPlan类,允许所有用户通过从数据库中找到的所有食谱列表中进行选择来创建自己的每日菜单/膳食计划。
我想根据用户的级别切换插入语句中使用的表/列名。
原来的插入方法是:
// Insert Meal Plan
function insert($date, $meal, $recipe, $servings, $owner) {
global $DB_LINK, $db_table_mealplans, $LangUI;
$date = $DB_LINK->addq($date, get_magic_quotes_gpc());
$meal = $DB_LINK->addq($meal, get_magic_quotes_gpc());
$recipe = $DB_LINK->addq($recipe, get_magic_quotes_gpc());
$servings = $DB_LINK->addq($servings, get_magic_quotes_gpc());
$owner = $DB_LINK->addq($owner, get_magic_quotes_gpc());
$sql = "INSERT INTO $db_table_mealplans (
mplan_date,
mplan_meal,
mplan_recipe,
mplan_servings,
mplan_owner)
VALUES (
'$date',
$meal,
$recipe,
$servings,
'$owner')";
$rc = $DB_LINK->Execute($sql);
DBUtils::checkResult($rc, NULL, $LangUI->_('Recipe already added on:'.$date), $sql);
}
我的想法是改变:
mplan_date,
mplan_meal,
mplan_recipe,
mplan_servings,
mplan_owner
至:
$mplan_date,
$mplan_meal,
$mplan_recipe,
$mplan_servings,
$mplan_owner
并使用switch语句更改表/列名称。但有人告诉我,这种事情在 OOP 中是不受欢迎的。解决这个问题的最佳方法是什么?
(注意:如果需要,我可以发布整个课程,但认为这将是足够的信息)