2017 © Pedro Peláez
 

library xrest_utls

image

xcodecraft/xrest_utls

  • Friday, May 5, 2017
  • by zuowenjian
  • Repository
  • 9 Watchers
  • 1 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 24 Versions
  • 0 % Grown

The README.md

namespace

XCC\utls\v1

v1 版本号是为将来考虑兼容性 v2 版本号是修复sql注入问题, (*1)

XInput

    XInput::ruleSetting($dataRoot . "/input.json") ;
    XInput::failSetting("\XInputException");
    list($name,$age,$limit) = XInput::safeArr($data,"name,age,limit") ;

规则文件

示例: ``` json { "default" : { "regex" : "" , "error" : "" }, "name" : { "regex" : "" , "error" : "姓名错误" }, "age" : { "regex" : "/^\d+/" , "error" : "age error" } }, (*2)

加载规则:
ruleSetting() ;

设定失败
failSetting() ;

#XSql

区间: [] () (], (*3)

大于小于, (*4)

= <>, (*5)

函数 like("abc*") desc(id), (*6)

limit: limit = [0,2], (*7)


``` php $qCont = new QueryDTO; $qCont->id = 100 ; $qCont->limit = '[0, 20]'; $qCont->createtime = '[2016-2-1, 2016-3-1]'; $qCont->order = 'desc(id)'; $sql = XSql::where($qCont) ; $expect = "id = 100 and createtime >= 2016-2-1 and createtime <= 2016-3-1 order by id DESC limit 0, 20" ; $this->assertEquals($sql, $expect) ;

``` php, (*8)

$_GET['id']         = 100 ;
$_GET['limit']      = '[0,20] ';
$_GET['createtime'] = '[2016-2-1, 2016-3-1]';
$_GET['order']      = 'desc(id)' ;

$data = XInput::safeDict($_GET,'id,limit,createtime,order') ;
$sql  = "select * from user where "  . XSql::where($data) ;
//select * from user where id = 100 and createtime >= 2016-2-1 and createtime <= 2016-3-1 order by id DESC limit 0, 20;

```, (*9)

The Versions

05/05 2017

dev-master

9999999-dev

  Sources   Download

27/04 2017

dev-develop

dev-develop

  Sources   Download

27/04 2017

0.3.0.39

0.3.0.39

  Sources   Download

27/04 2017

0.3.0.37

0.3.0.37

  Sources   Download

19/04 2017

0.3.0.36

0.3.0.36

  Sources   Download

19/04 2017

0.3.0.35

0.3.0.35

  Sources   Download

17/04 2017

0.3.0.34

0.3.0.34

  Sources   Download

17/04 2017

0.3.0.33

0.3.0.33

  Sources   Download

17/04 2017

0.3.0.32

0.3.0.32

  Sources   Download

14/04 2017

0.3.0.31

0.3.0.31

  Sources   Download

14/04 2017

0.3.0.30

0.3.0.30

  Sources   Download

14/04 2017

0.3.0.29

0.3.0.29

  Sources   Download

14/04 2017

0.3.0.28

0.3.0.28

  Sources   Download

14/04 2017

0.3.0.27

0.3.0.27

  Sources   Download

13/04 2017

0.3.0.26

0.3.0.26

  Sources   Download

21/11 2016

0.3.0.25

0.3.0.25

  Sources   Download

21/11 2016

0.3.0.23

0.3.0.23

  Sources   Download

31/10 2016

0.3.0.22

0.3.0.22

  Sources   Download

21/10 2016

0.3.0.21

0.3.0.21

  Sources   Download

21/10 2016

0.3.0.20

0.3.0.20

  Sources   Download

21/10 2016

0.3.0.18

0.3.0.18

  Sources   Download

19/10 2016

0.2.0.17

0.2.0.17

  Sources   Download

03/10 2016

0.1.1.16

0.1.1.16

  Sources   Download

02/10 2016

0.1.1.15

0.1.1.15

  Sources   Download