Actually, you can create an ArrayCollection type on the PHP side and send native ArrayCollection objects directly over AMF.
在奎屯等地區(qū),都構建了全面的區(qū)域性戰(zhàn)略布局,加強發(fā)展的系統(tǒng)性、市場前瞻性、產品創(chuàng)新能力,以專注、極致的服務理念,為客戶提供網站制作、成都網站建設 網站設計制作按需網站開發(fā),公司網站建設,企業(yè)網站建設,成都品牌網站建設,成都全網營銷,外貿網站制作,奎屯網站建設費用合理。
Here is some php code I have that works. Save this in a file called
ArrayCollection.php
?php
class ArrayCollection {
public function getASClassName()
{
return 'flex.messaging.io.ArrayCollection';
}
var $source = array();
function ArrayCollection()
{
$this-source = array();
}
}
To use this on the php side include the ArrayCollection.php in your php project and the syntax to call it looks something like this:
$myArrayCollection = new ArrayCollection();
and if you want to access the array that composes the ArrayCollection you can do this
$someArray = $myArrayCollection-source;
On the Flex side you can pass Array Collections directly to the server over Zend AMF. In one of my projects I have many value objects that have ArrayCollections in them and they work just fine on the PHP side. So it can be done.
If you absolutely can't get the ArrayCollection working in PHP you can just access the array as the "source" property of the ArrayCollection in Actionscript. The code looks something like this in actionscript:
import mx.collections.ArrayCollection;
public var myAC:ArrayCollection = new ArrayCollection();
public var myArray:Array = new Array();
// populate your ArrayCollection with data...
myArray = myAC.source;
myArray will now be an Array of the objects in the ArrayCollection myAC.
Hope this helps. If you have further questions and/or have a code sample let me know.
It took me a bit to figure this one out too.
PHP
數(shù)據(jù)類型
PHP
支持八種原始類型(type)。
四種標量類型:
string(字符串)
integer(整型)
float(浮點型,也作
double
)
boolean(布爾型)
兩種復合類型:
array(數(shù)組)
object(對象)
兩種特殊類型:
resource(資源)
NULL(空)
查看變量類型
通過
gettype()
函數(shù)可以方便的查看某個變量的類型:
復制代碼
代碼如下:
?php$var_bool
=
TRUE;
//
a
boolean$var_str
=
"foo";
//
a
string$var_int
=
12;
//
an
integerecho
gettype($var_bool);
//
輸出
booleanecho
gettype($var_str);
//
輸出
stringecho
gettype($var_int);
//
輸出
integer?
(PS:T不錯的PHP
Q扣峮:276167802,驗證:csl)
提示
由于歷史原因,如果是
float
類型數(shù)據(jù),gettype()
函數(shù)返回的是
double,而不是
float
。
如果想查看某個表達式的值和類型,請使用用
var_dump()
函數(shù)。
判斷變量類型
如果想通過判斷變量類型來確定下一步邏輯動作,不要使用
gettype()
,而使用
is_type
系列函數(shù):
復制代碼
代碼如下:
?php$var_int
=
12;//
如果
$var_int
是
int
類型,這進行加法if
(is_int($var_int))
{
$var_int
=
$var_int+4;}echo
$var_int;
//
輸出
16?
以上是本文關于PHP
數(shù)據(jù)類型的匯總,希望本文對廣大php開發(fā)者有所幫助,感謝您閱讀本文。
PHP 支持8種基本的數(shù)據(jù)類型。
一:四種標量類型:
1、boolean (布爾型)
2、integer (整型)
3、float (浮點型, 也稱作 double)
4、string (字符串)
二:兩種復合類型:
1、array (數(shù)組)
2、object (對象)
三:兩種特殊類型:
1、resource?。ㄙY源)
2、NULL?。∟ULL)
PHP,是英文超文本預處理語言Hypertext Preprocessor的縮寫。PHP 是一種 HTML 內嵌式的語言,是一種在服務器端執(zhí)行的嵌入HTML文檔的腳本語言,語言的風格有類似于C語言,被廣泛地運用。
數(shù)據(jù)類型有三種:
1.標量數(shù)據(jù)類型
標量數(shù)據(jù)類型包括以下幾種。
(1)boolean:布爾型
布爾變量是PHP變量中最簡單的。它保存一個True或者False值。其中True或者False是PHP的內部關鍵字。設定一個布爾型的變量,只需將True或者False賦值給該變量
(2)string:字符串
字符串是連續(xù)的字符序列,字符串中的每個字符只占用一個字節(jié)。在PHP中,定義字符串有3種方式:
單引號方式,
雙引號方式,
Heredoc方式。
(3)integer:整數(shù)
整數(shù)數(shù)據(jù)類型只能包含整數(shù)。這些數(shù)據(jù)類型可以是正數(shù)或負數(shù)。在32位的操作系統(tǒng)中,有效的范圍是?2 147 483 648~+2 147 483 647。
(4)double:浮點數(shù)
浮點數(shù)據(jù)類型可以用來存儲數(shù)字,也可以保存小數(shù)。它提供的精度不整數(shù)大得多。在32位的操作系統(tǒng)中,有效的范圍是1.7E-308~1.7E+308。
2.復合數(shù)據(jù)類型
復合數(shù)據(jù)類型包括以下兩種。
(1)array:數(shù)組
可以是二維、三維或者多維,數(shù)組中的各元素可以是string、integer或double,也可以是array。
(2)object:對象類型
3.特殊數(shù)據(jù)類型
特殊數(shù)據(jù)類型包括以下兩種。
(1)resource:資源
資源是PHP內的幾個函數(shù)所需要的特殊數(shù)據(jù)類型,由編程人員來分配。
(2)null:空值
空值是最簡單的數(shù)據(jù)類型。表示沒有為該變量設置任何值,另外,空值(NULL)不區(qū)分大小寫。
PHP主要有八種基本數(shù)據(jù)類型,其中包括:
1.四種變量類型
整數(shù)型(integer)
浮點數(shù)型(float)
布爾型(boolean)
字符串(string)
2.兩種復合類型
數(shù)組(array)
對象(object)
3.兩種特殊類型
NULL
資源 (resource)
分享文章:php解析數(shù)據(jù)類型 PHP的8種數(shù)據(jù)類型分別為
文章轉載:http://aaarwkj.com/article20/docpsco.html
成都網站建設公司_創(chuàng)新互聯(lián),為您提供建站公司、企業(yè)網站制作、自適應網站、定制開發(fā)、動態(tài)網站、微信公眾號
聲明:本網站發(fā)布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創(chuàng)新互聯(lián)