數(shù)組在PHP中包含2種表現(xiàn),
網(wǎng)站設(shè)計(jì)、成都網(wǎng)站設(shè)計(jì)的關(guān)注點(diǎn)不是能為您做些什么網(wǎng)站,而是怎么做網(wǎng)站,有沒(méi)有做好網(wǎng)站,給創(chuàng)新互聯(lián)一個(gè)展示的機(jī)會(huì)來(lái)證明自己,這并不會(huì)花費(fèi)您太多時(shí)間,或許會(huì)給您帶來(lái)新的靈感和驚喜。面向用戶友好,注重用戶體驗(yàn),一切以用戶為中心。
一種是普通數(shù)組,定義方式有二種,
第一:
$a = array("aa","bb","cc")
第二:
$a[] = "aa";
$a[] = "bb"
$a[] = "cc";
一般用數(shù)組遍歷的方式可以打印出所有數(shù)據(jù),也可以使用數(shù)組的位標(biāo)(從0開(kāi)始計(jì)算)自定義打印,比如:
$a[0]的值就是aa,$a[1]的值是"bb"
數(shù)組遍歷自己搜索下,也是2種方式
另外是別名數(shù)組,定義也是2種
第一:
$a = array("aa"= "11","bb"="22")
第二:
$a["aa"] = "11";
$a["bb"] = "22";
使用數(shù)組的位標(biāo)在別名數(shù)組就不行了,必須用別名
$a[0]就取不到值了,$a[“aa”]才能取到值"11"
數(shù)組遍歷其中foreach有點(diǎn)不一樣,自己搜索下
1、前言
分頁(yè)顯示是一種非常常見(jiàn)的瀏覽和顯示大量數(shù)據(jù)的方法,屬于web編程中最常處理的事件之一。對(duì)于web編程的老手來(lái)說(shuō),編寫這種代碼實(shí)在是和呼吸一樣自然,但是對(duì)于初學(xué)者來(lái)說(shuō),常常對(duì)這個(gè)問(wèn)題摸不著頭緒,因此特地撰寫此文對(duì)這個(gè)問(wèn)題進(jìn)行詳細(xì)的講解,力求讓看完這篇文章的朋友在看完以后對(duì)于分頁(yè)顯示的原理和實(shí)現(xiàn)方法有所了解。本文適合初學(xué)者閱讀,所有示例代碼均使用php編寫。
2、原理
所謂分頁(yè)顯示,也就是將數(shù)據(jù)庫(kù)中的結(jié)果集人為的分成一段一段的來(lái)顯示,這里需要兩個(gè)初始的參數(shù):
每頁(yè)多少條記錄($PageSize)?
當(dāng)前是第幾頁(yè)($CurrentPageID)?
現(xiàn)在只要再給我一個(gè)結(jié)果集,我就可以顯示某段特定的結(jié)果出來(lái)。
至于其他的參數(shù),比如:上一頁(yè)($PreviousPageID)、下一頁(yè)($NextPageID)、總頁(yè)數(shù)($numPages)等等,都可以根據(jù)前邊這幾個(gè)東西得到。
以mysql數(shù)據(jù)庫(kù)為例,如果要從表內(nèi)截取某段內(nèi)容,sql語(yǔ)句可以用:select * from table limit offset, rows。看看下面一組sql語(yǔ)句,嘗試一下發(fā)現(xiàn)其中的規(guī)率。
前10條記錄:select * from table limit 0,10
第11至20條記錄:select * from table limit 10,10
第21至30條記錄:select * from table limit 20,10
……
這一組sql語(yǔ)句其實(shí)就是當(dāng)$PageSize=10的時(shí)候取表內(nèi)每一頁(yè)數(shù)據(jù)的sql語(yǔ)句,我們可以總結(jié)出這樣一個(gè)模板:
select * from table limit ($CurrentPageID - 1) * $PageSize, $PageSize
拿這個(gè)模板代入對(duì)應(yīng)的值和上邊那一組sql語(yǔ)句對(duì)照一下看看是不是那么回事。搞定了最重要的如何獲取數(shù)據(jù)的問(wèn)題以后,剩下的就僅僅是傳遞參數(shù),構(gòu)造合適的sql語(yǔ)句然后使用php從數(shù)據(jù)庫(kù)內(nèi)獲取數(shù)據(jù)并顯示了。以下我將用具體代碼加以說(shuō)明。
3、簡(jiǎn)單代碼
請(qǐng)?jiān)敿?xì)閱讀以下代碼,自己調(diào)試運(yùn)行一次,最好把它修改一次,加上自己的功能,比如搜索等等。
?php
// 建立數(shù)據(jù)庫(kù)連接
$link = mysql_connect("localhost", "mysql_user", "mysql_password")
or die("Could not connect: " . mysql_error());
// 獲取當(dāng)前頁(yè)數(shù)
if( isset($_GET['page']) ){
$page = intval( $_GET['page'] );
}
else{
$page = 1;
}
// 每頁(yè)數(shù)量
$PageSize = 10;
// 獲取總數(shù)據(jù)量
$sql = "select count(*) as amount from table";
$result = mysql_query($sql);
$row = mysql_fetch_row($result);
$amount = $row['amount'];
// 記算總共有多少頁(yè)
if( $amount ){
if( $amount $page_size ) //如果總數(shù)據(jù)量小于$PageSize,那么只有一頁(yè)
if( $amount % $page_size ){ //取總數(shù)據(jù)量除以每頁(yè)數(shù)的余數(shù)
$page_count = (int)($amount / $page_size) + 1; //如果有余數(shù),則頁(yè)數(shù)等于總數(shù)據(jù)量除以每頁(yè)數(shù)的結(jié)果取整再加一
}else{
$page_count = $amount / $page_size; //如果沒(méi)有余數(shù),則頁(yè)數(shù)等于總數(shù)據(jù)量除以每頁(yè)數(shù)的結(jié)果
}
}
else{
$page_count = 0;
}
// 翻頁(yè)鏈接
$page_string = '';
if( $page == 1 ){
$page_string .= '第一頁(yè)|上一頁(yè)|';
}
else{
$page_string .= 'a href="/?page=1";第一頁(yè)/a|a href="/?page='."($page-1).'上一頁(yè)/a|';
}
if( ($page == $page_count) || ($page_count == 0) ){
$page_string .= '下一頁(yè)|尾頁(yè)';
}
else{
$page_string .= 'a href="/?page='."($page+1).'下一頁(yè)/a|a href="/?page='."$page_count.'尾頁(yè)/a';
}
// 獲取數(shù)據(jù),以二維數(shù)組格式返回結(jié)果
if( $amount ){
$sql = "select * from table order by id desc limit ". ($page-1)*$page_size .", $page_size";
$result = mysql_query($sql);
while ( $row = mysql_fetch_row($result) ){
$rowset[] = $row;
}
}else{
$rowset = array();
}
// 沒(méi)有包含顯示結(jié)果的代碼,那不在討論范圍,只要用foreach就可以很簡(jiǎn)單的用得到的二維數(shù)組來(lái)顯示結(jié)果
?
4、OO風(fēng)格代碼
以下代碼中的數(shù)據(jù)庫(kù)連接是使用的pear db類進(jìn)行處理
?php
// FileName: Pager.class.php
// 分頁(yè)類,這個(gè)類僅僅用于處理數(shù)據(jù)結(jié)構(gòu),不負(fù)責(zé)處理顯示的工作
Class Pager
{
var $PageSize; //每頁(yè)的數(shù)量
var $CurrentPageID; //當(dāng)前的頁(yè)數(shù)
var $NextPageID; //下一頁(yè)
var $PreviousPageID; //上一頁(yè)
var $numPages; //總頁(yè)數(shù)
var $numItems; //總記錄數(shù)
var $isFirstPage; //是否第一頁(yè)
var $isLastPage; //是否最后一頁(yè)
var $sql; //sql查詢語(yǔ)句
function Pager($option)
{
global $db;
$this-_setOptions($option);
// 總條數(shù)
if ( !isset($this-numItems) )
{
$res = $db-query($this-sql);
$this-numItems = $res-numRows();
}
// 總頁(yè)數(shù)
if ( $this-numItems 0 )
{
if ( $this-numItems $this-PageSize )
if ( $this-numItems % $this-PageSize )
{
$this-numPages= (int)($this-numItems / $this-PageSize) + 1;
}
else
{
$this-numPages = $this-numItems / $this-PageSize;
}
}
else
{
$this-numPages = 0;
}
switch ( $this-CurrentPageID )
{
case $this-numPages == 1:
$this-isFirstPage = true;
$this-isLastPage = true;
break;
case 1:
$this-isFirstPage = true;
$this-isLastPage = false;
break;
case $this-numPages:
$this-isFirstPage = false;
$this-isLastPage = true;
break;
default:
$this-isFirstPage = false;
$this-isLastPage = false;
}
if ( $this-numPages 1 )
{
if ( !$this-isLastPage )
if ( !$this-isFirstPage )
}
return true;
}
/***
*
* 返回結(jié)果集的數(shù)據(jù)庫(kù)連接
* 在結(jié)果集比較大的時(shí)候可以直接使用這個(gè)方法獲得數(shù)據(jù)庫(kù)連接,然后在類之外遍歷,這樣開(kāi)銷較小
* 如果結(jié)果集不是很大,可以直接使用getPageData的方式獲取二維數(shù)組格式的結(jié)果
* getPageData方法也是調(diào)用本方法來(lái)獲取結(jié)果的
*
***/
function getDataLink()
{
if ( $this-numItems )
{
global $db;
$PageID = $this-CurrentPageID;
$from = ($PageID - 1)*$this-PageSize;
$count = $this-PageSize;
$link = $db-limitQuery($this-sql, $from, $count); //使用Pear DB::limitQuery方法保證數(shù)據(jù)庫(kù)兼容性
return $link;
}
else
{
return false;
}
}
/***
*
* 以二維數(shù)組的格式返回結(jié)果集
*
***/
function getPageData()
{
if ( $this-numItems )
{
if ( $res = $this-getDataLink() )
{
if ( $res-numRows() )
{
while ( $row = $res-fetchRow() )
{
$result[] = $row;
}
}
else
{
$result = array();
}
return $result;
}
else
{
return false;
}
}
else
{
return false;
}
}
function _setOptions($option)
{
$allow_options = array(
'PageSize',
'CurrentPageID',
'sql',
'numItems'
);
foreach ( $option as $key = $value )
{
if ( in_array($key, $allow_options) ($value != null) )
{
$this-$key = $value;
}
}
return true;
}
}
?
?php
// FileName: test_pager.php
// 這是一段簡(jiǎn)單的示例代碼,前邊省略了使用pear db類建立數(shù)據(jù)庫(kù)連接的代碼
require "Pager.class.php";
if ( isset($_GET['page']) )
{
$page = (int)$_GET['page'];
}
else
{
$page = 1;
}
$sql = "select * from table order by id";
$pager_option = array(
"sql" = $sql,
"PageSize" = 10,
"CurrentPageID" = $page
);
if ( isset($_GET['numItems']) )
{
$pager_option['numItems'] = (int)$_GET['numItems'];
}
$pager = @new Pager($pager_option);
$data = $pager-getPageData();
if ( $pager-isFirstPage )
{
$turnover = "首頁(yè)|上一頁(yè)|";
}
else
{
$turnover = "a href='?page=1numItems=".$pager-numItems."'首頁(yè)/a|a href="/?page=".$pager-PreviousPageID."numItems=".$pager-numItems."'上一頁(yè)/a|";
}
if ( $pager-isLastPage )
{
$turnover .= "下一頁(yè)|尾頁(yè)";
}
else
{
$turnover .= "a href="/?page=".$pager-NextPageID."numItems=".$pager-numItems."'下一頁(yè)/a|a href="/?page=".$pager-numPages."numItems=".$pager-numItems."'尾頁(yè)/a";
}
?
需要說(shuō)明的地方有兩個(gè):
這個(gè)類僅僅處理數(shù)據(jù),并不負(fù)責(zé)處理顯示,因?yàn)槲矣X(jué)得將數(shù)據(jù)的處理和結(jié)果的顯示都放到一個(gè)類里邊實(shí)在是有些勉強(qiáng)。顯示的時(shí)候情況和要求多變,不如自己根據(jù)類給出的結(jié)果處理,更好的方法是根據(jù)這個(gè)Pager類繼承一個(gè)自己的子類來(lái)顯示不同的分頁(yè),比如顯示用戶分頁(yè)列表可以:
?php
Class MemberPager extends Pager
{
function showMemberList()
{
global $db;
$data = $this-getPageData();
// 顯示結(jié)果的代碼
// ......
}
}
/// 調(diào)用
if ( isset($_GET['page']) )
{
$page = (int)$_GET['page'];
}
else
{
$page = 1;
}
$sql = "select * from members order by id";
$pager_option = array(
"sql" = $sql,
"PageSize" = 10,
"CurrentPageID" = $page
);
if ( isset($_GET['numItems']) )
{
$pager_option['numItems'] = (int)$_GET['numItems'];
}
$pager = @new MemberPager($pager_option);
$pager-showMemberList();
?
第二個(gè)需要說(shuō)明的地方就是不同數(shù)據(jù)庫(kù)的兼容性,在不同的數(shù)據(jù)庫(kù)里截獲一段結(jié)果的寫法是不一樣的。
mysql: select * from table limit offset, rows
pgsql: select * from table limit m offset n
......
所以要在類里邊獲取結(jié)果的時(shí)候需要使用pear db類的limitQuery方法。
ok,寫完收功,希望花時(shí)間看完這些文字的你不覺(jué)得是浪費(fèi)了時(shí)間。
回答者
另外,虛機(jī)團(tuán)上產(chǎn)品團(tuán)購(gòu),超級(jí)便宜
方法一:
//將一個(gè)測(cè)試的數(shù)組寫入一個(gè)PHP文件:
?php //要寫入PHP文件的數(shù)組 $write_array = array( '1' = 'oneone', '2'
= 'two', '3' = 'three', '4' = 'four','5' = 'five' );
//字符串處理 $string_start = "?php\n"; $string_process =
var_export($write_array, TRUE);$string_end = "\n?"; $string =
$string_start.$string_process.$string_end; //開(kāi)始寫入文件
echofile_put_contents('test_array.php', $string); ?
這里用到了兩個(gè)函數(shù):
1,var_export():
·var_export — 用來(lái)輸出或返回一個(gè)變量的字符串表示,它和 var_dump() 的區(qū)別是,var_export()
可以用來(lái)返回關(guān)于傳遞給該函數(shù)的變量的結(jié)構(gòu)信息,并且其返回的表示是合法的 PHP 代碼如果 “echo
$string_process;”,則可以看到輸出結(jié)果:
array ( 1 = 'oneone', 2 = 'two', 3 = 'three', 4 = 'four', 5 = 'five', )
而它就是我們要寫入 test_array.php 文件的內(nèi)容(除去 php 標(biāo)簽);
·var_dump() 函數(shù)用來(lái)打印變量的相關(guān)信息,它只用來(lái)“打印”,而不會(huì)返回值,它的原型是 void var_dump(……),我們來(lái) “var_dump($string_process);”,則可以看到輸出結(jié)果:
string(86) "array ( 1 = 'oneone', 2 = 'two', 3 = 'three', 4 = 'four', 5 = 'five', )"
可以看到輸出的string(86) “…”,再一次說(shuō)明了 var_export() 返回的是一個(gè)字符串。
2,file_put_contents():
file_put_contents — 將一個(gè)字符串寫入文件,原型是 int file_put_contents ( string
filename, string data [, int flags [, resource context]]
),這里我們只用到了兩個(gè)參數(shù),”string filename”:要寫入的文件名;”string data”:字符串?dāng)?shù)據(jù);
此函數(shù)返回寫入到文件內(nèi)數(shù)據(jù)的字節(jié)數(shù),如果我們 “echo file_put_contents(’test_array.php’, $string);”,則會(huì)輸出一個(gè)整數(shù) :95。
因?yàn)檩敵龅?array() 占了 86 個(gè)字節(jié),還有的 $string_start 和 $string_end 又占了 9 個(gè)字節(jié),轉(zhuǎn)義字符 換行符 在這里只占 1 個(gè)字節(jié)。(不知道這樣解釋恰當(dāng)不恰當(dāng),還有望大家多多指正)
方法二:json_encode()
我們常見(jiàn)一些網(wǎng)站在做ajax時(shí)返回JSON格式的數(shù)據(jù):
返回的是json格式的數(shù)據(jù)返回的是json格式的數(shù)據(jù)
這有什么好處那?很顯然前端在接到返回的數(shù)據(jù)時(shí)可以直接使用,而不用再用eval_r('(+ returnString +)')或者 $.parseJSON(returnString ) (jQuery的函數(shù))來(lái)轉(zhuǎn)化為js對(duì)象,這樣顯然為用戶省電了。。。
在網(wǎng)上搜索了一下,這個(gè)問(wèn)題在搜索中文信息的時(shí)候比較少,一些說(shuō)是返回json的都是在前端進(jìn)行的轉(zhuǎn)化處理,根本不是返回JSON格式,其實(shí)返回json相當(dāng)?shù)暮?jiǎn)單。
原來(lái)的數(shù)據(jù)就是JSON格式
下例來(lái)自《鋒利的jQuery》:
$(function(){
$('#send').click(function() {
$.getJSON('', function(data) {
$('#resText').empty();
var html = '';
$.each( data , function(commentIndex, comment) {
html += 'div class="comment"h6' +
comment['username'] + ':/h6p class="para"' +
comment['content'] + '/p/div';
})
$('#resText').html(html);
})
})
})
你需要做的就是將數(shù)據(jù)存儲(chǔ)為格式正確的 .json或者.js 文件。以下為示例所傳送的json格式的數(shù)據(jù)
[
{
"username": "張三",
"content": "沙發(fā)."
},
{
"username": "李四",
"content": "板凳."
},
{
"username": "王五",
"content": "地板."
}
]
php輸出JSON格式
那么php如何輸出json格式?php 使用json_encode函數(shù),然后jQuery使用datatype:json 就可以了嘛? 它的輸出如下:
php 使用json_encode函數(shù),jQuery使用datatype:json的返回類型php 使用json_encode函數(shù),jQuery使用datatype:json的返回類型
顯然并非所愿。還是字符串,到底怎么實(shí)現(xiàn)?其實(shí)很簡(jiǎn)單,只要在php文件頭部加入以下代碼:
header('Content-type: text/json');
這個(gè)頭就是告知此文件輸出類型為 json,這種形式我們見(jiàn)的最多的是驗(yàn)證碼——php輸出驗(yàn)證圖片,有時(shí)php可以輸出css文件,js文件等做一些有趣的事情。好的,我們測(cè)試一下吧。查看示例
示例代碼:
?php
header('Content-type: text/json');
$fruits = array (
"fruits" = array("a" = "orange", "b" = "banana", "c" = "apple"),
"numbers" = array(1, 2, 3, 4, 5, 6),
"holes" = array("first", 5 = "second", "third")
);
echo json_encode($fruits);
?