zoukankan      html  css  js  c++  java
  • 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)
    序列化,将数组按照固定格式转换成字符串;
  • 相关阅读:
    【宁夏区域赛】G.Pot!
    【C#】上机实验二
    【C#】上机实验三
    Luogu P1437 敲砖块
    Luogu P1463 反素数
    Luogu P1445 樱花
    GHOJ 926 小X的AK计划
    【题解】Beads
    【题解】Antisymmetry
    【题解】A Horrible Poem
  • 原文地址:https://www.cnblogs.com/moqiang02/p/4061382.html
Copyright © 2011-2022 走看看