php7 1之後的解構

2021-10-01 18:58:31 字數 527 閱讀 6725

直接上** 重點看第二行

$result = books:

:orderby

('book_id'

,'desc')-

>

paginate

($page,10)

;//用到了php7.1裡面的解構 $result返回的值裡面有count以及list 其實就是將result['count'] 賦值給了 $total result['list'] 賦值給了$data

["count"

=>$total,

"list"

=>$data]

= $result;

之後的寫法 解構

return

bookresponse

($data,

['total'

=>$total]

);

就這麼簡單哈

PHP7 1安裝yaf擴充套件

php71安裝yaf擴充套件 把php命令加到系統 安裝我的php安裝目錄是 usr local webserver php,所以phpize是 usr local webserver php bin phpize,但是考慮到以後可能會用到其他命令,所以一次把該目錄下的檔案都做了乙個軟鏈結 ln u...

php7 1 安裝swoole擴充套件

centos linux release 7.3.1611 core php 7.0.22 cli built aug 9 2017 18 23 24 nts mysql ver 15.1 distrib 5.5.52 mariadb,for linux x86 64 using readline ...

php7 1安裝swoole擴充套件

在已經編譯好安裝的php7.1中安裝swoole擴充套件。wget c二 解壓swoole包 tar xzvf swoole 4.2.1.tgz cd swoole 4.2.1 三 生成configure配置檔案 usr local php bin phpize四 指定php配置檔案進行預編譯 co...