Download the PHP package rss-az/array-to-xml without Composer
On this page you can find all versions of the php package rss-az/array-to-xml. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download rss-az/array-to-xml
More information about rss-az/array-to-xml
Files in rss-az/array-to-xml
Download rss-az/array-to-xml
More information about rss-az/array-to-xml
Files in rss-az/array-to-xml
Please rate this library. Is it a good library?
Informations about the package array-to-xml
install
composer require rss-az/array-to-xml
"require": { "rss-az/array-to-xml": "dev-master" }
rss_generator
Rss generator for rss.az
usage
* key : write category of your website
* value : catergory of Rss.az
$generate = new RssGenerator([
'categories'=>[
"Maliyyə"=>"Biznes və maliyyə",
"Hadisə"=>"Hadisə",
"Siyasət"=>"Cəmiyyət və siyasət",
"Cəmiyyət"=>"Cəmiyyət və siyasət",
"Xarici siyasət"=>"Cəmiyyət və siyasət",
"Mədəniyyət siyasəti"=>"Cəmiyyət və siyasət",
"Daxili siyasət"=>"Cəmiyyət və siyasət",
"Elm və təhsil"=>"Elm və təhsil",
"Səhiyyə"=>"Sağlamlıq və Fitness",
"Şou-biznes"=>"Məşhurlar",
"Futbol"=>"İdman",
"İdman"=>"İdman",
"Mədəniyyət"=>"Mədəniyyət",
],
'query'=>Post::get()->toArray()
]);
// Please write information for rss parent tags. It's required
$generate->title = 'Your rss title';
$generate->link = 'Your rss link';
$generate->description = 'Your rss description';
$generate->language = 'Your rss language';
$generate->image_url = 'Your rss full photo url (etc : https://development.az/images/logo.png)';
$generate->image_link = 'set link for your logo';
$generate->image_title = 'set title for your logo';
// For feed items from your post columns
$generate->title('title');
$generate->link('slug'); // auto insert HTTP_HOST begin of the slug
$generate->description('description');
$generate->pubDate('created_date');
$generate->enclosure('image'); auto insert HTTP_HOST begin of the image path
$generate->category('name');
$generate->xmlMake();
echo $generate->write();
All versions of array-to-xml with dependencies
PHP Build Version
Package Version
The package rss-az/array-to-xml contains the following files
Loading the files please wait ....