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


PHP Respond::fail方法代码示例

本文整理汇总了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);
开发者ID:nathanedwards,项目名称:fvtest,代码行数:18,代码来源:results.php

示例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();
开发者ID:nathanedwards,项目名称:fvtest,代码行数:31,代码来源:post.php


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