Hi,
I am having some trouble trying to display runner description - a lot of the links I'm finding most be taking me to an out of date resource as the docs aren't loading.
I currently have the following code which brings back some basic information, but I am trying to retrieve the runner description via the following code. I'm struggling to find where to place any params.
Any help would be appreciated
I am having some trouble trying to display runner description - a lot of the links I'm finding most be taking me to an out of date resource as the docs aren't loading.
I currently have the following code which brings back some basic information, but I am trying to retrieve the runner description via the following code. I'm struggling to find where to place any params.
Any help would be appreciated
PHP Code:
use Betfair\BetfairFactory;
use Betfair\Model\MarketFilter;
require 'includes/vendor/autoload.php';
$betfair = BetfairFactory::createBetfair('$api', '$user', '$pass');
$market = $betfair->getBetfairMarketCatalogue();
$marketDetail = $market->getMarketCatalogueFilteredByEventIds(array($id));
print_r($marketDetail);


Comment