satmaelstorm / large-array-writer
Large Array Writer (sample: sitemap writer)
Installs: 2 073
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: >=7.1.0
Requires (Dev)
- phpunit/phpunit: 5.1.*
README
It was originally created for recording SiteMap files with their limitations of 50 MB and 50,000 lines per 1 file. Later useful for recording all sorts of feeds.
Simple Version (1.0)
Usage
$writer = new LargeArrayWriter( "sitemap_%NUM%.xml", "/tmp/" , true, "<?xml version=\"1.0\" encoding=\"UTF-8\"?><urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n", "</urlset>", 50000, 50 * 1000 * 1000, 1000 );
Add string to file:
$writer->addString("<url><loc>URL</loc><lastmod>DATE</lastmod><changefreq>daily</changefreq></url>\n");
After all, finalize writer:
$files = $writer->finalize();