mirror of
https://github.com/ai-robots-txt/ai.robots.txt.git
synced 2025-04-04 11:03:59 +00:00
Dump out file contents in PHP script
This commit is contained in:
parent
4d47b17c45
commit
bdf30be7dc
1 changed files with 5 additions and 0 deletions
|
@ -12,6 +12,8 @@ It generates:
|
|||
*/
|
||||
|
||||
$robots = json_decode(file_get_contents('robots.json'), 1);
|
||||
var_dump($robots);
|
||||
|
||||
|
||||
$robots_txt = null;
|
||||
$robots_table = '| Name | Operator | Respects `robots.txt` | Data use | Visit regularity | Description |'."\n";
|
||||
|
@ -24,5 +26,8 @@ foreach($robots as $robot => $details) {
|
|||
|
||||
$robots_txt .= 'Disallow: /';
|
||||
|
||||
var_dump($robots_txt);
|
||||
var_dump($robots_table);
|
||||
|
||||
file_put_contents('robots.txt', $robots_txt);
|
||||
file_put_contents('table-of-bot-metrics.md', $robots_table);
|
||||
|
|
Loading…
Reference in a new issue