欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

php實(shí)現(xiàn)的中秋博餅游戲之?dāng)S骰子并輸出結(jié)果功能詳解

 更新時(shí)間:2017年11月06日 12:04:59   作者:zqifa  
這篇文章主要介紹了php實(shí)現(xiàn)的中秋博餅游戲之?dāng)S骰子并輸出結(jié)果功能,結(jié)合實(shí)例形式分析了php擲骰子的原理及游戲結(jié)果的圖形輸出相關(guān)操作技巧,需要的朋友可以參考下

本文實(shí)例講述了php實(shí)現(xiàn)的中秋博餅游戲之?dāng)S骰子并輸出結(jié)果功能。分享給大家供大家參考,具體如下:

前面講述了php實(shí)現(xiàn)的中秋博餅游戲之繪制骰子圖案功能,純php實(shí)現(xiàn),就要用php來生成圖案,第一步就先繪制骰子圖案。下面就是編碼實(shí)現(xiàn)業(yè)務(wù)邏輯,具體代碼如下:

<?php
class roll
{
  private $_defRank = 'lk';
  public function lottery()
  {
    $dice   = $this->rollDice();
    $format  = $this->formatDice($dice);
    $rank   = $this->getRank($format);
    $rankName = $this->getName($rank);
    return [
      'dice'   => $dice,
      //'format'  => $format,
      'rank'   => $rank,
      'rankName' => $rankName,
    ];
  }
  /**
   * 獲取篩子排名結(jié)果
   * @param $dice
   * @return array
   */
  public function getRes($dice)
  {
    $format  = $this->formatDice($dice);
    $rank   = $this->getRank($format);
    $rankName = $this->getName($rank);
    return [
      'dice'   => $dice,
      'format'  => $format,
      'rank'   => $rank,
      'rankName' => $rankName,
    ];
  }
  /**
   * 擲骰子
   * @return array
   */
  public function rollDice()
  {
    $res = [];
    for ($i = 0; $i < 6; $i++) {
      $res[] = mt_rand(1, 6);
    }
    return $res;
  }
  /**
   * 格式化擲骰子結(jié)果
   * @param array $list
   * @return array
   */
  public function formatDice($list = [])
  {
    $data = [];
    if (count($list) != 6) {
      return $data;
    }
    $data = [
      1 => 0,
      2 => 0,
      3 => 0,
      4 => 0,
      5 => 0,
      6 => 0,
    ];
    foreach ($list as $val) {
      if (isset($data[$val])) {
        $data[$val] += 1;
      }
    }
    foreach ($data as $key => $val) {
      if ($val == 0) {
        unset($data[$key]);
      }
    }
    return $data;
  }
  /**
   * 判斷篩子結(jié)果的大小
   * @param $list
   * @return int|string
   */
  public function getRank($list)
  {
    $ruleList = $this->_getRule();
    $res   = $this->_defRank;
    if (!empty($ruleList)) {
      foreach ($ruleList as $rank => $rankRules) {
        foreach ($rankRules as $rule) {
          foreach ($rule as $dian => $num) {
            if (isset($list[$dian])) {
              if ($list[$dian] == $num) {
                $res = $rank;
              } else {
                //規(guī)則中只要有一條不滿足就跳出當(dāng)前規(guī)則驗(yàn)證
                $res = $this->_defRank;
                break;
              }
            } else {
              //規(guī)則中只要有一條不滿足就跳出當(dāng)前規(guī)則驗(yàn)證
              $res = $this->_defRank;
              break;
            }
          }
          //有一條規(guī)則匹配,跳出循環(huán),
          if ($res != $this->_defRank) {
            break;
          }
        }
        //有一條規(guī)則匹配,跳出循環(huán),
        if ($res != $this->_defRank) {
          break;
        }
      }
    }
    return $res;
  }
  /**
   * 根據(jù)排序獲取擲骰子結(jié)果名稱
   * @param int $rank
   * @return array
   */
  public function getName($rank = NULL)
  {
    $list = [
      'cjh'  => '狀元插金花',
      'lbh'  => '六杯紅',
      'bdj'  => '遍地錦',
      'ww'  => '五王',
      'wzdyx' => '五子帶一秀',
      'wzdk' => '五子登科',
      'zy'  => '狀元',
      'by'  => '榜眼',
      'sh'  => '三紅',
      'sj'  => '四進(jìn)',
      'eq'  => '二舉',
      'yx'  => '一秀',
      'lk'  => '輪空',
    ];
    if (!empty($rank)) {
      $rankName = '';
      if (isset($list[$rank])) {
        $rankName = $list[$rank];
      }
      return $rankName;
    }
    return $list;
  }
  /**
   * 返回規(guī)則
   * @return array
   */
  private function _getRule()
  {
    return [
      'cjh'  => [
        [2 => 2, 4 => 4]
      ],
      'lbh'  => [
        [4 => 6]
      ],
      'bdj'  => [
        [1 => 6],
        [2 => 6],
        [3 => 6],
        [5 => 6],
        [6 => 6],
      ],
      'ww'  => [
        [4 => 5],
      ],
      'wzdyx' => [
        [1 => 5, 4 => 1],
        [2 => 5, 4 => 1],
        [3 => 5, 4 => 1],
        [5 => 5, 4 => 1],
        [6 => 5, 4 => 1],
      ],
      'wzdk' => [
        [1 => 5],
        [2 => 5],
        [3 => 5],
        [5 => 5],
        [6 => 5],
      ],
      'zy'  => [
        [4 => 4]
      ],
      'by'  => [
        [1 => 1, 2 => 1, 3 => 1, 4 => 1, 5 => 1, 6 => 1]
      ],
      'sh'  => [
        [4 => 3]
      ],
      'sj'  => [
        [1 => 4],
        [2 => 4],
        [3 => 4],
        [5 => 4],
        [6 => 4],
      ],
      'eq'  => [
        [4 => 2]
      ],
      'yx'  => [
        [4 => 1]
      ],
    ];
  }
}
$roll = new roll();
$res = $roll->lottery();
echo '<h2>骰子點(diǎn)數(shù):</h2>';
echo '<p>';
foreach($res['dice'] as $val){
  echo '<img src="img.php?num='.$val.'" >';
}
echo '</p>';
echo '<h2>結(jié)果:</h2>';
echo '<h2 style="color:red;">'.$res['rankName'].'</h2>';

其中img.php是使用php生成圖片的文件,參數(shù)num是點(diǎn)數(shù),然后輸出相應(yīng)點(diǎn)數(shù)的圖片,代碼如下:

<?php
class imgDock
{
  public function getImg($num = 0)
  {
    if(!empty($num)){
      header('Content-Type:image/png');
      $img  = imagecreatetruecolor(200, 200);
      $white = imagecolorallocate($img, 255, 255, 255);
      $grey = imagecolorallocate($img, 100, 100, 100);
      $blue = imagecolorallocate($img, 0, 102, 255);
      $red  = imagecolorallocate($img, 255, 0, 0);
      imagefill($img, 0, 0, $white);
      imageline($img, 10, 20, 10, 180, $grey);
      imageline($img, 10, 180, 20, 190, $grey);
      imageline($img, 20, 190, 180, 190, $grey);
      imageline($img, 180, 190, 190, 180, $grey);
      imageline($img, 190, 180, 190, 20, $grey);
      imageline($img, 190, 20, 180, 10, $grey);
      imageline($img, 180, 10, 20, 10, $grey);
      imageline($img, 20, 10, 10, 20, $grey);
      //1/2/3/4/5/6
      switch($num){
        case 1:
          imagefilledarc($img, 100, 100, 50, 50, 0, 0, $blue, IMG_ARC_PIE);
          break;
        case 2:
          imagefilledarc($img, 60, 100, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 140, 100, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          break;
        case 3:
          imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 100, 100, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          break;
        case 4:
          imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          break;
        case 5:
          imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 100, 100, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $blue, IMG_ARC_PIE);
          break;
        case 6:
          imagefilledarc($img, 50, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 50, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 100, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 100, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 150, 150, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          imagefilledarc($img, 150, 50, 40, 40, 0, 0 , $red, IMG_ARC_PIE);
          break;
        default:
          break;
      }
      imagepng($img);
      imagedestroy($img);
    }
  }
}
$num = 0;
if(isset($_GET['num'])){
  $num = intval($_GET['num']);
}
$imgDock = new imgDock();
$imgDock->getImg($num);

下面是我抽中狀元的效果圖,O(∩_∩)O哈哈~

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

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

相關(guān)文章

  • php刪除txt文件指定行及按行讀取txt文檔數(shù)據(jù)的方法

    php刪除txt文件指定行及按行讀取txt文檔數(shù)據(jù)的方法

    這篇文章主要介紹了php刪除txt文件指定行及按行讀取txt文檔數(shù)據(jù)的方法,涉及php針對(duì)txt文件的按行讀取、刪除等操作技巧,需要的朋友可以參考下
    2017-01-01
  • 如何在HTML 中嵌入 PHP 代碼

    如何在HTML 中嵌入 PHP 代碼

    本文給大家分享的是在html中嵌入php代碼的方法,十分的簡(jiǎn)單實(shí)用,有需要的小伙伴可以參考下
    2015-05-05
  • 通過具體程序來理解PHP里面的抽象類

    通過具體程序來理解PHP里面的抽象類

    面向?qū)ο蟪绦蛲ㄟ^類的分層結(jié)構(gòu)構(gòu)建起來. 在單重繼承語言如PHP中, 類的繼承是樹狀的. 一個(gè)根類有一個(gè)或更多的子類,再?gòu)拿總€(gè)子類繼承出一個(gè)或更多下一級(jí)子類.
    2010-01-01
  • php base64 編碼與解碼實(shí)例代碼

    php base64 編碼與解碼實(shí)例代碼

    這篇文章主要介紹了php base64 編碼與解碼實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下
    2017-03-03
  • PHP腳本設(shè)置無限執(zhí)行時(shí)間的四種方法

    PHP腳本設(shè)置無限執(zhí)行時(shí)間的四種方法

    為 PHP 腳本設(shè)置無限執(zhí)行時(shí)間是一個(gè)在特定場(chǎng)景下可能需要的操作,比如執(zhí)行長(zhǎng)時(shí)間運(yùn)行的后臺(tái)任務(wù)、數(shù)據(jù)遷移、大批量數(shù)據(jù)處理等,本文給大家介紹了為PHP腳本設(shè)置無限執(zhí)行時(shí)間的四種方法,需要的朋友可以參考下
    2024-09-09
  • 完美解決thinkphp唯一索引重復(fù)時(shí)出錯(cuò)的問題

    完美解決thinkphp唯一索引重復(fù)時(shí)出錯(cuò)的問題

    下面小編就為大家?guī)硪黄昝澜鉀Qthinkphp唯一索引重復(fù)時(shí)出錯(cuò)的問題。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2017-03-03
  • PHP入門教程之自定義函數(shù)用法詳解(創(chuàng)建,調(diào)用,變量,參數(shù),返回值等)

    PHP入門教程之自定義函數(shù)用法詳解(創(chuàng)建,調(diào)用,變量,參數(shù),返回值等)

    這篇文章主要介紹了PHP入門教程之自定義函數(shù)用法,結(jié)合實(shí)例形式分析了php關(guān)于自定義函數(shù)的創(chuàng)建、返回值、參數(shù)、調(diào)用方法以及全局變量、魔法常量的使用等相關(guān)技巧,需要的朋友可以參考下
    2016-09-09
  • PHP5的版本和PHP7之間的區(qū)別詳解

    PHP5的版本和PHP7之間的區(qū)別詳解

    PHP7相比與PHP5有比較大的調(diào)整,它們之間有很多區(qū)別,本篇博文將介紹PHP5和PHP7在底層調(diào)整和應(yīng)用層上的主要區(qū)別,文中通過代碼示例講解的非常詳細(xì),需要的朋友可以參考下
    2023-11-11
  • PHP數(shù)組操作匯總 php數(shù)組的使用技巧

    PHP數(shù)組操作匯總 php數(shù)組的使用技巧

    對(duì)于Web編程來說,最重要的就是存取和讀寫數(shù)據(jù)了。存儲(chǔ)方式可能有很多種,可以是字符串、數(shù)組、文件的形式等。
    2011-07-07
  • php開發(fā)中的頁面跳轉(zhuǎn)方法總結(jié)

    php開發(fā)中的頁面跳轉(zhuǎn)方法總結(jié)

    PHP頁面跳轉(zhuǎn)實(shí)現(xiàn)的功能就是將網(wǎng)站中一個(gè)網(wǎng)頁跳轉(zhuǎn)到另一個(gè)網(wǎng)頁中。對(duì)于剛剛學(xué)習(xí)PHP語言的朋友來說,是必須要掌握的基礎(chǔ)方法。
    2015-04-04

最新評(píng)論