当前位置: 首页>>代码示例>>PHP>>正文


PHP Recipe::Load方法代码示例

本文整理汇总了PHP中Recipe::Load方法的典型用法代码示例。如果您正苦于以下问题:PHP Recipe::Load方法的具体用法?PHP Recipe::Load怎么用?PHP Recipe::Load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Recipe的用法示例。


在下文中一共展示了Recipe::Load方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

<?php

// Page Logic
$recipe = null;
$id = Site::GetArgumentSafely('id');
if (Value::SetAndNotNull($id)) {
    $recipe = Recipe::Load($id);
    if (Value::SetAndNotNull($recipe)) {
        $recipe->LoadSteps();
        $edit = false;
        //Value::SetAndEqualTo($recipe->GetUsertrue, $GLOBALS, 'EDIT', true);
        if (Value::SetAndNotNull($_POST, 'CommentInput') && Site::CheckSecurityToken()) {
            $message = Site::GetPostValueSafely('CommentInput');
            $commentid = Site::GetPostValueSafely('CommentSelect');
            if (!is_numeric($commentid)) {
                $commentid = EMPTYSTRING;
            }
            Comment::Insert($message, $id, $commentid);
            Site::Redirect(EMPTYSTRING);
        }
    } else {
        Site::BackToHome();
    }
} else {
    Site::BackToHome();
}
// Page Output
include_once 'Pages/OnAllPages.php';
$recipebox = new RTK_Box('recipebox');
$recipedescription = new RTK_Box(null, 'recipedescription');
$recipedescription->AddChild(new RTK_Header($recipe->GetTitle()));
开发者ID:iensenfirippu,项目名称:securipe,代码行数:31,代码来源:ViewRecipe.php

示例2: PDO

<?php

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
header('Content-Type: text/html; charset=utf-8');
require_once 'config.php';
require_once 'recipe.lib.php';
require_once 'ingredient.lib.php';
// Connect to MySQL with PDO
$pdo = new PDO("mysql:host=" . $hostname . ";dbname=" . $schema, $username, $password);
$pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
if (isset($_GET['recipes'])) {
    $recipes = Recipe::GetRecipes($pdo);
    echo json_encode($recipes);
} else {
    if (isset($_GET['recipe'])) {
        $recipe = new Recipe($pdo);
        $recipe->Load($_GET['recipe']);
        echo json_encode($recipe);
    } else {
        if (isset($_GET['ingredients'])) {
            $ingredients = Ingredient::GetIngredients($pdo);
            echo json_encode($ingredients);
        }
    }
}
开发者ID:nguyen-farny,项目名称:kitchen-fun,代码行数:27,代码来源:api.php


注:本文中的Recipe::Load方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。