php的数组递归函数

时间:2017-11-12 12:10:09

标签: php arrays recursion

我有一个多维数组($(document).ready(function () { $('#myForm').validate({ // initialize the plugin rules: { status: { required: true, }, type: { required: true, }, min_bed: { required: true, }, max_bed: { required: true, } } }); ),并希望将其“线性化”为字符串。所以我尝试使用这个递归函数:

MyArray

但是,我只从数组的第一级获取密钥:递归调用似乎不起作用。有谁能发现问题?

1 个答案:

答案 0 :(得分:1)

您正在返回$RecursiveOutput,但您没有抓住返回值。试试这个

$RecursiveOutput .= "(". $key .")(". RecursiveFunction($value) .")";