2017 © Pedro Peláez
 

project flyphp2

php framework easy simple

image

zxwqxtu/flyphp2

php framework easy simple

  • Friday, March 24, 2017
  • by zxwqxtu
  • Repository
  • 1 Watchers
  • 1 Stars
  • 11 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 14 Versions
  • 0 % Grown

The README.md

安装

推荐方式

composer create-project zxwqxtu/flyphp {project} dev-master, (*1)

配置

config.php

database.php

支持mysql,pgsql等关系型数据库(pdo), mongodb

route.php

支持自定义url rewrite
return [
    '/blog' => '/test/index/blog' //用/blog 代替test/index/blog访问
];

控制器

模板

$this->view='test/index',则表示views/test/index.php, (*2)

layout布局

$this->layout='index',则表示layout/index.php, (*3)

theme主题

$this->theme = 'new',则表示layout/new/index.php, (*4)

命令行

php web/index.php {controller} {action} {param1} {param2}..., (*5)

规范

  • 每个action不能有exit,die等中途退出,必须用return 返回值。, (*6)

    1. 网页访问, 返回值在view中展示, (*7)

    2. 命令行访问, 返回值如果是对象数组,就json输出,否则直接echo,命令行不会执行view层, (*8)

Model层

属性值

protected $dbType = 'mysql';, (*9)

protected $dbSelect= 'default';, (*10)

protected $table = '';, (*11)

protected $collection = '';, (*12)

方法

find($id), (*13)

findAll(), (*14)

findBy($where), (*15)

findOneBy($where), (*16)

$where格式

pdo [['id', 13], ['status', [0,1]], ['date', '20150503', '>']] mongodb 原始格式, (*17)


nginx配置

server {
    listen       9090;
    root          /www/web/flyPhp2/web;
    index index.php;

    location / {
        # try to serve file directly, fallback to app.php
        try_files $uri /index.php$request_uri;
    }

    location ~ \.php {
        fastcgi_pass   unix:/tmp/php-cgi.sock;
        fastcgi_param  SCRIPT_FILENAME  $realpath_root$fastcgi_script_name;
        include        fastcgi_params;
    }
    error_log logs/flyphp2.error.log;
    access_log logs/flyphp2.access.log;
}

The Versions

24/03 2017

dev-master

9999999-dev https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

24/03 2017

dev-develop

dev-develop https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

24/03 2017

1.4.0

1.4.0.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

01/03 2017

1.3.2

1.3.2.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

06/01 2017

1.3.1

1.3.1.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

23/12 2016

1.3.0

1.3.0.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

23/12 2016

1.2.3

1.2.3.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

19/11 2016

1.2.2

1.2.2.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

19/11 2016

1.2.1

1.2.1.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

10/07 2016

1.2.0

1.2.0.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

10/07 2016

1.1.1

1.1.1.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

07/07 2016

1.1.0

1.1.0.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

07/07 2016

1.0.1

1.0.1.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp

03/07 2016

1.0.0

1.0.0.0 https://github.com/zxwqxtu/flyPHP

php framework easy simple

  Sources   Download

The Requires

 

by wangqiang

framework php flyphp