中文字幕亚洲一区,69久久久久精品9999不卡片,亚洲国产日韩欧美在线看片,国产精品久久久久久久久岛国

龍巖易富通網絡科技有限公司

龍巖小程序開發,龍巖分銷系統

php數組與字符串轉換

2015.09.10 | 975閱讀 | 0條評論 | php

1、將字符串轉換成數組的幾個函數: (1)explode(separate,string) 示例:$str = "Hello world It's a beautiful day"; explode(" ",$str);//以空格為分界點 返回:array([0]=>"Hello",[1]=>"world",[2]=>"It's",[3]=>"a",[4]=>"beautiful",[5]=>"day") (2)str_split(string,length) //length指每個數組元素的長度,默認情況下為1 示例:$str = "hello"; $a=str_split($str,3); $b=str_split($str); 返回:a([0]=>"hel",[1]=>"lo")??? b([0]=>"h",[1]=>"e",[2]=>"l",[3]=>"l",[4]=>"o") (3)unserialize(string) 反序列化,將已序列化的字符串返回到原數組形式。 2、將數組轉換成字符串的幾個函數: (1)implode(separate,array)? //explode的反向操作,separate默認為空字符 示例:$array = ('hello','world','!'); implode(" ",$array); 返回:"hello world !" (2)serialize(array) 序列化,將數組按照固定格式轉換成字符串;

贊 (

發表評論