1. php中怎麼把資料庫連接寫成一個介面
我自己封裝的一個
<?php
class AppConfig{
public static $dbParam = array(
'dbHost' => 'localhost',
'dbUser' => 'root',
'dbPassword' =>'',
'dbName' => '資料庫名',
'dbCharset' => 'utf8',
'dbPort' => 3306,
'dbPrefix' => 'test_',
'dbPconnect' => 0,
'dbDebug' => true,
);
}
class Model {
private $version = ''; //mysql版本
private $config = array(); //資料庫配置數組
private $class; //當前類名
public $tablepre = 'ts_'; //表前綴
public $db = ''; //庫名
public $table = ''; //表名
private static $link; //資料庫鏈接句柄
private $data = array(); //中間數據容器
private $condition = ''; //查詢條件
private $fields = array(); //欄位信息
private $sql = array(); //sql集合,調試用
public $primaryKey = 'id'; //表主鍵
//構造函數初始化
public function __construct($dbParam = array()) {
$this->config = (is_array($dbParam) && !empty($dbParam)) ? $dbParam : AppConfig::$dbParam;
$this->connect();
$this->init();
}
//鏈接資料庫
private function connect() {
if($this->config['dbPconnect']) {
self::$link = @mysql_pconnect($this->config['dbHost'], $this->config['dbUser'], $this->config['dbPassword']);
}else{
self::$link = @mysql_connect($this->config['dbHost'], $this->config['dbUser'], $this->config['dbPassword'], true);
}
mysql_errno(self::$link) != 0 && $this->errdie('Could not connect Mysql: ');
$this->db= !empty($this->db) ? $this->db : $this->config['dbName'];
$serverinfo = $this->version();
if ($serverinfo > '4.1' && $this->config['dbCharset']) {
mysql_query("SET character_set_connection=".$this->config['dbCharset'].",character_set_results=".$this->config['dbCharset'].",character_set_client=binary", self::$link);
}
if ($serverinfo > '5.0') {
mysql_query("SET sql_mode=''", self::$link);
}
@mysql_select_db($this->db, self::$link) or $this->errdie('Cannot use database');
return self::$link;
}
//表基本信息初始化
protected function init() {
$this->class = get_class($this);
$this->table = !empty($this->table) ? $this->table : strtolower($this->class);
$this->table = $this->tablepre . $this->table;
return $this;
}
//設置屬性值
public function __set($name, $value) {
//exit($value);
$this->data['fields'][$name] = $value;
}
//獲取屬性值
public function __get($name) {
if(isset($this->data['fields'][$name])) {
return($this->data['fields'][$name]);
}else {
return NULL;
}
}
//欄位信息處理
private function implodefields($data) {
if (!is_array($data)) {
$data = array();
}
$this->fields = !empty($this->data['fields']) ? array_merge($this->data['fields'], $data) : $data;
foreach($this->fields as $key => $value) {
$fieldsNameValueStr[] = "`$key`='$value'";
$fieldsNameStr[] = "`$key`";
$fieldsValueStr[] = "'$value'";
}
return array($fieldsNameValueStr, $fieldsNameStr, $fieldsValueStr);
}
//條件判斷組裝
private function condition($where = NULL) {
if (is_numeric($where)) {
$where = "WHERE `{$this->primaryKey}`='{$where}' LIMIT 1";
}elseif (is_array($where)){
$where = "WHERE `{$this->primaryKey}` in (".implode(',',$where).")";
}elseif(!empty($this->data['condition'])){
//'預留WHERE', 'order', 'group', 'limit' …………等條件關鍵詞處理介面
$where = $where ? "WHERE {$where}" : "WHERE 1";
isset($this->data['condition']['where']) && $where .= ' AND '.$this->data['condition']['where'];
isset($this->data['condition']['group']) && $where .= ' GROUP BY '.$this->data['condition']['group'];
isset($this->data['condition']['order']) && $where .= ' ORDER BY '.$this->data['condition']['order'];
isset($this->data['condition']['limit']) && $where .= ' LIMIT '.$this->data['condition']['limit'];
}else{
$where = "WHERE {$where}";
}
$this->condition = $where;
return $this;
}
//插入數據
public function insert($data = array(), $replace = false) {
$fields = $this->implodefields($data);
$insert = $replace ? 'REPLACE' : 'INSERT';
$sql = "{$insert} INTO `{$this->db}`.`{$this->table}` (".implode(', ',$fields[1]).") values (".implode(', ',$fields[2]).")";
$this->query($sql);
return $this->getInsertId();
}
//更新數據
public function update($data = array() ,$where = '') {
$numargs = func_num_args();
if ($numargs == 1) {
$where = $data;
$data = array();
}
$fields = $this->implodefields($data);
$this->condition($where);
$sql = "UPDATE `{$this->db}`.`{$this->table}` SET ".implode(', ',$fields[0])." {$this->condition}";
$this->query($sql);
return $this->getAffectedRows();
}
//刪除數據
public function delete($where = NULL) {
if(!is_array($where) && strtolower(substr(trim($where), 0, 6)) == 'delete'){
$sql = $where;
}else{
$this->condition($where);
$sql = "DELETE FROM `{$this->db}`.`{$this->table}` {$this->condition}";
}
$this->query($sql);
return $this->getAffectedRows();
}
//查詢數據
public function select($where = NULL, $fields = '*') {
if(!is_array($where) && strtolower(substr(trim($where), 0, 6)) == 'select'){
$sql = $where;
}else{
$this->condition($where);
$sql = "SELECT {$fields} FROM `{$this->db}`.`{$this->table}` {$this->condition}";
}
return $this->fetch($this->query($sql));
}
//查詢一條數據
public function getOne($where, $fields = '*') {
$data = $this->select($where, $fields = '*');
if($data) {
return $data[0];
}
return array();
}
//查詢多條數據
public function getAll($where, $fields = '*') {
$data = $this->select($where, $fields = '*');
return $data;
}
//結果數量
public function getCount($where = '', $fields = '*') {
$this->condition($where);
$sql = "SELECT count({$fields}) as count FROM `{$this->db}`.`{$this->table}` {$this->condition}";
$data = $this->query($sql);
if($data){
return @mysql_result($data,0);
}
return 0;
}
//執行sql語句(flag為0返回mysql_query查詢後的結果,為1返回lastid,其他返回影響行數,默認為2返回影響行數)
public function query($sql, $flag = '0', $type = '') {
if ($this->config['dbDebug']) {
$startime = $this->microtime_float();
}
//查詢
if ($type == 'UNBUFFERED' && function_exists('mysql_unbuffered_query')) {
$result = @mysql_unbuffered_query($sql, self::$link);
} else {
//exit($sql);
$result = @mysql_query($sql, self::$link);
}
//重試
if (in_array(mysql_errno(self::$link), array(2006,2013)) && empty($result) && $this->config['dbPconnect']==0 && !defined('RETRY')) {
define('RETRY',true); @mysql_close(self::$link); sleep(2);
$this->connect();
$result = $this->query($sql);
}
if ($result === false) {
$this->errdie($sql);
}
if ($this->config['dbDebug']) {
$endtime = $this->microtime_float();
$this->sql[] = array($sql,$endtime-$startime);
}
//清空操作數據
$this->data = array();
return $flag == '0' ? $result : ($flag == '1' ? $this->getInsertId() : $this->getAffectedRows());
}
//返回結果$onlyone為true返回一條否則返回所有,$type有MYSQL_ASSOC,MYSQL_NUM,MYSQL_BOTH
public function fetch($result, $onlyone = false, $type = MYSQL_ASSOC) {
if($result){
if ($onlyone) {
$row = @mysql_fetch_array($result, $type);
return $row;
}else{
$rowsRs = array();
while($row=@mysql_fetch_array($result, $type)) {
$rowsRs[] = $row;
}
return $rowsRs;
}
}
return array();
}
//可以運行SELECT,SHOW,EXPLAIN 或 DESCRIBE 等返回一個資源標識符的語句得到返回結果數組
public function show($sql, $onlyone = false) {
return $this->fetch($this->query($sql), $onlyone);
}
// 使用call函數處理同類型函數
private function __call($name, $arguments) {
$callArr = array('on', 'where', 'order', 'between', 'group', 'limit');
if (in_array($name, $callArr)) {
$this->data['condition'][$name] = $arguments[0];
}else{
$this->errdie("function error: function {$name} is not in ($this->class) class exist");
}
return $this;
}
//返回最後一次插入ID
public function getInsertId() {
return @mysql_insert_id(self::$link);
}
//返回受影響行數
public function getAffectedRows() {
return @mysql_affected_rows(self::$link);
}
//獲取錯誤信息
private function error() {
return ((self::$link) ? @mysql_error(self::$link) : @mysql_error());
}
//獲取錯誤信息ID
private function errno() {
return ((self::$link) ? @mysql_errno(self::$link) : @mysql_errno());
}
//獲取版本信息
function version() {
if(empty($this->version)) {
$this->version = mysql_get_server_info(self::$link);
}
return $this->version;
}
//列印錯誤信息
private function errdie($sql = '') {
if ($this->config['dbDebug']) {
die('</BR><B>MySQL ERROR</B></BR>
SQL:'.$sql.'</BR>
ERRNO:'.$this->errno().'</BR>
ERROR:'.$this->error().'</BR>');
}
die('DB ERROR!!!');
}
//獲取時間微妙數
private function microtime_float()
{
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}
//析構函數
public function __destruct() {
echo '<hr>';
$this->config['dbDebug'] && print_r($this->sql);
//unset($this->result);
//unset($this->condition);
//unset($this->data);
}
}
class user extends Model {
//public $db = 'qsf_mvc';
//public $table = 'user';
public $primaryKey = 'uid';
}
$userObj = new user();
//---------------------------------------插入數據方法一-----------------------------------------
//模擬ActiveRecord模式 插入數據
$userObj->username = 'hoho';
$userObj->passwd = '1478522';
$userObj->email = '[email protected]';
$userObj->sex = 1;
$userObj->desc = '清潔工';
$insetId = $userObj->insert();
if ($insetId > 0) {
echo "插入ID為:{$insetId}<BR>";
}
//---------------------------------------插入數據方法二-----------------------------------------
//直接數組做參數插入數據
$userArr = array(
'username' => 'hoho',
'passwd' => '1478522',
'email' => '[email protected]',
'sex' => '1',
'desc' => '廚師',
);
$insetId = $userObj->insert($userArr);
if ($insetId > 0) {
echo "插入ID為:{$insetId}<BR>";
}
//---------------------------------------更新數據方法一----------------------------------------
$userObj->username = 'h111oho';
$userObj->passwd = '1478511122';
$userObj->email = '[email protected]';
$userObj->sex = 1;
$userObj->desc = '清潔工';
$affectedRows1 = $userObj->update(89);
if ($affectedRows1 > 0) {
echo "影響行數為:{$affectedRows1}<BR>";
}
//---------------------------------------更新數據方法二----------------------------------------
//更新記錄(傳遞參數的方式和insert操作一樣)
$userArr = array(
'username' => 'hohoho',
'passwd' => '1474rr4448522',
'email' => '[email protected]',
'sex' => '0',
'desc' => '廚師qq',
);
$affectedRows = $userObj->update($userArr, $insetId);
if ($affectedRows > 0) {
echo "影響行數為:{$affectedRows}<BR>";
}
//----------------------------------------查詢數據----------------------------------------------
$userRs0 = $userObj->select(8); //單個主鍵值
//print_r($userRs0);
$userRs1 = $userObj->select(array(1,5,8)); //多個主鍵值的數組
//print_r($userRs1);
$userRs2 = $userObj->select('select count(*) as count from user where uid > 20'); //直接完整sql語句
//print_r($userRs2);
$userRs3 = $userObj->select("`uid` > 0"); //where條件
//print_r($userRs3);
$userRs4 = $userObj->getOne("`uid` > 0"); //獲取單條記錄
//print_r($userRs4);
$usersRs5 = $userObj->getAll("`uid` > 0"); ////獲取所有記錄
//print_r($usersRs5);
$usersRs6 = $userObj->limit('0,10')->where('uid > 100')->order('uid DESC')->group('username')->select();
//print_r($usersRs6);
//----------------------------------------刪除數據-----------------------------------------------
//刪除操作傳遞參數的方式和select操作一樣
$userObj->delete(60); //單個主鍵值
$userObj->delete(array(1,5,8)); //多個主鍵值的數組
$userObj->delete('delete from user where uid > 100'); //直接完整sql語句
$userObj->delete("`uid` > 100"); //where條件
$userObj->limit('5')->where('uid > 80')->delete();
//----------------------------------------特殊查詢-----------------------------------------------
$userShowRs = $userObj->show('show create table user', true); //獲取特殊查詢的結果,第二個參數代表返回一條結果還是所有的結果
2. PHP 關於接收介面傳遞數據的問題。。
第一個字母表示類型 count表示ID數量 / 隔開 ild,ild,ild來記錄數據(我是按照你的意思來)
比方
i5/1,2,3,4,5
類型為int 一共5個 分別1,2,3,4,5
其實有必要麼。。。直接i:1,2,3,4,5不就行了
不一樣的話這樣寫 i:1,2,3|s:4,5,6
懂了嗎?
3. PHP 拿到令牌之後如何再次請求介面數據,主要是庫存數據
PHP可以使用函數:file_get_contents函數獲取外部json數據介面的數據,得到這些數據以後php再轉成數組或對象傳給前台html頁面顯示即可。
4. php 怎麼訪問介面
統一的數據訪問介面PDO
PDO(PHP Data Objects) 擴展為 PHP 訪問資料庫定義了一個輕量級的、一致性的介面,它提供了一個數據訪問抽象層,這樣,無論使用什麼資料庫,用戶都可以通過統一的函數執行來查詢和獲取數據。注意,你並不能使用 PDO 擴展本身執行任何資料庫操作,必須使用一個 database-specific PDO driver (針對特定資料庫的 PDO 驅動)訪問資料庫伺服器。
5. 請問有沒有辦法用PHP實時獲取這個地址的api數據
你可以用ajax和php配合使用,使用js的每秒調用ajax去獲取https://data.btcchina.com/data/grouporder
的數據,避免卡死
6. IOS-App通過PHP介面獲取數據,相關原理!
原理很簡單:就是做一個接受請求的頁面,別人通過該頁面請求數據,然後你的頁面經過判斷決定給什麼樣的數據反潰這就是傳說中的API雛形。
7. PHP---APP介面02
JSON&XML
XML: 是一種標記語言,設計的宗旨是傳輸數據
JSON: 輕量級的數據交換格式
APP介面主要是用JSON輸出格式
APP介面輸出格式三要素:
1. code::錯誤碼
2. msg:錯誤碼對應的描述
3. data:介面返回的數據
誰有許可權調用APP介面,客戶端需要帶著憑證來調用APP介面
JWT的原理:
服務端認證之後,生成一個JSON對象,返回給用戶。後續客戶端所有請求都會帶上這個JSON對象。服務端依靠這個JSON對象來認定用戶身份。
組成: Header, Payload, Signature
1. Header
說一下我是什麼
{
"alg": "HS256",
"typ": "JWT"
}
header需要經過Base64Url編碼後作為IWT的第一部分。
2. Payload
payload包含了claim, 三種類型reserved, public, private
reserved這些claim是JWT預先定義的,不強制使用,常用的有:
1). iss: 簽發者
2). exp: 過期的時間戳
3). sub: 面向的用戶
4). aud: 接收方
5). iat: 簽發時間
{
"sub": "1234567890",
"name": "John Doe",
"admin": true
}
payload需要經過Base64Url編碼後作為JWT的第二部分。
3. Signature
創建簽名使用編碼後的header和payload以及一個密匙,使用header中指定的簽名演算法進行簽名
HMACSHA256(
base64UrlEncode(header) + "." +
base64UrlEncode(payload),
secret
)
簽名是在服務端進行的,客戶端並不知道,所以是安全的。
8. 如何用php調用外部介面json數據
兩種比較簡單的方法:
1、使用curl
$url="http://www.xxxxxxxxxx.com/";
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_TIMEOUT,30);
$output=curl_exec($ch);
curl_close($ch);
echo$output;
2、使用file_get_contents
$output=file_get_contents($url);
echo$output;
3 、使用socket 也是可以的
9. php 請求介面數據方法,調用傳參數,求代碼
/**
*公用方法post
*@param$url鏈接
*@param$data數據
*@param$apiapi執行操作參數adpdatedel
*@return$result
*/
functionsendHttpPost($url,$data=[],$api='list')
{
$url=C('URL_API').$url;
$param=[
'ver'=>C('API_VER'),
'api'=>$api,
'date'=>time(),
'DATA'=>$data
];
$data=json_encode($param);
print_r($data);
$ch=curl_init();
curl_setopt($ch,CURLOPT_URL,$url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_POST,1);
curl_setopt($ch,CURLOPT_POSTFIELDS,$data);
$result=curl_exec($ch);
curl_close($ch);
//var_mp($data);
return$result;
}
10. PHP 的API介面
使用PHP寫api介面是經常做的,PHP寫好介面後,前台就可以通過鏈接獲取介面提供的數據,而返回的數據一般分為兩種情況,xml和json,在這個過程中,伺服器並不知道,請求的來源是什麼,有可能是別人非法調用我們的介面,獲取數據,因此就要使用安全驗證
原理
從圖中可以看得很清楚,前台想要調用介面,需要使用幾個參數生成簽名。
時間戳:當前時間
隨機數:隨機生成的隨機數
口令:前後台開發時,一個雙方都知道的標識,相當於暗號
演算法規則:商定好的運算規則,上面三個參數可以利用演算法規則生成一個簽名。前台生成一個簽名,當需要訪問介面的時候,把時間戳,隨機數,簽名通過URL傳遞到後台。後台拿到時間戳,隨機數後,通過一樣的演算法規則計算出簽名,然後和傳遞過來的簽名進行對比,一樣的話,返回數據。
演算法規則
在前後台交互中,演算法規則是非常重要的,前後台都要通過演算法規則計算出簽名,至於規則怎麼制定,看你怎麼高興怎麼來。
我這個演算法規則是
時間戳,隨機數,口令按照首字母大小寫順序排序
然後拼接成字元串
進行sha1加密
再進行MD5加密
轉換成大寫。