Answers for "php attach array to another"

PHP
0

copy php array to another

$arr1 = ['a'=>1, 'b'=>2, 'c'=>3];
$arr2 = $arr1;

unset($arr2['a'];
print_r($arr1);
//['b'=>2, 'c'=>3]
// ------- OR -------
$arr2 = clone $arr1;

unset($arr2['a'];
print_r($arr1);
//['a'=>1, 'b'=>2, 'c'=>3]
Posted by: Guest on October-23-2020
-2

how to append one array to another array in php

((data.userDetails.profile_picture === null) ||(data.userDetails.profile_picture===undefined))? picture ='<div><img src="http://commondatastorage.googleapis.com/codeskulptor-assets/lathrop/nebula_brown.png"' :
          picture = '<img src="'+data.userDetails.profile_picture+ '"/>';
Posted by: Guest on September-04-2020

Code answers related to "php attach array to another"

Browse Popular Code Answers by Language