2 Star 2 Fork 0

ADA/czshop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
functions.php 1.83 KB
一键复制 编辑 原始数据 按行查看 历史
ADA 提交于 2020-12-01 22:09 . 购物车下单
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<?php
//函数
/**
* 函数定义
* functions 函数名称(参数1,,,,参数n){
* php代码
* }
* 调用函数
* 函数名称(参数1,,,,,参数n);
*/
//跳转到某个页面
function go_forword($msg,$url){
echo '<script language="javascript">alert("'.$msg.'");location.href="'.$url.'";</script>';
exit();
}
//go_forword("注册成功!", "login.php");
//返回到某个页面
function go_back($msg){
echo '<script language="javascript"> alert("'.$msg.'");history:back();</script>';
exit();
}
/**
* 生成随机字符串实例代码(字母+数字)
* 生成一个随机字符串时,总是先创建一个字符池,然后用一个循环和mt_rand()或rand()生成php随机数,从字符池中随机选取字符,最后拼凑出需要的长度
* @param type $length
* @return string
*/
function randomkeys($length) {
$pattern ="1234567890ABCDEFGHIJKLOMNOPQRSTUVWXYZ";
$key="";
for($i=0;$i<$length;$i++){
$key .= $pattern{mt_rand(0,36)}; //生成php随机数
}
return $key;
}
echo "<br>";
/**
* 生成订单号
* @return string
*/
function generateNum(){
$order_number = date('Ymdhms').randomkeys(6);
return $order_number;
}
?>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yxh0102/czshop.git
git@gitee.com:yxh0102/czshop.git
yxh0102
czshop
czshop
master

搜索帮助