Heim >Backend-Entwicklung >PHP-Tutorial > 把二维数组成为字符串

把二维数组成为字符串

WBOY
WBOYOriginal
2016-06-13 13:10:461078Durchsuche

把二维数组变成字符串

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
Array
(
    [0] => Array
        (
            [0] => www.movso.us
            [1] => 快播电影
        )

    [1] => Array
        (
            [0] => www.kbysq.com
            [1] => 最新电影
        )

    [2] => Array
        (
            [0] => www.bbying.com
            [1] => 网址大全
        )


    [3] => Array
        (
            [0] => www.tccok.com
            [1] => 甜菜影视,
        )

    [4] => Array
        (
            [0] => www.dy527.com
            [1] => 在线下载
        )

)




怎么把这个二维数组变成字符串插入进去,用的时候在提取出来变成二维数组

我是搜索一个词,然后生成列表 如果有更好的办法也能说下哈

------解决方案--------------------
serialize($arr);

取出来时,用 unserialize() 还原
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