最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

php實現(xiàn)的中秋博餅游戲之擲骰子并輸出結(jié)果功能詳解

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

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

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

<?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ī)則中只要有一條不滿足就跳出當前規(guī)則驗證
                $res = $this->_defRank;
                break;
              }
            } else {
              //規(guī)則中只要有一條不滿足就跳出當前規(guī)則驗證
              $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'  => '四進',
      '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>骰子點數(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是點數(shù),然后輸出相應點數(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è)計入門教程》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總

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

相關(guān)文章

  • 5款適合PHP使用的HTML編輯器推薦

    5款適合PHP使用的HTML編輯器推薦

    這篇文章主要介紹了5款適合PHP使用的HTML編輯器推薦,這些所見即所得在線HTML編輯器都離不開JavaScript,但都非常適合PHP環(huán)境使用,需要的朋友可以參考下
    2015-07-07
  • PHP spl_autoload_register實現(xiàn)自動加載研究

    PHP spl_autoload_register實現(xiàn)自動加載研究

    spl_autoload_register()函數(shù)應該是主流框架使用最多的也是非常核心的函數(shù)之一,可實現(xiàn)自動注冊函數(shù)和類,實現(xiàn)類似__autoload() 函數(shù)功能,簡化了類的調(diào)用與加載,提高了工作的效率
    2011-12-12
  • php文本操作方法集合比較

    php文本操作方法集合比較

    fgets和fputs、fread和fwrite、fscanf和fprintf
    2008-07-07
  • ThinkPHP自動驗證失敗的解決方法

    ThinkPHP自動驗證失敗的解決方法

    引用ThinkPHP2.0開發(fā)手冊:ThinkPHP手冊類型檢查只是針對數(shù)據(jù)庫級別的驗證,所以系統(tǒng)還內(nèi)置了數(shù)據(jù)對象的自動驗證功能來完成模型的業(yè)務規(guī)則驗證,而大多數(shù)情況下面,數(shù)據(jù)對象是由表單提交的$_POST數(shù)據(jù)創(chuàng)建。
    2011-06-06
  • php中常用的預定義變量小結(jié)

    php中常用的預定義變量小結(jié)

    常用的php預定義變量,需要的朋友可以收藏下,方便以后使用
    2012-05-05
  • php循環(huán)輸出數(shù)據(jù)庫內(nèi)容的代碼

    php循環(huán)輸出數(shù)據(jù)庫內(nèi)容的代碼

    今天書寫php的循環(huán)輸出內(nèi)容,總發(fā)現(xiàn)第一篇不能現(xiàn)實,原來是用php do while語句,后來改成while所以出現(xiàn)這個問題,都怪學藝不精啊,特整理下
    2008-05-05
  • PHP實現(xiàn)的sqlite數(shù)據(jù)庫連接類

    PHP實現(xiàn)的sqlite數(shù)據(jù)庫連接類

    這篇文章主要介紹了PHP實現(xiàn)的sqlite數(shù)據(jù)庫連接類,涉及針對SQLite數(shù)據(jù)庫的連接與增刪改查等sql操作用法,非常具有實用價值,需要的朋友可以參考下
    2014-12-12
  • php下MYSQL limit的優(yōu)化

    php下MYSQL limit的優(yōu)化

    MYSQL的優(yōu)化是非常重要的。其他最常用也最需要優(yōu)化的就是limit。mysql的limit給分頁帶來了極大的方便,但數(shù)據(jù)量一大的時候,limit的性能就急劇下降。
    2008-01-01
  • PHP ADODB生成HTML表格函數(shù)rs2html功能【附錯誤處理函數(shù)用法】

    PHP ADODB生成HTML表格函數(shù)rs2html功能【附錯誤處理函數(shù)用法】

    這篇文章主要介紹了PHP ADODB生成HTML表格函數(shù)rs2html功能,結(jié)合實例形式分析了php使用ADODB類使用函數(shù)rs2html輸出結(jié)果集生成HTML表格相關(guān)操作技巧,并附錯誤處理函數(shù)errorMsg用法,需要的朋友可以參考下
    2018-05-05
  • Php-Redis安裝測試筆記

    Php-Redis安裝測試筆記

    這篇文章主要介紹了Php-Redis安裝測試筆記,本文講解了redis安裝、redis測試、安裝phpredis擴展、測試php-redis等內(nèi)容,需要的朋友可以參考下
    2015-03-03

最新評論

民县| 上虞市| 新泰市| 沅陵县| 喀喇沁旗| 凤山县| 杭锦后旗| 兴和县| 勐海县| 车致| 莲花县| 大理市| 青铜峡市| 黄梅县| 迭部县| 汾阳市| 彩票| 武宁县| 拉萨市| 纳雍县| 香港 | 呼玛县| 土默特左旗| 拜城县| 隆子县| 巴楚县| 明溪县| 玛多县| 肇东市| 五常市| 荔浦县| 芮城县| 呼图壁县| 平原县| 清涧县| 清远市| 岳池县| 霍州市| 大竹县| 丽江市| 巴林右旗|