search
HomeBackend DevelopmentPHP TutorialUse PHP to implement 24 o'clock game on WeChat public platform_PHP tutorial

Use PHP to implement the 24 o'clock game on the WeChat public platform. The server is built as SAE, so many statements are different from MYSQL. The 24 o'clock database is stored in 24data. The results are first calculated using python and then stored in a local txt file and finally poured into it. SAE's MYSQL records all four numbers with solutions. WeChat ID can be added: 24 o'clock.

//define your token
define("TOKEN", "ddwm");
define("INPUT_NAME", "1");
define("START_GAME", "2");
define("TIMING_START", "3");
define("TIMING_END", "4");


$wechatObj = new Why24Point();

if ($_GET["echostr"])
    $wechatObj--->valid();
else
    $wechatObj->responseMsg();

class Why24Point {

    public function responseMsg() {
        //get post data, May be due to the different environments
        $postStr = $GLOBALS["HTTP_RAW_POST_DATA"];

        //extract post data
        if (!empty($postStr)) {
            $postObj = simplexml_load_string($postStr, 'SimpleXMLElement', LIBXML_NOCDATA);
            $fromUsername = $postObj->FromUserName;
            $toUsername = $postObj->ToUserName;
			if($postObj->Event == "subscribe"){
				$time = time();
				$textTpl = " <xml>
						 <tousername><!--[CDATA[%s]]--></tousername>
						 <fromusername><!--[CDATA[%s]]--></fromusername>
						 <createtime>%s</createtime>
						 <msgtype><!--[CDATA[%s]]--></msgtype>
						 <content><!--[CDATA[%s]]--></content>
						 </xml>";
				$msgType = "text";
				$contentStr = "哟你好亲爱的小伙伴,欢迎来到24点~\n游戏规则:使用+-*/四则运算得出结果为24即可。\n任何时候输入 主页 返回主菜单,\n输入 排名 查看当前排名哟~\n如果有情况反馈请发送语音信息!\n请输入任意内容,开始我们的24点职业生涯!";
				$resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
				echo $resultStr;
			}
            $keyword = trim($postObj->Content);
            $time = time();
            $textTpl = " <xml>
						 <tousername><!--[CDATA[%s]]--></tousername>
						 <fromusername><!--[CDATA[%s]]--></fromusername>
						 <createtime>%s</createtime>
						 <msgtype><!--[CDATA[%s]]--></msgtype>
						 <content><!--[CDATA[%s]]--></content>
						 </xml>";
            if (!empty($keyword)) {
                $msgType = "text";
                $contentStr = $this->getData($fromUsername, $keyword);
                $resultStr = sprintf($textTpl, $fromUsername, $toUsername, $time, $msgType, $contentStr);
                echo $resultStr;
            } else {
                echo "输入点东西吧。。";
            }
        } else {
            echo "";
            exit;
        }
    }

    private function getData($fromUsername, $keyword) {
		if($keyword == "主页"){
			$this->setStep($fromUsername, constant("START_GAME"));
            return "欢迎来到24点的决战现场。请输入任意内容,开始我们的24点职业生涯!任何时候输入 主页 返回主菜单,输入 排名 查看当前排名~";
		}

		if($keyword == "排名"){
            return "您的目前排名是:".$this->getRank($fromUsername);
		}


        if ($this->isFirst($fromUsername)) {
            return "这是你第一次参加游戏,请输入你的用户昵称:";
        }

        if ($this->getStep($fromUsername) == constant("INPUT_NAME")) {
            $this->setName($fromUsername, $keyword);
            $this->setStep($fromUsername, constant("START_GAME"));
            return "你好," . $keyword . "同学。请输入任意内容,开始我们的24点职业生涯!任何时候输入 主页 返回主菜单,输入 排名 查看当前排名~";
        }

        if ($this->getStep($fromUsername) == constant("START_GAME")) {
            $numbers = $this->getNumbers();
            $this->setStep($fromUsername, constant("TIMING_START"));
            return "游戏规则:使用+-*/四则运算得出结果为24即可。\n请听题!" . $this->getNumbers();
        }

        if ($this->getStep($fromUsername) == constant("TIMING_START")) {
            if ($this->calcStr($keyword)) {
				//$this->setStep($fromUsername, constant("TIMING_END"));
				$this->setGrade($fromUsername, 5);
				$this->setStep($fromUsername, constant("START_GAME"));
				return "结果等于24!你现在的分数是:".$this->getGrade($fromUsername);
            }
            
			return "结果错误!骗子,根本就不等于24!";
            
            //$this->setStep($fromUsername, constant("TIMING_END"));
        }

        return "我擦,系统出问题了。抱了个歉哈!";
    }

	//计算排名
	private function getRank($fromUsername){
		$mysql = new SaeMysql();
		$grade = $this->getGrade($fromUsername);
		$sql = "SELECT COUNT( * ) FROM  `24points` WHERE  `grade` > ".$grade."";
        $mysql->closeDb();
        return intval($mysql->getVar($sql))+1;
	}

	//计算成绩
	private function setGrade($fromUsername, $add){
		$mysql = new SaeMysql();
		$sql = "SELECT grade FROM  `24points` WHERE  `userid` = &#39;" . $fromUsername . "&#39;";
        $grade = intval($mysql->getVar($sql)) + $add;
        $sql = "UPDATE  `24points` SET  `grade` =  &#39;" . $grade . "&#39; WHERE  `userid` =&#39;" . $fromUsername . "&#39;;";
        $mysql->runSql($sql);
        $mysql->closeDb();
	}
	
	//获得成绩
	private function getGrade($fromUsername){
		$mysql = new SaeMysql();
		$sql = "SELECT grade FROM  `24points` WHERE  `userid` = &#39;" . $fromUsername . "&#39;";
        $mysql->closeDb();
        return intval($mysql->getVar($sql));
	}


	//计算等式,返回正确或者错误
    private function calcStr($keyword) {
		$keyword = str_replace("(","(",$keyword);
		$keyword = str_replace(")",")",$keyword);		
		$keyword = str_replace("&divide;","/",$keyword);
		$keyword = str_replace("/","/",$keyword);
		$keyword = str_replace("&times;","*",$keyword);
        $atr_arr = str_split($keyword);
        $new_atr = &#39;&#39;;
        for ($i = 0; $i < strlen($keyword); $i++) {
            $new_atr = $new_atr . $atr_arr[$i];
        }
        $s = eval("return $new_atr;");
        if ($s == 24) {
            return true;
        }

        return false;
    }

	//是否是第一次
    private function isFirst($fromUsername) {
        $mysql = new SaeMysql();
        $sql = "SELECT * FROM  `24points` WHERE  `userid` = &#39;" . $fromUsername . "&#39;";
        $data = $mysql->getData($sql);
        if (count($data) == 0) {
            $sql = "INSERT INTO `24points` (`userid`, `step`) VALUES (&#39;" . $fromUsername . "&#39;, &#39;" . constant("INPUT_NAME") . "&#39;);";
            $mysql->runSql($sql);
            $mysql->closeDb();
            return true;
        }
        return false;
    }

	//获取当前的步骤
    private function getStep($fromUsername) {
        $mysql = new SaeMysql();
        $sql = "SELECT step FROM  `24points` WHERE  `userid` = &#39;" . $fromUsername . "&#39;";
        $mysql->closeDb();
        return $mysql->getVar($sql);
    }

	//获取随机的四个数字用空格隔开
    private function getNumbers() {
        $rand_id = rand(1, 1362);
        $mysql = new SaeMysql();
        $sql = "SELECT num1 FROM  `24data` WHERE  `id` = &#39;" . $rand_id . "&#39;";
        $num1 = $mysql->getVar($sql);
        $sql = "SELECT num2 FROM  `24data` WHERE  `id` = &#39;" . $rand_id . "&#39;";
        $num2 = $mysql->getVar($sql);
        $sql = "SELECT num3 FROM  `24data` WHERE  `id` = &#39;" . $rand_id . "&#39;";
        $num3 = $mysql->getVar($sql);
        $sql = "SELECT num4 FROM  `24data` WHERE  `id` = &#39;" . $rand_id . "&#39;";
        $num4 = $mysql->getVar($sql);
        $mysql->closeDb();
        $numbers = $num1 . " " . $num2 . " " . $num3 . " " . $num4;
        return $numbers;
    }

	//设置当前操作的步数
    private function setStep($fromUsername, $step) {
        $mysql = new SaeMysql();
        $sql = "UPDATE  `24points` SET  `step` =  &#39;" . $step . "&#39; WHERE  `userid` =&#39;" . $fromUsername . "&#39;;";
        $mysql->runSql($sql);
        $mysql->closeDb();
    }

	//设置用户昵称
    private function setName($fromUsername, $username) {
        $mysql = new SaeMysql();
        $sql = "UPDATE  `24points` SET  `username` =  &#39;" . $username . "&#39; WHERE  `userid` =&#39;" . $fromUsername . "&#39;;";
        $mysql->runSql($sql);
        $mysql->closeDb();
    }



	//验证微信
    public function valid() {
        $echoStr = $_GET["echostr"];
        //valid signature , option
        if ($this->checkSignature()) {
            echo $echoStr;
            exit;
        }
    }

	//检查签名
    private function checkSignature() {
        $signature = $_GET["signature"];
        $timestamp = $_GET["timestamp"];
        $nonce = $_GET["nonce"];

        $token = TOKEN;
        $tmpArr = array($token, $timestamp, $nonce);
        sort($tmpArr);
        $tmpStr = implode($tmpArr);
        $tmpStr = sha1($tmpStr);

        if ($tmpStr == $signature) {
            return true;
        } else {
            return false;
        }
    }
}



1 1 1 8
1 1 1 11
1 1 1 12
1 1 1 13
1 1 2 6
1 1 2 7
1 1 2 8
1 1 2 9
1 1 2 10
1 1 2 11
1 1 2 12
1 1 2 13
1 1 3 4
1 1 3 5
1 1 3 6
1 1 3 7
1 1 3 8
1 1 3 9
1 1 3 10
1 1 3 11
1 1 3 12
1 1 3 13
1 1 4 4
1 1 4 5
1 1 4 6
1 1 4 7
1 1 4 8
1 1 4 9
1 1 4 10
1 1 4 12
1 1 5 5
1 1 5 6
1 1 5 7
1 1 5 8
1 1 6 6
1 1 6 8
1 1 6 9
1 1 6 12
1 1 7 10
1 1 8 8
1 1 9 13
1 1 10 12
1 1 10 13
1 1 11 11
1 1 11 12
1 1 11 13
1 1 12 12
1 1 12 13
1 1 13 13
1 2 2 4
1 2 2 5
1 2 2 6
1 2 2 7
1 2 2 8
1 2 2 9
1 2 2 10
1 2 2 11
1 2 2 12
1 2 2 13
1 2 3 3
1 2 3 4
1 2 3 5
1 2 3 6
1 2 3 7
1 2 3 8
1 2 3 9
1 2 3 10
1 2 3 11
1 2 3 12
1 2 3 13
1 2 4 4
1 2 4 5
1 2 4 6
1 2 4 7
1 2 4 8
1 2 4 9
1 2 4 10
1 2 4 11
1 2 4 12
1 2 4 13
1 2 5 5
1 2 5 6
1 2 5 7
1 2 5 8
1 2 5 9
1 2 5 10
1 2 5 12
1 2 5 13
1 2 6 6
1 2 6 7
1 2 6 8
1 2 6 9
1 2 6 10
1 2 6 11
1 2 6 12
1 2 6 13
1 2 7 7
1 2 7 8
1 2 7 9
1 2 7 10
1 2 7 11
1 2 7 12
1 2 8 8
1 2 8 9
1 2 8 10
1 2 8 13
1 2 9 11
1 2 9 12
1 2 9 13
1 2 10 11
1 2 10 12
1 2 10 13
1 2 11 11
1 2 11 12
1 2 11 13
1 2 12 12
1 2 12 13
1 2 13 13
1 3 3 3
1 3 3 4
1 3 3 5
1 3 3 6
1 3 3 7
1 3 3 8
1 3 3 9
1 3 3 10
1 3 3 11
1 3 3 12
1 3 4 4
1 3 4 5
1 3 4 6
1 3 4 7
1 3 4 8
1 3 4 9
1 3 4 10
1 3 4 11
1 3 4 12
1 3 4 13
1 3 5 6
1 3 5 7
1 3 5 8
1 3 5 9
1 3 5 10
1 3 5 11
1 3 5 12
1 3 5 13
1 3 6 6
1 3 6 7
1 3 6 8
1 3 6 9
1 3 6 10
1 3 6 11
1 3 6 12
1 3 6 13
1 3 7 7
1 3 7 8
1 3 7 9
1 3 7 10
1 3 7 12
1 3 7 13
1 3 8 8
1 3 8 9
1 3 8 10
1 3 8 11
1 3 8 12
1 3 8 13
1 3 9 9
1 3 9 10
1 3 9 11
1 3 9 12
1 3 9 13
1 3 10 10
1 3 10 11
1 3 10 12
1 3 11 11
1 3 11 12
1 3 12 12
1 3 12 13
1 3 13 13
1 4 4 4
1 4 4 5
1 4 4 6
1 4 4 7
1 4 4 8
1 4 4 9
1 4 4 10
1 4 4 11
1 4 4 12
1 4 5 5
1 4 5 6
1 4 5 7
1 4 5 8
1 4 5 9
1 4 5 10
1 4 5 11
1 4 5 12
1 4 5 13
1 4 6 6
1 4 6 7
1 4 6 8
1 4 6 9
1 4 6 10
1 4 6 11
1 4 6 12
1 4 6 13
1 4 7 7
1 4 7 8
1 4 7 9
1 4 7 11
1 4 7 12
1 4 7 13
1 4 8 8
1 4 8 9
1 4 8 11
1 4 8 12
1 4 8 13
1 4 9 10
1 4 9 11
1 4 9 12
1 4 9 13
1 4 10 10
1 4 10 11
1 4 10 12
1 4 12 12
1 5 5 5
1 5 5 6
1 5 5 9
1 5 5 10
1 5 5 11
1 5 5 12
1 5 5 13
1 5 6 6
1 5 6 7
1 5 6 8
1 5 6 9
1 5 6 10
1 5 6 11
1 5 6 12
1 5 6 13
1 5 7 8
1 5 7 9
1 5 7 10
1 5 7 11
1 5 7 12
1 5 7 13
1 5 8 8
1 5 8 9
1 5 8 10
1 5 8 11
1 5 8 12
1 5 8 13
1 5 9 9
1 5 9 10
1 5 9 11
1 5 9 12
1 5 9 13
1 5 10 10
1 5 10 11
1 5 10 12
1 5 10 13
1 5 11 11
1 5 11 12
1 5 12 12
1 6 6 6
1 6 6 8
1 6 6 9
1 6 6 10
1 6 6 11
1 6 6 12
1 6 6 13
1 6 7 9
1 6 7 10
1 6 7 11
1 6 7 12
1 6 8 8
1 6 8 9
1 6 8 10
1 6 8 11
1 6 8 12
1 6 8 13
1 6 9 9
1 6 9 10
1 6 9 12
1 6 9 13
1 6 10 12
1 6 10 13
1 6 11 12
1 6 11 13
1 6 12 12
1 6 12 13
1 7 7 9
1 7 7 10
1 7 7 11
1 7 7 12
1 7 8 8
1 7 8 9
1 7 8 10
1 7 8 11
1 7 8 12
1 7 9 9
1 7 9 10
1 7 9 11
1 7 9 12
1 7 9 13
1 7 10 12
1 7 10 13
1 7 12 12
1 7 12 13
1 7 13 13
1 8 8 8
1 8 8 9
1 8 8 10
1 8 8 11
1 8 8 12
1 8 9 11
1 8 9 12
1 8 9 13
1 8 10 11
1 8 10 12
1 8 10 13
1 8 11 12
1 8 11 13
1 8 12 12
1 9 9 12
1 9 10 12
1 9 10 13
1 9 11 11
1 9 11 12
1 9 11 13
1 9 12 12
1 10 10 12
1 10 11 12
1 10 12 12
1 10 12 13
1 11 11 12
1 11 11 13
1 11 12 12
1 11 12 13
1 11 13 13
1 12 12 12
1 12 12 13
1 12 13 13
2 2 2 3
2 2 2 4
2 2 2 5
2 2 2 7
2 2 2 8
2 2 2 9
2 2 2 10
2 2 2 11
2 2 2 12
2 2 2 13
2 2 3 3
2 2 3 4
2 2 3 5
2 2 3 6
2 2 3 7
2 2 3 8
2 2 3 9
2 2 3 10
2 2 3 11
2 2 3 12
2 2 3 13
2 2 4 4
2 2 4 5
2 2 4 6
2 2 4 7
2 2 4 8
2 2 4 9
2 2 4 10
2 2 4 11
2 2 4 12
2 2 4 13
2 2 5 5
2 2 5 6
2 2 5 7
2 2 5 8
2 2 5 9
2 2 5 10
2 2 5 11
2 2 5 12
2 2 6 6
2 2 6 7
2 2 6 8
2 2 6 9
2 2 6 10
2 2 6 11
2 2 6 12
2 2 6 13
2 2 7 7
2 2 7 8
2 2 7 10
2 2 7 12
2 2 7 13
2 2 8 8
2 2 8 9
2 2 8 10
2 2 8 12
2 2 9 10
2 2 9 11
2 2 9 12
2 2 10 10
2 2 10 11
2 2 10 13
2 2 11 11
2 2 11 12
2 2 11 13
2 2 12 12
2 2 12 13
2 2 13 13
2 3 3 3
2 3 3 5
2 3 3 6
2 3 3 7
2 3 3 8
2 3 3 9
2 3 3 10
2 3 3 11
2 3 3 12
2 3 3 13
2 3 4 4
2 3 4 5
2 3 4 6
2 3 4 7
2 3 4 8
2 3 4 9
2 3 4 10
2 3 4 11
2 3 4 12
2 3 4 13
2 3 5 5
2 3 5 6
2 3 5 7
2 3 5 8
2 3 5 9
2 3 5 10
2 3 5 11
2 3 5 12
2 3 5 13
2 3 6 6
2 3 6 7
2 3 6 8
2 3 6 9
2 3 6 10
2 3 6 11
2 3 6 12
2 3 6 13
2 3 7 7
2 3 7 8
2 3 7 9
2 3 7 10
2 3 7 11
2 3 7 12
2 3 7 13
2 3 8 8
2 3 8 9
2 3 8 10
2 3 8 11
2 3 8 12
2 3 8 13
2 3 9 9
2 3 9 10
2 3 9 12
2 3 9 13
2 3 10 10
2 3 10 12
2 3 10 13
2 3 11 11
2 3 11 12
2 3 11 13
2 3 12 12
2 3 12 13
2 3 13 13
2 4 4 4
2 4 4 5
2 4 4 6
2 4 4 7
2 4 4 8
2 4 4 9
2 4 4 10
2 4 4 11
2 4 4 12
2 4 4 13
2 4 5 5
2 4 5 6
2 4 5 7
2 4 5 8
2 4 5 9
2 4 5 10
2 4 5 11
2 4 5 12
2 4 5 13
2 4 6 6
2 4 6 7
2 4 6 8
2 4 6 9
2 4 6 10
2 4 6 11
2 4 6 12
2 4 6 13
2 4 7 7
2 4 7 8
2 4 7 9
2 4 7 10
2 4 7 11
2 4 7 12
2 4 8 8
2 4 8 9
2 4 8 10
2 4 8 11
2 4 8 12
2 4 8 13
2 4 9 9
2 4 9 10
2 4 9 12
2 4 9 13
2 4 10 10
2 4 10 11
2 4 10 12
2 4 10 13
2 4 11 11
2 4 11 12
2 4 12 12
2 4 13 13
2 5 5 7
2 5 5 8
2 5 5 9
2 5 5 10
2 5 5 11
2 5 5 12
2 5 5 13
2 5 6 6
2 5 6 7
2 5 6 8
2 5 6 9
2 5 6 10
2 5 6 11
2 5 6 12
2 5 6 13
2 5 7 7
2 5 7 8
2 5 7 9
2 5 7 10
2 5 7 11
2 5 7 13
2 5 8 8
2 5 8 9
2 5 8 10
2 5 8 11
2 5 8 12
2 5 8 13
2 5 9 10
2 5 9 11
2 5 9 12
2 5 10 10
2 5 10 11
2 5 10 12
2 5 10 13
2 5 11 12
2 5 12 12
2 5 12 13
2 6 6 6
2 6 6 7
2 6 6 8
2 6 6 9
2 6 6 10
2 6 6 11
2 6 6 12
2 6 6 13
2 6 7 8
2 6 7 9
2 6 7 10
2 6 7 11
2 6 7 12
2 6 7 13
2 6 8 8
2 6 8 9
2 6 8 10
2 6 8 11
2 6 8 12
2 6 8 13
2 6 9 9
2 6 9 10
2 6 9 11
2 6 9 12
2 6 10 10
2 6 10 11
2 6 10 12
2 6 10 13
2 6 11 12
2 6 11 13
2 6 12 12
2 6 12 13
2 7 7 8
2 7 7 10
2 7 7 11
2 7 7 12
2 7 7 13
2 7 8 8
2 7 8 9
2 7 8 11
2 7 8 12
2 7 8 13
2 7 9 10
2 7 9 11
2 7 9 13
2 7 10 10
2 7 10 11
2 7 10 12
2 7 11 12
2 7 12 12
2 7 12 13
2 8 8 8
2 8 8 9
2 8 8 10
2 8 8 11
2 8 8 12
2 8 8 13
2 8 9 9
2 8 9 10
2 8 9 11
2 8 9 12
2 8 9 13
2 8 10 10
2 8 10 11
2 8 10 12
2 8 10 13
2 8 11 11
2 8 11 12
2 8 12 12
2 8 12 13
2 8 13 13
2 9 9 11
2 9 9 12
2 9 9 13
2 9 10 10
2 9 10 11
2 9 10 12
2 9 10 13
2 9 11 11
2 9 11 13
2 9 12 13
2 9 13 13
2 10 10 11
2 10 10 12
2 10 10 13
2 10 11 11
2 10 11 12
2 10 11 13
2 10 12 13
2 11 11 11
2 11 11 12
2 11 11 13
2 11 12 12
2 11 12 13
2 11 13 13
2 12 12 12
2 12 12 13
2 12 13 13
2 13 13 13
3 3 3 3
3 3 3 4
3 3 3 5
3 3 3 6
3 3 3 7
3 3 3 8
3 3 3 9
3 3 3 10
3 3 3 11
3 3 3 12
3 3 4 4
3 3 4 5
3 3 4 6
3 3 4 7
3 3 4 8
3 3 4 9
3 3 4 11
3 3 4 12
3 3 4 13
3 3 5 5
3 3 5 6
3 3 5 7
3 3 5 9
3 3 5 10
3 3 5 12
3 3 5 13
3 3 6 6
3 3 6 7
3 3 6 8
3 3 6 9
3 3 6 10
3 3 6 11
3 3 6 12
3 3 6 13
3 3 7 7
3 3 7 8
3 3 7 9
3 3 7 11
3 3 7 12
3 3 7 13
3 3 8 8
3 3 8 9
3 3 8 10
3 3 8 12
3 3 8 13
3 3 9 9
3 3 9 10
3 3 9 11
3 3 9 12
3 3 9 13
3 3 10 13
3 3 11 12
3 3 11 13
3 3 12 12
3 3 12 13
3 4 4 4
3 4 4 5
3 4 4 6
3 4 4 7
3 4 4 8
3 4 4 9
3 4 4 10
3 4 4 11
3 4 4 12
3 4 4 13
3 4 5 5
3 4 5 6
3 4 5 7
3 4 5 8
3 4 5 9
3 4 5 10
3 4 5 11
3 4 5 12
3 4 5 13
3 4 6 6
3 4 6 8
3 4 6 9
3 4 6 10
3 4 6 11
3 4 6 12
3 4 6 13
3 4 7 7
3 4 7 8
3 4 7 9
3 4 7 10
3 4 7 11
3 4 7 12
3 4 8 9
3 4 8 10
3 4 8 11
3 4 8 12
3 4 8 13
3 4 9 9
3 4 9 11
3 4 9 12
3 4 9 13
3 4 10 10
3 4 10 12
3 4 10 13
3 4 11 12
3 4 11 13
3 4 12 12
3 4 12 13
3 5 5 6
3 5 5 7
3 5 5 8
3 5 5 9
3 5 5 11
3 5 5 12
3 5 6 6
3 5 6 7
3 5 6 8
3 5 6 9
3 5 6 10
3 5 6 11
3 5 6 12
3 5 6 13
3 5 7 8
3 5 7 9
3 5 7 10
3 5 7 11
3 5 7 12
3 5 7 13
3 5 8 8
3 5 8 9
3 5 8 11
3 5 8 12
3 5 8 13
3 5 9 9
3 5 9 10
3 5 9 12
3 5 9 13
3 5 10 10
3 5 10 11
3 5 10 12
3 5 10 13
3 5 11 11
3 5 11 12
3 5 12 12
3 5 12 13
3 5 13 13
3 6 6 6
3 6 6 7
3 6 6 8
3 6 6 9
3 6 6 10
3 6 6 11
3 6 6 12
3 6 6 13
3 6 7 7
3 6 7 8
3 6 7 9
3 6 7 10
3 6 7 12
3 6 7 13
3 6 8 8
3 6 8 9
3 6 8 10
3 6 8 12
3 6 8 13
3 6 9 9
3 6 9 10
3 6 9 11
3 6 9 12
3 6 9 13
3 6 10 10
3 6 10 11
3 6 10 12
3 6 11 11
3 6 11 12
3 6 11 13
3 6 12 12
3 6 12 13
3 6 13 13
3 7 7 7
3 7 7 8
3 7 7 9
3 7 7 10
3 7 7 12
3 7 7 13
3 7 8 8
3 7 8 9
3 7 8 11
3 7 8 12
3 7 8 13
3 7 9 9
3 7 9 10
3 7 9 11
3 7 9 12
3 7 9 13
3 7 10 10
3 7 10 11
3 7 10 13
3 7 11 11
3 7 11 12
3 7 12 12
3 7 12 13
3 7 13 13
3 8 8 8
3 8 8 9
3 8 8 10
3 8 8 11
3 8 8 12
3 8 9 9
3 8 9 10
3 8 9 11
3 8 9 12
3 8 9 13
3 8 10 10
3 8 10 11
3 8 10 12
3 8 11 11
3 8 11 12
3 8 12 12
3 8 12 13
3 8 13 13
3 9 9 9
3 9 9 10
3 9 9 11
3 9 9 12
3 9 9 13
3 9 10 10
3 9 10 11
3 9 10 12
3 9 10 13
3 9 11 11
3 9 11 12
3 9 11 13
3 9 12 12
3 9 12 13
3 9 13 13
3 10 10 12
3 10 11 12
3 10 11 13
3 11 11 12
3 11 12 12
3 12 12 12
3 12 12 13
3 12 13 13
4 4 4 4
4 4 4 5
4 4 4 6
4 4 4 7
4 4 4 8
4 4 4 9
4 4 4 10
4 4 4 11
4 4 4 12
4 4 5 5
4 4 5 6
4 4 5 7
4 4 5 8
4 4 5 10
4 4 5 11
4 4 5 12
4 4 5 13
4 4 6 8
4 4 6 9
4 4 6 10
4 4 6 11
4 4 6 12
4 4 6 13
4 4 7 7
4 4 7 8
4 4 7 9
4 4 7 10
4 4 7 12
4 4 7 13
4 4 8 8
4 4 8 9
4 4 8 10
4 4 8 11
4 4 8 12
4 4 8 13
4 4 9 11
4 4 9 12
4 4 10 10
4 4 10 12
4 4 10 13
4 4 11 12
4 4 11 13
4 4 12 12
4 4 12 13
4 5 5 5
4 5 5 6
4 5 5 7
4 5 5 8
4 5 5 9
4 5 5 10
4 5 6 6
4 5 6 7
4 5 6 8
4 5 6 9
4 5 6 10
4 5 6 11
4 5 6 12
4 5 6 13
4 5 7 7
4 5 7 8
4 5 7 9
4 5 7 10
4 5 7 11
4 5 7 12
4 5 7 13
4 5 8 8
4 5 8 9
4 5 8 10
4 5 8 11
4 5 8 12
4 5 8 13
4 5 9 9
4 5 9 10
4 5 9 12
4 5 9 13
4 5 10 10
4 5 10 11
4 5 10 12
4 5 10 13
4 5 11 11
4 5 11 12
4 5 11 13
4 5 12 12
4 5 12 13
4 5 13 13
4 6 6 6
4 6 6 7
4 6 6 8
4 6 6 9
4 6 6 10
4 6 6 12
4 6 7 7
4 6 7 8
4 6 7 9
4 6 7 10
4 6 7 12
4 6 8 8
4 6 8 9
4 6 8 10
4 6 8 12
4 6 8 13
4 6 9 9
4 6 9 10
4 6 9 12
4 6 9 13
4 6 10 10
4 6 10 11
4 6 10 12
4 6 11 11
4 6 11 12
4 6 12 12
4 6 12 13
4 6 13 13
4 7 7 7
4 7 7 8
4 7 7 11
4 7 8 8
4 7 8 9
4 7 8 10
4 7 8 11
4 7 8 12
4 7 8 13
4 7 9 9
4 7 9 10
4 7 9 11
4 7 9 12
4 7 9 13
4 7 10 10
4 7 10 11
4 7 10 12
4 7 11 11
4 7 11 12
4 7 11 13
4 7 12 12
4 7 12 13
4 7 13 13
4 8 8 8
4 8 8 9
4 8 8 10
4 8 8 11
4 8 8 12
4 8 8 13
4 8 9 9
4 8 9 10
4 8 9 11
4 8 9 12
4 8 9 13
4 8 10 10
4 8 10 11
4 8 10 12
4 8 11 11
4 8 11 12
4 8 11 13
4 8 12 12
4 8 12 13
4 8 13 13
4 9 9 10
4 9 9 12
4 9 10 11
4 9 10 12
4 9 10 13
4 9 11 11
4 9 11 12
4 9 12 12
4 10 10 11
4 10 10 12
4 10 11 12
4 10 11 13
4 10 12 12
4 10 12 13
4 11 12 13
4 12 12 12
5 5 5 5
5 5 5 6
5 5 5 9
5 5 5 12
5 5 6 6
5 5 6 7
5 5 6 8
5 5 6 11
5 5 7 7
5 5 7 8
5 5 7 10
5 5 7 11
5 5 8 8
5 5 8 9
5 5 8 10
5 5 8 11
5 5 8 12
5 5 8 13
5 5 9 9
5 5 9 10
5 5 9 11
5 5 10 10
5 5 10 11
5 5 10 13
5 5 11 11
5 5 11 12
5 5 11 13
5 5 12 12
5 5 12 13
5 5 13 13
5 6 6 6
5 6 6 7
5 6 6 8
5 6 6 9
5 6 6 10
5 6 6 12
5 6 7 7
5 6 7 8
5 6 7 9
5 6 7 12
5 6 7 13
5 6 8 8
5 6 8 9
5 6 8 10
5 6 8 12
5 6 8 13
5 6 9 9
5 6 9 10
5 6 9 11
5 6 9 12
5 6 9 13
5 6 10 10
5 6 10 11
5 6 10 12
5 6 10 13
5 6 11 11
5 6 11 12
5 6 11 13
5 6 12 12
5 6 12 13
5 6 13 13
5 7 7 9
5 7 7 10
5 7 7 11
5 7 8 8
5 7 8 9
5 7 8 10
5 7 9 10
5 7 9 11
5 7 9 12
5 7 9 13
5 7 10 10
5 7 10 11
5 7 10 12
5 7 10 13
5 7 11 11
5 7 11 13
5 7 12 12
5 7 13 13
5 8 8 8
5 8 8 9
5 8 8 10
5 8 8 13
5 8 9 11
5 8 9 12
5 8 9 13
5 8 10 11
5 8 10 12
5 8 11 12
5 8 11 13
5 8 12 12
5 9 9 11
5 9 9 12
5 9 10 10
5 9 10 11
5 9 10 13
5 9 11 13
5 9 12 12
5 9 12 13
5 10 10 11
5 10 10 12
5 10 10 13
5 10 11 11
5 10 12 13
5 10 13 13
5 11 12 12
6 6 6 6
6 6 6 8
6 6 6 9
6 6 6 10
6 6 6 11
6 6 6 12
6 6 7 9
6 6 7 10
6 6 7 11
6 6 7 12
6 6 8 8
6 6 8 9
6 6 8 10
6 6 8 11
6 6 8 12
6 6 8 13
6 6 9 10
6 6 9 11
6 6 9 12
6 6 9 13
6 6 10 12
6 6 10 13
6 6 11 12
6 6 11 13
6 6 12 12
6 6 12 13
6 7 7 10
6 7 7 11
6 7 8 9
6 7 8 10
6 7 8 11
6 7 8 12
6 7 9 9
6 7 9 12
6 7 10 10
6 7 10 12
6 7 10 13
6 7 11 11
6 7 11 12
6 7 11 13
6 7 12 12
6 7 12 13
6 8 8 8
6 8 8 9
6 8 8 10
6 8 8 11
6 8 8 12
6 8 9 9
6 8 9 10
6 8 9 11
6 8 9 12
6 8 9 13
6 8 10 11
6 8 10 12
6 8 10 13
6 8 11 11
6 8 11 12
6 8 11 13
6 8 12 12
6 8 13 13
6 9 9 10
6 9 9 11
6 9 9 12
6 9 10 11
6 9 10 12
6 9 11 12
6 9 11 13
6 9 12 12
6 9 12 13
6 10 10 10
6 10 10 13
6 10 11 12
6 10 12 12
6 10 12 13
6 11 11 12
6 11 12 12
6 11 12 13
6 12 12 12
6 12 12 13
6 12 13 13
7 7 7 12
7 7 8 11
7 7 9 10
7 7 10 13
7 7 11 12
7 7 11 13
7 7 12 12
7 7 12 13
7 8 8 9
7 8 8 10
7 8 8 11
7 8 8 12
7 8 8 13
7 8 9 10
7 8 9 12
7 8 9 13
7 8 10 10
7 8 10 11
7 8 10 13
7 8 11 12
7 8 11 13
7 8 12 12
7 8 12 13
7 9 9 13
7 9 10 11
7 9 10 12
7 9 11 11
7 9 11 12
7 9 12 12
7 9 13 13
7 10 10 11
7 10 10 12
7 10 11 13
7 10 12 12
7 10 12 13
7 12 12 13
8 8 8 10
8 8 8 11
8 8 8 12
8 8 8 13
8 8 9 11
8 8 9 12
8 8 9 13
8 8 10 12
8 8 10 13
8 8 11 12
8 8 11 13
8 8 12 12
8 8 12 13
8 9 9 12
8 9 10 12
8 9 10 13
8 9 11 11
8 9 11 12
8 9 11 13
8 9 12 12
8 9 12 13
8 10 10 12
8 10 11 11
8 10 12 12
8 10 12 13
8 10 13 13
8 11 12 12
9 9 9 12
9 9 10 13
9 9 11 12
9 9 11 13
9 9 12 12
9 9 12 13
9 10 10 13
9 10 11 12
9 10 11 13
9 10 12 12
9 10 12 13
9 11 11 11
9 11 12 12
9 11 12 13
9 11 13 13
9 12 12 12
10 10 10 12
10 10 10 13
10 10 11 12
10 10 11 13
10 10 12 12
10 10 12 13
10 11 11 12
10 11 11 13
10 11 12 12
10 11 12 13
10 12 12 12
10 12 12 13
10 12 13 13
10 13 13 13
11 11 11 12
11 11 11 13
11 11 12 12
11 11 12 13
11 12 12 12
11 12 12 13
11 12 13 13
11 13 13 13
12 12 12 12
12 12 12 13
12 12 13 13
12 13 13 13

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/444578.htmlTechArticleUse PHP to implement the 24-point game on the WeChat public platform. The server is SAE, so many statements are different from MYSQL. , the 24-point database is stored in 24data, first use python to calculate the result...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

How does PHP handle object cloning (clone keyword) and the __clone magic method?How does PHP handle object cloning (clone keyword) and the __clone magic method?Apr 17, 2025 am 12:24 AM

In PHP, use the clone keyword to create a copy of the object and customize the cloning behavior through the \_\_clone magic method. 1. Use the clone keyword to make a shallow copy, cloning the object's properties but not the object's properties. 2. The \_\_clone method can deeply copy nested objects to avoid shallow copying problems. 3. Pay attention to avoid circular references and performance problems in cloning, and optimize cloning operations to improve efficiency.

PHP vs. Python: Use Cases and ApplicationsPHP vs. Python: Use Cases and ApplicationsApr 17, 2025 am 12:23 AM

PHP is suitable for web development and content management systems, and Python is suitable for data science, machine learning and automation scripts. 1.PHP performs well in building fast and scalable websites and applications and is commonly used in CMS such as WordPress. 2. Python has performed outstandingly in the fields of data science and machine learning, with rich libraries such as NumPy and TensorFlow.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)