mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-08 16:21:39 +01:00
94 lines
2.6 KiB
XML
94 lines
2.6 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<!-- $Revision$ -->
|
||
<!-- EN-Revision: 0 Maintainer: freespace Status: ready -->
|
||
<refentry id="api.fetch">
|
||
<refnamediv>
|
||
<refname>fetch</refname>
|
||
<refpurpose></refpurpose>
|
||
</refnamediv>
|
||
<refsect1>
|
||
<title />
|
||
<methodsynopsis>
|
||
<type>string</type><methodname>fetch</methodname>
|
||
<methodparam><type>string</type><parameter>template</parameter></methodparam>
|
||
<methodparam choice="opt"><type>string</type><parameter>cache_id</parameter></methodparam>
|
||
<methodparam choice="opt"><type>string</type><parameter>compile_id</parameter></methodparam>
|
||
</methodsynopsis>
|
||
<para>
|
||
Функция возвращает вывод шаблона вместо его отображения на экран.
|
||
Укажите верный тип <link
|
||
linkend="template.resources">ресурса шаблонов</link>
|
||
и путь. В качестве необязательного второго параметра можно передать
|
||
cache id. Смотрите раздел
|
||
<link linkend="caching">Кэширование</link>
|
||
для получения дополнительной информации.
|
||
</para>
|
||
¶meter.compileid;
|
||
<para>
|
||
<example>
|
||
<title>fetch</title>
|
||
<programlisting role="php">
|
||
<![CDATA[
|
||
<?php
|
||
include("Smarty.class.php");
|
||
$smarty = new Smarty;
|
||
|
||
$smarty->caching = true;
|
||
|
||
// обращаемся к БД только если отсутствует кэш
|
||
if(!$smarty->is_cached("index.tpl"))
|
||
{
|
||
|
||
// присваиваем некоторые значения
|
||
$address = "245 N 50th";
|
||
$db_data = array(
|
||
"City" => "Lincoln",
|
||
"State" => "Nebraska",
|
||
"Zip" = > "68502"
|
||
);
|
||
|
||
$smarty->assign("Name","Fred");
|
||
$smarty->assign("Address",$address);
|
||
$smarty->assign($db_data);
|
||
|
||
}
|
||
|
||
// перехватываем вывод
|
||
$output = $smarty->fetch("index.tpl");
|
||
|
||
// здесь выполняем какие-либо действия с $output
|
||
|
||
echo $output;
|
||
?>
|
||
]]>
|
||
</programlisting>
|
||
</example>
|
||
</para>
|
||
<para>
|
||
См. также
|
||
<link linkend="api.display">display()</link> и
|
||
<link linkend="api.template.exists">template_exists</link>.
|
||
</para>
|
||
</refsect1>
|
||
</refentry>
|
||
<!-- Keep this comment at the end of the file
|
||
Local variables:
|
||
mode: sgml
|
||
sgml-omittag:t
|
||
sgml-shorttag:t
|
||
sgml-minimize-attributes:nil
|
||
sgml-always-quote-attributes:t
|
||
sgml-indent-step:1
|
||
sgml-indent-data:t
|
||
indent-tabs-mode:nil
|
||
sgml-parent-document:nil
|
||
sgml-default-dtd-file:"../../../../manual.ced"
|
||
sgml-exposed-tags:nil
|
||
sgml-local-catalogs:nil
|
||
sgml-local-ecat-files:nil
|
||
End:
|
||
vim600: syn=xml fen fdm=syntax fdl=2 si
|
||
vim: et tw=78 syn=sgml
|
||
vi: ts=1 sw=1
|
||
-->
|