Answers for "data array in php"

PHP
5

array values php

<?php
  
$array = array("size" => "XL", "color" => "gold");

print_r(array_values($array));

?>
Posted by: Guest on June-01-2020
1

how to store array in variable php

$data = array(
    'something1',
    'something2',
    'something3',
);
extract($data, EXTR_PREFIX_ALL, 'var');
echo $var0; //Output something1
Posted by: Guest on October-20-2020

Browse Popular Code Answers by Language