作者 lyh

gx

... ... @@ -437,6 +437,8 @@ function isEnglish($str) {
*/
function characterTruncation($string,$pattern){
preg_match($pattern, $string, $matches);
var_dump($matches);
die();
if (isset($matches[1])) {
$result = $matches[1];
return $result; // 输出:这是footer标签的内容
... ...