mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
11 lines
439 B
PHP
11 lines
439 B
PHP
<?php
|
|
$b0 = '<h1>Вывод статических данных в 500 наследуемых блоков</h1>' . "\r\n";
|
|
for($i = 1; $i < 501; $i++)
|
|
{
|
|
$b0 .= '{block b'.$i.'}{/block}'."\r\n";
|
|
$data = '{extends "inheritance/smarty/b'.($i-1).'.tpl"}' . "\r\n";
|
|
$data .= '{block b'.$i.'}data'.$i.'{/block}' . "\r\n";
|
|
file_put_contents(__DIR__.'/smarty/b'.$i.'.tpl', $data);
|
|
}
|
|
file_put_contents(__DIR__.'/smarty/b0.tpl', $b0);
|