首页
留言
Search
1
在Centos7下搭建Socks5代理服务器
1,036 阅读
2
在windows11通过Zip安装Mysql5.7
574 阅读
3
Mysql5.7开放远程登录
482 阅读
4
数据库
469 阅读
5
mysql5.7基本命令
377 阅读
综合
正则表达式
git
系统
centos7
ubuntu
kali
Debian
网络
socks5
wireguard
运维
docker
hadoop
kubernetes
hive
openstack
ElasticSearch
ansible
前端
三剑客
Python
Python3
selenium
Flask
PHP
PHP基础
ThinkPHP
游戏
我的世界
算法
递归
排序
查找
软件
ide
Xshell
vim
PicGo
Typora
云盘
安全
靶场
reverse
Java
JavaSE
Spring
MyBatis
C++
QT
数据库
mysql
登录
Search
标签搜索
java
centos7
linux
centos
html5
JavaScript
php
css3
mysql
spring
mysql5.7
linux全栈
ubuntu
BeanFactory
SpringBean
python
python3
ApplicationContext
kali
mysql8.0
我亏一点
累计撰写
139
篇文章
累计收到
8
条评论
首页
栏目
综合
正则表达式
git
系统
centos7
ubuntu
kali
Debian
网络
socks5
wireguard
运维
docker
hadoop
kubernetes
hive
openstack
ElasticSearch
ansible
前端
三剑客
Python
Python3
selenium
Flask
PHP
PHP基础
ThinkPHP
游戏
我的世界
算法
递归
排序
查找
软件
ide
Xshell
vim
PicGo
Typora
云盘
安全
靶场
reverse
Java
JavaSE
Spring
MyBatis
C++
QT
数据库
mysql
页面
留言
搜索到
1
篇与
双色球
的结果
2022-03-17
PHP随机生成双色球
PHP随机生成双色球输出效果 双色球抽取 .red_ball{ position: relative; float: left; width: 50px; height: 50px; border-radius: 50%; background-color: red; text-align: center; line-height: 50px; margin: 5px; font-size: 25px; color: white; } .blue_ball{ position: relative; float: left; width: 50px; height: 50px; border-radius: 50%; background-color: blue; text-align: center; line-height: 50px; margin: 5px; font-size: 25px; color: white; } 15132807310307 源代码函数解释range()生成数组array_rand()随机取数组中的几个下标或键名shuffle()打乱数组顺序rand(min,max)生成指定范围随机数<!DOCTYPE html> <html> <meta charset="utf8"/> <head> <title>双色球抽取</title> <style> .red_ball{ position: relative; float: left; width: 50px; height: 50px; border-radius: 50%; background-color: red; text-align: center; line-height: 50px; margin: 5px; font-size: 25px; color: white; } .blue_ball{ position: relative; float: left; width: 50px; height: 50px; border-radius: 50%; background-color: blue; text-align: center; line-height: 50px; margin: 5px; font-size: 25px; color: white; } </style> </head> <body> <?php //创建红球的数组范围 $red_num = range(1,33); //随机在红球范围内取出6个数 //array_rand()取的是数组的下标或者键名 $red = array_rand($red_num,6); //打乱数组顺序 shuffle($red); //输出红球 foreach($red as $i){ $ls = $red_num[$i]; if($ls<10)$ls = '0' . $ls; echo "<div class='red_ball'>$ls</div>"; } //从1-16中随机取出一个数字 $blue = rand(1,16); if($blue<10)$blue = '0' . $blue; echo "<div class='blue_ball'>$blue</div>"; ?> </body> </html>
2022年03月17日
212 阅读
0 评论
0 点赞