forked from blallo/rss-bridge
[ElsevierBridge] fix time extraction
Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
This commit is contained in:
parent
251d7646b7
commit
490c5094f5
1 changed files with 2 additions and 2 deletions
|
@ -41,10 +41,10 @@ class ElsevierBridge extends BridgeAbstract{
|
||||||
*/
|
*/
|
||||||
if(preg_match('/\S*(\d+\s\S+\s\d{4})/ims', $timestring, $matches)){
|
if(preg_match('/\S*(\d+\s\S+\s\d{4})/ims', $timestring, $matches)){
|
||||||
return strtotime($matches[0]);
|
return strtotime($matches[0]);
|
||||||
} elseif (preg_match('/([A-Za-z]+\s\d{4})/ims', $timestring, $matches)){
|
|
||||||
return strtotime($matches[0]);
|
|
||||||
} elseif (preg_match('/[A-Za-z]+\-([A-Za-z]+\s\d{4})/ims', $timestring, $matches)){
|
} elseif (preg_match('/[A-Za-z]+\-([A-Za-z]+\s\d{4})/ims', $timestring, $matches)){
|
||||||
return strtotime($matches[0]);
|
return strtotime($matches[0]);
|
||||||
|
} elseif (preg_match('/([A-Za-z]+\s\d{4})/ims', $timestring, $matches)){
|
||||||
|
return strtotime($matches[0]);
|
||||||
} else {
|
} else {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue