Answers for "php array variables"

PHP
1

assign $variable of key value pair array to multiple variables php

$healthStructureData = [
            'product' => $product,
            'website_data' => $website_data,
            'total_keywords' => $total_keywords,
            'certificate_status' => $certificate_status,
            'total_user_websites' => $total_user_websites,
        ];

foreach ($healthStructureData as $key => $value) {
  $$key = $value;
}
Posted by: Guest on July-22-2020
0

php array

<?php
$array = array(
    "foo" => "bar",
    "bar" => "foo",
);

// Using the short array syntax
$array = [
    "foo" => "bar",
    "bar" => "foo",
];
?>
Posted by: Guest on February-15-2021
0

php array

array (
  0 => '1',
  1 => '2',
  2 => '3',
  3 => '4',
)
Posted by: Guest on July-23-2021

Browse Popular Code Answers by Language