我在 Propel 中的变量大小写有问题
当前有效的代码:
$this->_variables = array('Alias' => 'aliasOne', 'LocationId' => 1);
$model = new Client();
$model->fromArray($this->_variables);
$model->save();
但是由于我的 API 输出的格式,我希望代码是
$array = array('alias' => 'aliasOne', 'location_id' => 1);
$model = new Client();
$model->fromArray($array);
$model->save();
这怎么可能?