作者 lyh

gx

@@ -71,7 +71,7 @@ class HandleNewsText extends Command @@ -71,7 +71,7 @@ class HandleNewsText extends Command
71 $matches = []; 71 $matches = [];
72 preg_match_all($pattern, $text, $matches); 72 preg_match_all($pattern, $text, $matches);
73 $text = $this->saveBase64Images($matches[1],$text); 73 $text = $this->saveBase64Images($matches[1],$text);
74 - return $this->success($text); 74 + return ($text);
75 } 75 }
76 76
77 /** 77 /**
@@ -91,7 +91,7 @@ class HandleNewsText extends Command @@ -91,7 +91,7 @@ class HandleNewsText extends Command
91 $text = str_replace($src, $imageUrl, $text); 91 $text = str_replace($src, $imageUrl, $text);
92 } 92 }
93 } 93 }
94 - return $this->success($text); 94 + return ($text);
95 } 95 }
96 /** 96 /**
97 * @remark :自调用 97 * @remark :自调用