<?php
/* Generate Password
* Length : 8
*/
$str = “0123456789abcdefghijklmnopqrstuvwxyz”; // 输出字符集
$n = 8; // 输出串长度
$len = strlen($str)-1;
for($i=0 ; $i<$n; $i++){
$s .= $str[rand(0,$len)];
}
echo $s . “<br/>”;
?>
WooCommerce 条件判断函数 wordpress is_shop
所有的条件判断函数测试当前条件是否匹配,匹配返回 TRUE,不匹配则返 阅读更多…