Answers for "index of and element in php"

PHP
0

how to lookup value inside object php

$array = [
    'clothes' => 't-shirt',
    'size'    => 'medium',
    'color'   => 'blue',
];
 
extract($array);
 
echo("$clothes $size $color"); // t-shirt medium blue
Posted by: Guest on October-30-2020

Code answers related to "index of and element in php"

Browse Popular Code Answers by Language