You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
683 B
PHP
36 lines
683 B
PHP
随机生成密码:
|
|
<input type="text" value="<?php echo $password; ?>"/> <a href="">再来一个</a>
|
|
|
|
<hr/>
|
|
|
|
<?php
|
|
if (!empty($low_list)) {
|
|
?>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>邮箱</td>
|
|
<td>密码</td>
|
|
<td>用户</td>
|
|
</tr>
|
|
|
|
<?php
|
|
foreach($low_list as $item){
|
|
$password=trim($item->password);
|
|
if((strlen($password)<=8) || (strstr('123', $password)) || (strstr('2014', $password)) || (strstr('2015', $password))) {
|
|
?>
|
|
<tr>
|
|
<td><?php echo $item->email; ?></td>
|
|
<td><?php echo $password; ?></td>
|
|
<td><?php echo $item->username; ?></td>
|
|
</tr>
|
|
|
|
<?php
|
|
}
|
|
}
|
|
?>
|
|
|
|
</table>
|
|
<?php
|
|
}
|
|
?>
|