Home  >  Article  >  Backend Development  >  PHP method to combine strings or arrays into an array

PHP method to combine strings or arrays into an array

小云云
小云云Original
2018-03-13 10:12:343263browse

This article mainly shares with you the PHP method of merging strings or arrays into an array. There are two methods. I hope it can help you.

General writing method:

<?php/**
 * add a string or an array to another array
 *
 * @param array|string $val
 * @param array        $array
 */function add_val_to_array($val, $array = []) {

    if (is_array($val)) {        $array = array_merge($array, $val);
    } elseif (!is_array($val)) {        $array[] = $val;
    }    return $array;
}?>

Simplified writing method:

<?php /**
 * add a string or an array to another array
 *
 * @param array|string $val
 * @param array        $array
 */function add_val_to_array($val, $array = []) {
    return array_merge($array, (array)$val);
}?>

Related recommendations:

php method example of merging arrays and retaining key values

How to merge arrays in PHP

Similarities and differences between three methods of merging arrays in PHP_PHP tutorial

The above is the detailed content of PHP method to combine strings or arrays into an array. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn