本文整理匯總了PHP中Respond::fail方法的典型用法代碼示例。如果您正苦於以下問題:PHP Respond::fail方法的具體用法?PHP Respond::fail怎麽用?PHP Respond::fail使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Respond
的用法示例。
在下文中一共展示了Respond::fail方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: mysqli
<?php
require_once 'config.php';
require_once 'inc/respond.php';
$db = new mysqli(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
// connect to the DB
$respond = new Respond();
// Send out JSON responses
$table = 'fv_data';
if ($db->connect_errno) {
$respond->fail("Failed to connect to MySQL: " . $db->connect_error);
}
// All setup - let's get started with handling any data.
$res = $db->query("SELECT *,DATE_FORMAT(dob,'%D %M %Y') as dob_formatted FROM {$table} ORDER BY id DESC");
while ($row = $res->fetch_assoc()) {
$data['results'][] = $row;
}
$respond->success("results", $data);
示例2: mysqli
<?php
require_once 'config.php';
require_once 'inc/mail.php';
require_once 'inc/respond.php';
$db = new mysqli(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
// connect to the DB
$mail = new Mailer();
// handle email including validations
$respond = new Respond();
// Send out JSON responses
$table = 'fv_data';
if ($db->connect_errno) {
$respond->fail("Failed to connect to MySQL: " . $db->connect_error);
}
// All setup - let's get started with handling any data.
// kill the page if nothing posted
if (!$_POST) {
$respond->fail("error", "no data");
}
#1 Sanitize and prepare the data:
$comments = trim($_POST["comments"]);
$day = trim($_POST["day"]);
$email = trim($_POST["email"]);
$firstname = trim($_POST["firstname"]);
$gender = trim($_POST["gender"]);
$lastname = trim($_POST["lastname"]);
$month = trim($_POST["month"]);
$phone = trim($_POST["phone"]);
$year = trim($_POST["year"]);
$errors = array();