作者 lyh

gx

... ... @@ -163,7 +163,7 @@ class ProofreadingController extends BaseController
$matches = array();
preg_match_all($pattern, $strippedContent, $matches);
$textContentArray = array_filter($matches[1], function($item) {
var_dump($item);
$content = trim($item);
return !empty(trim($item));
});
$textContentArray = array_values($textContentArray);
... ...