Home  >  Article  >  Backend Development  >  How to use url to pass array in php_PHP tutorial

How to use url to pass array in php_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:07:06910browse

How to use url to pass arrays in php

This article mainly introduces the method of using url to pass arrays in php, and analyzes the techniques of sending and receiving arrays by URL with examples. It is of great practical value, friends in need can refer to it

The example in this article describes the method of using url to pass arrays in PHP. Share it with everyone for your reference. The specific analysis is as follows:

Array transfer is written like this:

The code is as follows:

echo"info" ;

Array receiving:

The code is as follows:

$info = unserialize(base64_decode($_GET['info']));

If visiting:

The code is as follows:

echo $info['name'];

Pay attention to the order of unserialize and base_decode here

I hope this article will be helpful to everyone’s PHP programming design.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/956986.htmlTechArticleHow to use url to pass arrays in php. This article mainly introduces the method of using url to pass arrays in php, with examples. Analyzes the techniques of sending and receiving URL transfer arrays, which is of great practical value...
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