Package Data | |
---|---|
Maintainer Username: | TituGeorge |
Maintainer Contact: | titugeorge@gmail.com (titugeorge) |
Package Create Date: | 2017-01-03 |
Package Last Update: | 2017-01-03 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:09:41 |
Package Statistics | |
---|---|
Total Downloads: | 45 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 3 |
Total Forks: | 1 |
Total Open Issues: | 0 |
API wrapper helps you to fetch PubMed articles with following features:
Usage and sample code to get PubMed article(s) by Name(s)! :+1:
$name = "chris";
$count = 5;
print_r( PubMed::getPubMedArticleByName( $name, $count ) );
/*
Parameters:
$name ( Mandatory ), can accommodate multiple names combination with comma separated string like ( "Chris, John" )
$count ( NonMandatory and default count will be 10, This represent how many records need to be retrieved)
*/
Usage and sample code to get PubMed article(s) by Id(s)! :+1:
// Multiple id(s) can be passed to the api wrapper
$id = array('28030999', '28023346');
print_r( PubMed::getPubMedArticleByIds($id) );
App Config:
'providers' => [
TituGeorge\PubMed\PubmedServiceProvider::class,
],
'aliases' => [
'PubMed' => TituGeorge\PubMed\Facade\Pubmed::class,
],
Please feel free to contact me titugeorge@gmail.com
Checkout my online Portfolio