食谱计算器

时间:2012-08-27 00:11:30

标签: php scale recipe

我正在创建一个存储食谱的网站。我想制作一个食谱缩放器 - 您可以在其中输入所需的份量,脚本将转换配方成分以匹配它。我可以很容易地改变数量,但我想弄清楚如何转换单位。现在我知道我可以去掉1500条if / then语句,但我试图让它变得更简单一些。 :)

我正在看一个名为Tasty Kitchen的网站。他们通过AJAX将服务发布到此文件(http://tastykitchen.com/recipes/wp-admin/admin-ajax.php),该文件返回成分。然后他们在页面上显示它们。转到http://tastykitchen.com/recipes/breads/plain-bagels/获取示例。

我会 真的 感谢我能得到的任何帮助。

谢谢!

2 个答案:

答案 0 :(得分:1)

我的建议是在您的数据库中存储一个服务器,然后简单地将您想要在页面上提供的人数相乘。

因此,如果您的用户选择了他们想要为4人做饭,您保留一个变量(会话,cookie,等等) - 让我们为此示例调用$peeps - 当您输出数据时做这样的事情:

Echo "This will make $peeps portions:";
Echo "Ingredients:<br>";
Echo ($peeps*Ingredient1Quantity)." - ".$ingredient1Name."<br>";
Echo ($peeps*Ingredient2Quantity)." - ".$ingredient2Name."<br>";

等等。

如果您希望自己的网站也可以从英制转换为公制,您可以通过简单的功能轻松完成。

如果您将所有数据以公制数据存储在数据库中(或英制,但所有相同类型),您可以根据用户的偏好以与用户类似的方式将其转换为足够容易输出:

// Assumes a function that converts to Imperial from Metric called convertToImperial()
Echo "This will make $peeps portions:";v
Echo "Ingredients:<br>";
Echo convertToImperial($peeps*Ingredient1Quantity)." - ".$ingredient1Name."<br>";
Echo convertToImperial($peeps*Ingredient2Quantity)." - ".$ingredient2Name."<br>";

编辑:如果您在“公制”中将所有内容存储在数据库中,则可以使用函数以最佳的英制测量值将数据返回给您。

// For example, input is passed as 
// $qty=30 (ml) 
// $serves is passed as 3 (ie, three people)
// $type is passed as liquid.

function convertToImperial($qty, $serves, $type)
{
    // Metric to Imperial will need a $type passed (Liquid, Weight, Other).
    // You can use a switch statement to pass between the different types.
    switch ($type)
    {
         case "Liquid":
             // Assumes 5ml is a teaspoon
             // Assumes 15ml is a tablespoon
             // Assumes 250ml is a cup.
             $CalMeasure=$qty*$serves; // Now at 90ml.
             // Here you can now choose to either pick the best match
             // ie, measurement with least remainder/exact measure
             // which in this case would be 6 tablespoons
             // or
             // switch measurement types after a certain quantity is reached.
             if ($CalMeasure>125) // Half a cup
             {
                 return (round($CalMeasure/250,2)." cups");
             }
             elseif ($CalMeasure>15) // tablespoons
             {
                 return (round($CalMeasure/15,2)." Tablespoons");
             }
             else
             {
                 return (round($CalMeasure/5,2)." Teaspoons");
             }
             break;
         case "Weight":
             // Similar approach to Weights, Convert Grams to Pounds and the like.
             return $WeightMeasured;
             break;
         default: // assumes Other (pinches, sprinkles etc
             // Similar approach again.
             break;
}

答案 1 :(得分:1)

@Caleb - Fluffeh就在这里,他的策略是将所有内容存储在一种测量类型中,然后使用一系列功能将它们转换为其他类型。我构建了一个Web应用程序https://Gredio.com,可以在其他方面进行配方扩展,并且能够以这种方式生成非常灵活的报告。另一个困难是液体措施与重量的关系。大规模的食品生产总是按重量来完成,但小家伙有时会误解差异。以编程方式进行液体到重量的转换可能很复杂,因为您需要知道液体重量会有很大差异(想想蜂蜜与水......)