使用php製作JSONArray

2021-08-19 14:12:36 字數 775 閱讀 4038

我們都知道在php中可以利用json_encode來製作jsonobject型別資料,

<?php

include 'conn.php';

$bookid=$_get["bookid"];

$sql="select * from books_view where isbn='$bookid'";

$result=mysql_query($sql);

if($row=mysql_fetch_array($result))

echo json_encode($responce);

?>

輸出的結果為:

只要在名稱前面新增序號標籤就可以製作jsonarray資料,

如:

<?php

include 'conn.php';

$bookid=$_get["bookid"];

$sql2="select * from bookscritic where book='$bookid'";

$result2=mysql_query($sql2);

$i=0;

while ($row2=mysql_fetch_array($result2))

echo json_encode($responce);

?>

輸出的結果為:

顯而易見,輸出的結果為jsonarray型別資料。

注意的是序號標籤必須從「0」開始,否則只能輸入名稱為數列的jsonobject型別資料。

使用PHP製作單檔案上傳

單檔案上傳 param string uploaddir 必選引數,上傳檔案存放的目錄 param int maxsize 可選引數,限制上傳檔案大小 param array allowtype 可選引數,限制上傳檔案型別 param bool isimg 可選引數,限制上傳檔案型別是否必須為 re...

使用PHP製作多檔案上傳

將 files統一為二維索引 關聯陣列 return array function getfilesarray else if is array file name return arr 多檔案上傳 param string uploaddir 必選引數,上傳檔案存放的目錄 param int ma...

使用php製作驗證碼技術

這個函式是用來產生驗證碼所需的字串。原理,首先把字母數字整合到一起,然後使用str shuffle函式將字串打亂,然後擷取所需要的長度返回。函式說明,使用這個函式,返回不同的型別,或者是不同長度的字串,用來製作驗證碼 function buildrandomstring type 1,length ...