我有两个具有这种结构的变量:
$columns = "col1, col2, col3";
$values = "$value1, $value2, $value3";
我需要做什么才能获得:
$combined = "col1 = $value1, col2 = $value2, col3 = $value3";
我很确定我需要:
explode(',', $columns);
explode (',', $values);
$combined = array_combine($columns, $values);
$combined = implode(',', $combined);
但后来我得到:
$combined = "col1, $value1, col2, $value2, col3, $value3";
如何用“=”替换所有其他逗号?
这是解决这个问题的最好方法吗?