空の文字列をすべてnullに変換します。array_walk_recursive
を使用しましたが、私がここで間違ったことを理解するのを助けてください。は、ヌル値をlaravelの空の文字列に変換します。5.4
protected function setData($key, $value)
{
$this->data[$key] = $value;
array_walk_recursive($this->data, function (&$item, $key) {
$item = null === $item ? '' : $item;
});
return $this->data;
}
「$ item =!is_null($ item)? $ item: ''; ' – Ohgodwhy
も動作しません。 –
if($ item === NULL){ $ item =' '; } – Exprator