php问题 翻译

<?php//returnastringofrandomtextofadesiredlengthfunctionrandom_text($count,$rm_simila... <?php
// return a string of random text of a desired length
function random_text($count, $rm_similar = true)
{
$chars = array_flip(array_merge(range(0, 9), range('A', 'Z')));

// remove similar looking characters
if ($rm_similar)
{
unset($chars[0], $chars[1], $chars[2], $chars[5], $chars[8],
$chars['B'], $chars['I'], $chars['O'], $chars['Q'],
$chars['S'], $chars['U'], $chars['V'], $chars['Z']);
}

for ($i = 0; $i < $count; $i++)
{
$text .= array_rand($chars);
}
return $text;
}

// accept mm/dd/yy date string and convert to mysql format
function mysql_format_date($date)
{
list($month, $day, $year) = explode('/', $date);
return sprintf('%04d-%02d-%02d', $year, $month, $day);
}
?>
这个文件有什么用
展开
 我来答
lucky215
2010-07-11
知道答主
回答量:10
采纳率:0%
帮助的人:0
展开全部
两个方法啊, random_text生成数字加字幕的字符串,mysql_format_date方法打印年月日
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式