PHP 笔记

composer

PHP 包管理器

1
2
3
4
# composer 中国镜像
composer config -gl
composer config -g repo.packagist composer https://developer.aliyun.com/composer
composer require ..

lumen

基于 Laravel 的轻量框架

1
2
3
composer global require "laravel/lumen-installer"
lumen new blog
php -S localhost:8000 -t public

laravel

PHP MVC 框架

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# php 版本 >= 7.2,先安装 fileinfo 扩展
# php.ini 343行

disable_functions = passthru,...

# 删除 exec,putenv,pcntl_signal,proc_open

export PATH="/root/.config/composer/vendor/bin:$PATH"
chmod 755 /root/.config/composer/vendor/laravel/installer/laravel
chmod -R 777 storage
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
composer global require laravel/installer
laravel new blog
composer require barryvdh/laravel-debugbar --dev

php artisan serve
php artisan list
php artisan make:controller API/PhotoController --api --model=Models/Photo
php artisan make:migration create_photos_table
php artisan migrate
php artisan make:seeder PhotosTableSeeder
php artisan db:seed

Route::namespace('API')->group(function () {
    Route::apiResource('photos', 'PhotoController');
});

http://127.0.0.1:8000/api/photos

资源路由

Actions Handled By Resource Controller

VerbURIActionRoute Name
GET/photosindexphotos.index
POST/photosstorephotos.store
GET/photos/{photo}showphotos.show
PUT/PATCH/photos/{photo}updatephotos.update
DELETE/photos/{photo}destroyphotos.destroy

Laravel 分页名词翻译

响应 JSON释义

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
{
   "total": 50, //记录总条数
   "per_page": 15, //每页显示的记录条数
   "current_page": 1, //当前页
   "last_page": 4, //总页数
   "first_page_url": "http://laravel.app?page=1",
   "last_page_url": "http://laravel.app?page=4",
   "next_page_url": "http://laravel.app?page=2",
   "prev_page_url": null,
   "path": "http://laravel.app",
   "from": 1, //当前页的第一条
   "to": 15, //当前页的最后一条
   "data":[
        {
            // Result Object
        },
        {
            // Result Object
        }
   ]
}

paginate 方法

方法描述
$results->count()获取当前页的项目数
$results->currentPage()获取当前页的页码
$results->firstItem()获取结果集分片中第一项的编号
$results->getOptions()获取分页选项
$results->getUrlRange($start, $end) 创建分页 URL 的范围
$results->hasMorePages()判断是否还有足够多的项目用于分页
$results->lastItem()获取结果集分片中最后一项的编号
$results->lastPage()获取最后一页的页码(使用 simplePaginate 时无效)
$results->nextPageUrl()获取下一页的 URL
$results->onFirstPage()判断是否在第一页
$results->perPage()每页显示的项目数
$results->previousPageUrl()获取上一页的 URL
$results->total()判断存储器中匹配的所有项目总数(使用 simplePaginate 时无效)
$results->url($page)获取给定页码的分页 URL

微擎 FTP 路径

1
/data/wwwroot/a554.mxnt.net/addons/ewei_shopv2/core/mobile/member

php 数组对象之间的转换

从 5.2 版本开始,PHP 原生提供 json_encode() 和 json_decode() 函数,前者用于编码,后者用于解码。

一、json_encode()

1
2
3
4
<?php
  $arr = array ('a'=>1,'b'=>2,'c'=>3,'d'=>4,'e'=>5);
  echo json_encode($arr);
?>

输出

1
{"a":1,"b":2,"c":3,"d":4,"e":5}

再看一个对象转换的例子:

1
2
3
4
5
6
$obj->body           = 'another post';
$obj->id             = 21;
$obj->approved       = true;
$obj->favorite_count = 1;
$obj->status         = NULL;
echo json_encode($obj);

 输出

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
{
   "body":"another post",
 
   "id":21,
 
   "approved":true,
 
   "favorite_count":1,
 
   "status":null
}

 由于 json 只接受 utf-8 编码的字符,所以 json_encode() 的参数必须是 utf-8 编码,否则会得到空字符或者 null。当中文使用 GB2312 编码,或者外文使用 ISO-8859-1 编码的时候,这一点要特别注意。

二、索引数组和关联数组

PHP 支持两种数组,一种是只保存 “值”(value)的索引数组(indexed array),另一种是保存 “名值对”(name/value)的关联数组(associative array)。

由于 javascript 不支持关联数组,所以 json_encode() 只将索引数组(indexed array)转为数组格式,而将关联数组(associative array)转为对象格式。

比如,现在有一个索引数组

1
2
3
$arr = Array('one', 'two', 'three');
 
echo json_encode($arr);

 输出

1
["one","two","three"]

 如果将它改为关联数组:

1
2
3
$arr = Array('1'=>'one', '2'=>'two', '3'=>'three');
 
echo json_encode($arr);

 输出变为

1
{"1":"one","2":"two","3":"three"}

 注意,数据格式从 “[]"(数组)变成了 “{}"(对象)。

如果你需要将 “索引数组” 强制转化成 “对象”,可以这样写

1
	json_encode( (object)$arr );

 或者

1
json_encode ( $arr, JSON_FORCE_OBJECT );

** 三、类(class)的转换**

下面是一个 PHP 的类:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
class Foo {
 
  const     ERROR_CODE = '404';
 
  public    $public_ex = 'this is public';
 
  private   $private_ex = 'this is private!';
 
  protected $protected_ex = 'this should be protected';
 
  public function getErrorCode() {
 
    return self::ERROR_CODE;
 
  }
 
}

 现在,对这个类的实例进行 json 转换:

1
2
3
4
5
$foo = new Foo;
 
$foo_json = json_encode($foo);
 
echo $foo_json;

 输出结果是

1
{"public_ex":"this is public"}

 可以看到,除了公开变量(public),其他东西(常量、私有变量、方法等等)都遗失了。

四、json_decode()

该函数用于将 json 文本转换为相应的 PHP 数据结构。下面是一个例子:

1
2
3
4
5
$json = '{"foo": 12345}';
 
$obj = json_decode($json);
 
print $obj->{'foo'}; // 12345

 通常情况下,json_decode() 总是返回一个 PHP 对象,而不是数组。比如:

1
2
3
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
 
var_dump(json_decode($json));

 结果就是生成一个 PHP 对象:

1
2
3
4
5
6
7
8
9
object(stdClass)#1 (5) {
 
  ["a"] => int(1)
  ["b"] => int(2)
  ["c"] => int(3)
  ["d"] => int(4)
  ["e"] => int(5)
 
}

 如果想要强制生成 PHP 关联数组,json_decode() 需要加一个参数 true:

1
2
3
$json = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
  
var_dump(json_decode($json,true));

 结果就生成了一个关联数组:

1
2
3
4
5
6
7
8
9
array(5) {
 
   ["a"] => int(1)
   ["b"] => int(2)
   ["c"] => int(3)
   ["d"] => int(4)
   ["e"] => int(5)
 
}

五、json_decode() 的常见错误

下面三种 json 写法都是错的,你能看出错在哪里吗?

1
2
3
4
5
$bad_json = "{ 'bar': 'baz' }";
 
$bad_json = '{ bar: "baz" }';
 
$bad_json = '{ "bar": "baz", }';

 对这三个字符串执行 json_decode() 都将返回 null,并且报错。

第一个的错误是,json 的分隔符(delimiter)只允许使用双引号,不能使用单引号。第二个的错误是,json 名值对的 “名”(冒号左边的部分),任何情况下都必须使用双引号。第三个的错误是,最后一个值之后不能添加逗号(trailing comma)。

另外,json 只能用来表示对象(object)和数组(array),如果对一个字符串或数值使用 json_decode(),将会返回 null。

1
var_dump(json_decode("Hello World")); //null

伪静态

ThinkPHP & Nginx

1
2
3
4
5
location / {
  if (!-e $request_filename){
    rewrite  ^(.*)$  /index.php?s=$1  last;   break;
  }
}

Laravel+ &Nginx

1
2
3
location / {  
  try_files $uri $uri/ /index.php$is_args$query_string;  
}