Heim  >  Artikel  >  Backend-Entwicklung  >  php使用explode()函数将字符串拆分成数组的方法_PHP教程

php使用explode()函数将字符串拆分成数组的方法_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:04:02712Durchsuche

php使用explode()函数将字符串拆分成数组的方法

 这篇文章主要介绍了php使用explode()函数将字符串拆分成数组的方法,具有一定参考借鉴价值,需要的朋友可以参考下

 

 

本文实例讲述了php使用explode()函数将字符串拆分成数组的方法。分享给大家供大家参考。具体分析如下:

explode()函数:字符串拆分成数组

示例代码如下:

?

1

2

3

4

5

6

$str = "朝阳区,海淀区,西城区,东城区,丰台区";

$arr = explode(",",$str);

echo "

";
            <p>print_r($arr);</p>
            <p>?></p>
            
            

结果如下:

?

1

2

3

4

5

6

7

8

Array
            <p>(</p>
            <p>[0] => 朝阳区</p>
            <p>[1] => 海淀区</p>
            <p>[2] => 西城区</p>
            <p>[3] => 东城区</p>
            <p>[4] => 丰台区</p>
            <p>)</p>
            
            

补充:

语法:explode(参数1,参数2)
参数1:按什么来拆分,如上例中的","。
参数2:需要拆分的字符串。

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/966913.htmlTechArticlephp使用explode()函数将字符串拆分成数组的方法 这篇文章主要介绍了php使用explode()函数将字符串拆分成数组的方法,具有一定参考借鉴价值,需...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn