Home  >  Article  >  Backend Development  >  PHP and JavaScript respectively obtain the key values ​​​​of associative arrays sample code_PHP tutorial

PHP and JavaScript respectively obtain the key values ​​​​of associative arrays sample code_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 16:12:45808browse

PHP version:

Copy code The code is as follows:

$o = array('x'=>1, 'y '=>2, 'z'=>3);
$arr = array();
$i = 0;
foreach( $o as $arr[$i++]=> $v )/*empty*/;
var_dump($arr); //$arr = array('x', 'y', 'z');

JavaScript version:
Copy code The code is as follows:

var o = {x:1, y:2, z:3};
var arr = [], i = 0;
for ( arr[i++] in o ) /*empty*/ ;
console.log( arr ); //arr = ['x', ' y', 'z'];

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/313623.htmlTechArticlePHP version: Copy the code as follows: $o = array('x'=1, 'y'=2 , 'z'=3); $arr = array(); $i = 0; foreach( $o as $arr[$i++]=$v )/*empty*/; var_dump($arr); //$ arr = array('x', 'y', 'z');...
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