本文整理汇总了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();