代码拉取完成,页面将自动刷新
<!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>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。