This commit is contained in:
wangyidong
2016-03-04 13:36:09 +08:00
parent 833d40aba6
commit 051e6530d8

View File

@@ -17,7 +17,7 @@ foreach($rows as $row)
echo '"';
foreach($fields as $fieldName => $fieldLabel)
{
isset($row->$fieldName) ? print(htmlspecialchars_decode($row->$fieldName)) : print('');
isset($row->$fieldName) ? print(str_replace('",', '"', htmlspecialchars_decode(strip_tags($row->$fieldName, '<img>')))) : print('');
echo '","';
}
echo '"' . "\n";