Answers for "push method in php"

PHP
0

php array push

If you're going to use array_push() to insert a "$key" => "$value" pair into an array, it can be done using the following:

    $data[$key] = $value;

It is not necessary to use array_push.
Posted by: Guest on December-13-2021

Browse Popular Code Answers by Language