需要准备的材料分别是:电脑、php编辑器、浏览器。
目前成都创新互联已为上千家的企业提供了网站建设、域名、网站空间、网站改版维护、企业网站设计、政和网站维护等服务,公司将坚持客户导向、应用为本的策略,正道将秉承"和谐、参与、激情"的文化,与客户和合作伙伴齐心协力一起成长,共同发展。
1、首先,打开php编辑器,新建php文件,例如:index.php。
2、在index.php中,输入代码:
$a = 19841231;$b = [];$c = [];
while($a 0) {
$t = $a % 10;
$a = intval($a / 10);
$b[] = $t;
if (!isset($c[$t])) {
$c[$t] = 0;
}
$c[$t]++;
}
$b = array_reverse($b);
print_r($b);echo 'br/';print_r($c);
3、浏览器运行index.php页面,此时打印出了19841231分割成一个个后的数组,以及各个数组出现的个数。
是否使用table如果不用:
$i=0;
while($row = mysqli_fetch_array($result)){
$i++;
echo $row[0],' ';
if ($i%4 == 0) echo 'br';//4个换行
}
?php
header("Content-Type: text/html; charset=gb2312");
include("conn.php");
$pageSize = 10;
$page = isset($_GET['p']) ? intval($_GET['p']) : 1 ;
$page = max(1, $page);
$pageIndex = $pageSize * ($page-1);
$sql="select count(*) as num from uu";
$pageQuery = mysql_query($sql);
$numRs = mysql_fetch_array($query);
$totalNum = $numRs['num'];
$sql="select * from uu order by id desc limit {$pageIndex}, {$pageSize}";
$query=mysql_query($sql);
?
table width=500 border="0" align="center" cellpadding="5" cellspacing="1" bgcolor="#add3ef"
tr
thID/th
th用户名/th
th地 址/th
th姓 名/th
/tr
?php
$i = 0;
while($row = mysql_fetch_array($query)){
$color = $i % 2 ? '#add3ef' : '#eff3ff';
?
tr bgcolor="?=$color;?"
td?=$row['id'];?/td
td?=$row['u_user'];?/td
td?=$row['u_add'];?/td
td?=$row['u_name'];?/td
/tr
?php
}
?
/table
?php
$totalPages = ceil(1.0 * $totalNum / $pageSize);
for($i = 1; $i = $totalPages; $i++) {
?
div class="page"
div class="item_?=$i;?" ?=$i;? /div
/div
?php
}
?
style
.page div {display: block; width: 36px; height: 36px; padding: 5px; border: 1px solid #ccc; margin:0px 3px;}
/style