PHP code example of evrenonur / haberbotu
1. Go to this page and download the library: Download evrenonur/haberbotu library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
evrenonur / haberbotu example snippets
/*SonDakikaCom*/
$sondakikacom = new \Evren\Haberler\Siteler\SonDakikaCom();
$haberler = $sondakikacom->getCategoryNews(\Evren\Haberler\Kategoriler\SonDakikaComKategoriler::DUNYA);
print_r($haberler);
/*TRT HABER*/
$trt = new \Evren\Haberler\Siteler\TrtHaberCom();
echo "<pre>";
print_r($trt->getCategoryNews(\Evren\Haberler\Kategoriler\TrtHaberComKategoriler::YASAM));
echo "</pre>";
/*Sozcu.com.tr*/
$sozcu = new \Evren\Haberler\Siteler\SozcuCom();
echo "<pre>";
print_r($sozcu->getCategoryNews(\Evren\Haberler\Kategoriler\SozcuComKategoriler::GUNDEM));
echo "</pre>";