浏览代码

Added logic to match unlabelled abstract fields

main
Simon Bowie 3 年前
父节点
当前提交
69027eda64
共有 1 个文件被更改,包括 7 次插入2 次删除
  1. +7
    -2
      site/solr.php

+ 7
- 2
site/solr.php 查看文件

$output['title'] = $title[1]; $output['title'] = $title[1];


// Search for the abstract in the content element and display it // Search for the abstract in the content element and display it
preg_match('/Abstract.*\n(.*)\n/', $content, $abstract);
$output['abstract'] = $abstract[1];
if (preg_match('/Abstract.*\n(.*)\n/', $content, $abstract)){
$output['abstract'] = $abstract[1];
}
else {
preg_match('/\(.\) \\n\\n(.*)\\n/', $content, $abstract);
$output['abstract'] = $abstract[1];
}


return $output; return $output;



正在加载...
取消
保存