解析包含列名的数组并以相同顺序输出表的所有值

时间:2018-05-28 10:45:16

标签: php html mysql arrays web

我有以下数组:

  @available(iOS 10.0, *)
func textFieldDidEndEditing(_ textField: UITextField, reason: UITextFieldDidEndEditingReason) {
    if(reason == UITextFieldDidEndEditingReason.committed)
    {

    }
}

我想要做的是解析可能没有所有列名匹配数组值的不同表。

例如:

Array ( [0] => id [1] => created_on [2] => your_name [3] => your_company [4] => your_county)

并且将输出具有匹配列名的所有字段,其顺序与单个输出中的数组相同。

在这种情况下,如果以逗号分隔:

,将返回类似这样的内容
Table 1:

id  |  your_name  |  your_company
1   |  gabriel    |  xyz_ltd
2   |  christian  |  abc_ltd

Table 2:

id  |  your_name  |  your_country
1   |  andrew     |  UK
4   |  mark       |  France

我怎样才能做到这一点?

0 个答案:

没有答案