主頁 > 知識庫 > PHP5.5新特性之yield理解與用法實例分析

PHP5.5新特性之yield理解與用法實例分析

熱門標(biāo)簽:地圖標(biāo)注怎么做商戶驗證 400 電話 辦理 兼職做地圖標(biāo)注好賺錢嗎 打開百度地圖標(biāo)注 山東電銷卡外呼系統(tǒng)原理是什么 智能電銷語音機器人資訊 蘇州外呼系統(tǒng)有效果嗎 海南外呼系統(tǒng)方案 亳州企業(yè)外呼系統(tǒng)

本文實例講述了PHP5.5新特性之yield理解與用法。分享給大家供大家參考,具體如下:

yield生成器是php5.5之后出現(xiàn)的,yield提供了一種更容易的方法來實現(xiàn)簡單的迭代對象,相比較定義類實現(xiàn) Iterator 接口的方式,性能開銷和復(fù)雜性大大降低。

yield生成器允許你 在 foreach 代碼塊中寫代碼來迭代一組數(shù)據(jù)而不需要在內(nèi)存中創(chuàng)建一個數(shù)組。

使用示例:

/**
 * 計算平方數(shù)列
 * @param $start
 * @param $stop
 * @return Generator
 */
function squares($start, $stop) {
  if ($start  $stop) {
    for ($i = $start; $i = $stop; $i++) {
      yield $i => $i * $i;
    }
  }
  else {
    for ($i = $start; $i >= $stop; $i--) {
      yield $i => $i * $i; //迭代生成數(shù)組: 鍵=》值
    }
  }
}
foreach (squares(3, 15) as $n => $square) {
  echo $n . 'squared is' . $square . 'br>';
}

輸出:

    3 squared is 9
    4 squared is 16
    5 squared is 25
    ...

示例2:

//對某一數(shù)組進(jìn)行加權(quán)處理
$numbers = array('nike' => 200, 'jordan' => 500, 'adiads' => 800);
//通常方法,如果是百萬級別的訪問量,這種方法會占用極大內(nèi)存
function rand_weight($numbers)
{
  $total = 0;
  foreach ($numbers as $number => $weight) {
    $total += $weight;
    $distribution[$number] = $total;
  }
  $rand = mt_rand(0, $total-1);
  foreach ($distribution as $num => $weight) {
    if ($rand  $weight) return $num;
  }
}
//改用yield生成器
function mt_rand_weight($numbers) {
  $total = 0;
  foreach ($numbers as $number => $weight) {
    $total += $weight;
    yield $number => $total;
  }
}
function mt_rand_generator($numbers)
{
  $total = array_sum($numbers);
  $rand = mt_rand(0, $total -1);
  foreach (mt_rand_weight($numbers) as $num => $weight) {
    if ($rand  $weight) return $num;
  }
}

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php面向?qū)ο蟪绦蛟O(shè)計入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語法入門教程》、《PHP運算與運算符用法總結(jié)》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》

希望本文所述對大家PHP程序設(shè)計有所幫助。

您可能感興趣的文章:
  • PHP 8新特性簡介
  • 簡述PHP7.4 新特性和廢棄的功能
  • php7新特性的理解和比較總結(jié)
  • php7函數(shù),聲明,返回值等新特性介紹
  • PHP新特性之字節(jié)碼緩存和內(nèi)置服務(wù)器
  • PHP新特性詳解之命名空間、性狀與生成器
  • PHP7新特性簡述
  • php 7新特性之類型申明詳解
  • 聊聊 PHP 8 新特性 Attributes

標(biāo)簽:安康 紹興 呼倫貝爾 金華 綏化 溫州 萊蕪 清遠(yuǎn)

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《PHP5.5新特性之yield理解與用法實例分析》,本文關(guān)鍵詞  PHP5.5,新特性,新,特性,之,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《PHP5.5新特性之yield理解與用法實例分析》相關(guān)的同類信息!
  • 本頁收集關(guān)于PHP5.5新特性之yield理解與用法實例分析的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章