Answers for "post data to associative array php"

PHP
1

php transform associative array to array

$array = array_values($array);
Posted by: Guest on June-14-2020
1

how to create associative array in php

<?php 
  /*
  there are three type of array
  	1 - Indexed array
  */
 	$a = array('a','b','c');
	$b = ['a','b','c'];
	/*
    2 - Associative array
    */
	$c = array(
    	'keyOne'=>'valueOne',
      	'keyTwo'=>'valueTwo'
    );
	$d = [
      'keyOne'=>'valueOne',
      'keyTwo'=>'valueTwo'
    ];
/*
    3 - Multidimensional  array
    */
	$c = array(
    	'keyOne'=>array('a','b','c'),
      	'keyTwo'=>array('a'=>'1','b'=>'2')
    );
	$d = [
      'keyOne'=>['a','b','c'],
      	'keyTwo'=>['a'=>'1','b'=>'2']
    ];
  ?>
Posted by: Guest on April-11-2021

Code answers related to "post data to associative array php"

Browse Popular Code Answers by Language