本文整理汇总了PHP中Recipe::findAll方法的典型用法代码示例。如果您正苦于以下问题:PHP Recipe::findAll方法的具体用法?PHP Recipe::findAll怎么用?PHP Recipe::findAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Recipe
的用法示例。
在下文中一共展示了Recipe::findAll方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
}
}
//Determining whether the field is Name, Prep Time, Total Time, and Rating
if (isset($_GET['field'])) {
if ($_GET['field'] == 'Name') {
$fieldName = "Name";
} else {
if ($_GET['field'] == 'Prep') {
$fieldName = "Prep";
} else {
if ($_GET['field'] == 'Total') {
$fieldName = "Total";
} else {
if ($_GET['field'] == 'Rating') {
$fieldName = "Rating";
}
}
}
}
}
// get form data (part 3)
//If user clicks button, this happens
if ($_POST) {
$searching = $_POST["terms"];
$recipes = Recipe::findByKeyword($dbh, $searching, true);
require_once "views/view_recipes.php";
} else {
$recipes = Recipe::findAll($dbh, $sortingTitle, $fieldName, true);
// require the view
require_once "views/view_recipes.php";
}
示例2:
<?php
// a simple test controller for your lab work
// we're not going to bother with a view
// db connection
require_once "models/DB.php";
require_once "models/Recipe.php";
require_once "models/RecipeStep.php";
$id = 1;
// inflate recipe object
$recipes = Recipe::findAll($dbh, true);
// dump recipe details
// dump recipe steps
for ($i = 0; $i < count($recipes); $i++) {
for ($j = 0; $j < count($recipes[$i]->recipe_steps); $j++) {
print $recipes[$i]->recipe_steps[$j];
}
}
// dump recipe ingredients/units names
for ($i = 0; $i < count($recipes); $i++) {
for ($j = 0; $j < count($recipes[$i]->recipe_details); $j++) {
print $recipes[$i]->recipe_details[$j];
}
}
示例3: Recipe
require_once "models/Recipe.php";
require_once "models/db.php";
$recipes = new Recipe();
$new_recepies = new Recipe();
$order = 0;
// Keeps track of the asc, desc order.
// using the Recipe model, retrieve an array of recipes
$recipes = Recipe::findAll($dbh);
// get querystring data (part 2)
if ($_GET) {
if (array_key_exists('sort', $_GET)) {
// Explode the value and get the name of the column to be sorted, and the $order it should sort it.
$arr = explode('_', $_GET['sort']);
$column = $arr[0];
$order = $arr[1];
$recipes = Recipe::findAll($dbh, $column, $order);
if ($order == 0) {
$order = 1;
} else {
$order = 0;
}
}
}
// get form data (part 3)
if ($_POST) {
// Get the string from $_POST, and search for that string in the database.
if (array_key_exists("terms", $_POST)) {
$keyWord = $_POST["terms"];
$recipes = Recipe::findByKeyword($dbh, $keyWord);
}
}
示例4:
<?php
// include models, including the database connection
require_once "models/DB.php";
require_once "models/Recipe.php";
require_once "models/Ingredient.php";
require_once "models/units_of_measure.php";
// get querystring data (part 2)
$recipe = Recipe::findAll($dbh);
$newRecipe;
if (isset($_GET['Details'])) {
$viewID = $_GET['Details'];
require_once "ShowRecipe.php";
$newRecipe = 0;
die;
} else {
if (isset($_GET['order'])) {
$recipe = Recipe::sortBy($dbh, $_GET['order']);
} else {
if (isset($_GET['addRecipe'])) {
//$ing = Ingredient::sortIngredientASC($dbh);
//$units = units_of_measure::sortUnitsASC($dbh);
$ing = Ingredient::findAll($dbh);
$units = units_of_measure::findAll($dbh);
$newRecipe = 1;
require_once "EditRecipe.php";
die;
}
}
}
if ($_POST) {