1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 09:02:41 +00:00
Arsse/tests/docroot/Feed/Fetching/TooLarge.php
2021-01-08 16:46:21 -05:00

18 lines
462 B
PHP

<?php
$item = '
<item>
<description>'.str_repeat("0", 1024).'</description>
</item>';
return [
'mime' => "application/rss+xml",
'content' => <<<MESSAGE_BODY
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Test feed</title>
<link>http://localhost:8000/</link>
<description>Example newsfeed title</description>
$item
</channel>
</rss>
MESSAGE_BODY
];