Home >php教程 >php手册 >用php在页面之间传递数组

用php在页面之间传递数组

WBOY
WBOYOriginal
2016-06-06 19:57:371475browse

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 用php在页面之间传递数组: 实现大致思路:将数组转化成字符串,可以用get方式作为一个参数来传递到另外一个页面,接受后再将字符串转成数组即可。 代码如下: file1.php ?php $parm = array('0'=12

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

  用php在页面之间传递数组:

  实现大致思路:将数组转化成字符串,可以用get方式作为一个参数来传递到另外一个页面,接受后再将字符串转成数组即可。

  代码如下:

  file1.php

  

  $parm = array('0'=>123123,'1'=>'test');

  $arg=implode(":", $parm);

  $link="file2.php?arg=$arg";

  ?>

  file2.php

  

  $arg= $_GET['arg'];

  $parm=explode(":", $arg);

  print_r($parm);

  ?>

  方法不唯一,以上只是其中的一种方法。仅供参考

用php在页面之间传递数组

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn