public function BiblioEntrezClient::getMinDate in Bibliography Module 6
Same name and namespace in other branches
- 6.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::getMinDate()
- 7 modules/pubmed/EntrezClient.php \BiblioEntrezClient::getMinDate()
- 7.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::getMinDate()
Returns the minimum date of the specified date range bounding the results.
Return value
string
3 calls to BiblioEntrezClient::getMinDate()
- BiblioEntrezClient::count in pubmed/
EntrezClient.php - Returns the number of results for the previously set search terms.
- BiblioEntrezClient::fetchRecords in pubmed/
EntrezClient.php - Returns up to the maximum number of results starting at $retstart found by the previous search.
- BiblioEntrezClient::search in pubmed/
EntrezClient.php - Returns up to the maximum number of items from the result set starting at $retstart.
File
- pubmed/
EntrezClient.php, line 253 - EntrezClient.php Provides Entrez client to retrieve items from the NCBI databases Orginally writen by Stefan Freudenberg
Class
- BiblioEntrezClient
- @file EntrezClient.php Provides Entrez client to retrieve items from the NCBI databases Orginally writen by Stefan Freudenberg
Code
public function getMinDate() {
return $this->dateRange[0];
}