Skip to content
Advertisement

PHP send an array with subarray value(s) to a function along with its key

I have a associative array(shown below). I want to send $demographics[‘customer’] to a function and access both the key and value of the array.

JavaScript

Actual:

JavaScript

Expected:

JavaScript

Advertisement

Answer

If you just need to send a specific part of the array to the function, you can also use array_slice(). Like with the first element like this:

JavaScript

Also refer to: https://www.php.net/manual/en/function.array-slice.php

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement