真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

PHP7函數(shù)類型限定對(duì)性能有沒有影響

這篇文章主要介紹PHP7函數(shù)類型限定對(duì)性能有沒有影響,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)于2013年開始,先為呼倫貝爾等服務(wù)建站,呼倫貝爾等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為呼倫貝爾企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。

PHP7函數(shù)類型限定

(1) 介紹
  • 函數(shù)參數(shù)類型限定(包括返回值、成員屬性)從PHP5開始支持的,但是支持的類型不多,PHP7做了擴(kuò)展:int/string/bool/object 等

  • 作用

    function testInt(int $intNum){
      var_dump($intNum);
    }
    testInt("123"); // int(123)
    • 避免錯(cuò)誤調(diào)用,標(biāo)明類型,只能傳遞同類型的參數(shù),尤其多人協(xié)同開發(fā)時(shí)。

      推薦學(xué)習(xí):《PHP視頻教程》

    • 如果不是可以自動(dòng)轉(zhuǎn)換數(shù)據(jù)類型,如下,當(dāng)然前提是待轉(zhuǎn)化類型可以正常轉(zhuǎn)化

    • 而本文正是測(cè)試類型限定對(duì)性能的影響程度

  • 注意  參數(shù)、返回值如果跟設(shè)定的類型不一致時(shí)會(huì)報(bào)錯(cuò),不是百分百確認(rèn)的需要手動(dòng)轉(zhuǎn)化下

(2) 壓測(cè)
  • 運(yùn)行環(huán)境

    • PHP  7.2.34

    • Laravel  5.8

    • AB  2.3

  • 單機(jī)配置

    • 型號(hào)名稱  MacBook Pro

    • 處理器名稱  Quad-Core Intel Core i7

    • 內(nèi)存  8 GB

    • 核總數(shù)  4

  • AB

    • -n  壓測(cè)請(qǐng)求數(shù)

    • -c  并發(fā)數(shù)

    • -p  POST請(qǐng)求時(shí)指定所需攜帶參數(shù)的文件

    • -r  遇到錯(cuò)誤響應(yīng)不退出,操作系統(tǒng)有防高并發(fā)攻擊保護(hù)措施 (apr_socket_recv: Connection reset by peer)

    • 使用AB (Apache Benchmark)  進(jìn)行壓測(cè),由于不是正式的壓測(cè),所以此處只關(guān)心綜合指標(biāo):Requests per second (平均每秒請(qǐng)求數(shù))

    • 主要參數(shù)

  • 設(shè)置項(xiàng)目  設(shè)置兩個(gè) POST 接口,沒有業(yè)務(wù)邏輯、中間件操作等,如下

/***** 1 普通接口 *****/
// CommonUserController
public function createUser(Request $request)
{
    $this->validate($request, [
        'name' => 'required|string',
        'age'  => 'required|integer',
        'sex'  => ['required', Rule::in([1, 2])],
    ]);
    (new CommonUserModel())->createUser($request['age'], $request['name'], $request['sex'], $request['address'] ?? '');
    return response()->json(['status' => 200, 'msg' => 'ok']);
}
// CommonUserModel
public function createUser($sex, $age, $name, $address)
{
    if(empty($sex) || empty($age) || empty($name))  return false;
    // 省略DB操作
    return true;
}

/***** 2 類型限定接口 *****/
// TypeUserController
public function createUser(Request $request): JsonResponse
{
    $this->validate($request, [
        'name' => 'required|string',
        'age'  => 'required|integer',
        'sex'  => ['required', Rule::in([1, 2])],
    ]);
    (new TypeUserModel())->createUser($request['age'], $request['name'], $request['sex'], $request['address'] ?? '');
    return response()->json(['status' => 200, 'msg' => 'ok']);
}
// TypeUserModel
public function createUser(int $age, string $name, int $sex, string $address): bool
{
    if(empty($sex) || empty($age) || empty($name)){
        return false;
    }
    // 省略DB操作
    return true;
}
(3) 實(shí)施
  • 共進(jìn)行五次壓測(cè),配置及結(jié)果展示如下 (統(tǒng)一刪除:| grep 'Requests per second')

/*****第一次*****/
// 類型限定接口 rps=456.16
ab -n 100  -c 10 -p '/tmp/ab_post_data.json' -T 'application:json'  http://www.laravel_type_test.com/api/type/create_user
// 普通接口 rps=450.12
ab -n 100  -c 10 -p '/tmp/ab_post_data.json' -T 'application:json'  http://www.laravel_type_test.com/api/common/create_user

/*****第二次*****/
// 類型限定接口 rps=506.74
ab -n 1000  -c 100 -p '/tmp/ab_post_data.json' -T 'application:json'  http://www.laravel_type_test.com/api/type/create_user
// 普通接口 rps=491.24
ab -n 1000  -c 100 -p '/tmp/ab_post_data.json' -T 'application:json'  http://www.laravel_type_test.com/api/common/create_user

/*****第三次*****/
// 類型限定接口 rps=238.43 
ab -n 5000  -c 150 -p '/tmp/ab_post_data.json' -T 'application:json' -r http://www.laravel_type_test.com/api/type/create_user
// 普通接口 rps=237.16
ab -n 5000  -c 150 -p '/tmp/ab_post_data.json' -T 'application:json' -r http://www.laravel_type_test.com/api/common/create_user

/*****第四次*****/
// 類型限定接口 rps=209.21
ab -n 10000  -c 150 -p '/tmp/ab_post_data.json' -T 'application:json' -r http://www.laravel_type_test.com/api/type/create_user
// 普通接口 rps=198.01
ab -n 10000  -c 150 -p '/tmp/ab_post_data.json' -T 'application:json' -r http://www.laravel_type_test.com/api/common/create_user

/*****第五次*****/
// 類型限定接口 rps=191.17
ab -n 100000  -c 150 -p '/tmp/ab_post_data.json' -T 'application:json' -r http://www.laravel_type_test.com/api/type/create_user
// 普通接口 rps=190.55
ab -n 100000  -c 150 -p '/tmp/ab_post_data.json' -T 'application:json' -r http://www.laravel_type_test.com/api/common/create_user
(4) 結(jié)果
  • 壓測(cè)不算太嚴(yán)謹(jǐn),結(jié)果僅供參考

  • 類型限定對(duì)性能的提升沒有預(yù)期的大,很微小,不過還是推薦這種寫法

以上是“PHP7函數(shù)類型限定對(duì)性能有沒有影響”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


文章名稱:PHP7函數(shù)類型限定對(duì)性能有沒有影響
轉(zhuǎn)載源于:http://weahome.cn/article/jhgcpj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部