no message
This commit is contained in:
parent
d32e10ba62
commit
7573187bd6
@ -215,7 +215,7 @@ class Dog extends Mod\Base {
|
|||||||
// foreach ($oSelfList as &$oSelfListRow) {
|
// foreach ($oSelfList as &$oSelfListRow) {
|
||||||
// $oSelfListRow = $this->filterRow($oSelfListRow);
|
// $oSelfListRow = $this->filterRow($oSelfListRow);
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
// return $oSelfList;
|
// return $oSelfList;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
@ -284,15 +284,15 @@ class Dog extends Mod\Base {
|
|||||||
|
|
||||||
// private function filterRow($oSelfRow)
|
// private function filterRow($oSelfRow)
|
||||||
// {
|
// {
|
||||||
//
|
//
|
||||||
// foreach ($this->aStrField as $v) {
|
// foreach ($this->aStrField as $v) {
|
||||||
// $oSelfRow->{$v} = $this->subStr($oSelfRow->{$v});
|
// $oSelfRow->{$v} = $this->subStr($oSelfRow->{$v});
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
// foreach ($this->aJsonField as $v) {
|
// foreach ($this->aJsonField as $v) {
|
||||||
// $oSelfRow->{$v} = json_decode($oSelfRow->{$v});
|
// $oSelfRow->{$v} = json_decode($oSelfRow->{$v});
|
||||||
// }
|
// }
|
||||||
//
|
//
|
||||||
// return $oSelfRow;
|
// return $oSelfRow;
|
||||||
// }
|
// }
|
||||||
|
|
||||||
@ -611,11 +611,11 @@ class Dog extends Mod\Base {
|
|||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->aStrField as $sStrField) {
|
foreach ($this->aStrField as $sStrField) {
|
||||||
$aData[$sStrField] = $this->subStr($aData[$sStrField]);
|
$aData[$sStrField] = $this->subStr($aData[$sStrField] ?? '');
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->aJsonField as $sJsonField) {
|
foreach ($this->aJsonField as $sJsonField) {
|
||||||
$aData[$sJsonField] = json_decode($aData[$sJsonField]);
|
$aData[$sJsonField] = json_decode($aData[$sJsonField] ?? '');
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($this->aOutFormat as $sFormatField => $sFormatType) {
|
foreach ($this->aOutFormat as $sFormatField => $sFormatType) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user