2000-08-08 17:07:01 +00:00
|
|
|
NAME:
|
|
|
|
|
|
2001-01-18 20:41:43 +00:00
|
|
|
Smarty - the PHP compiling template engine
|
|
|
|
|
|
2003-11-27 11:46:36 +00:00
|
|
|
VERSION: 2.6.0
|
2000-12-18 15:34:29 +00:00
|
|
|
|
|
|
|
|
AUTHORS:
|
2001-01-02 14:51:02 +00:00
|
|
|
|
2005-01-21 17:46:15 +00:00
|
|
|
Monte Ohrt <monte at ohrt dot com>
|
2001-04-25 15:49:51 +00:00
|
|
|
Andrei Zmievski <andrei@php.net>
|
2000-12-18 15:34:29 +00:00
|
|
|
|
2002-03-28 19:53:27 +00:00
|
|
|
MAILING LISTS:
|
|
|
|
|
|
|
|
|
|
We have a few mailing lists. "general" for you to share your ideas or ask
|
|
|
|
|
questions, "dev" for those interested in the development efforts of Smarty,
|
|
|
|
|
and "cvs" for those that would like to track the updates made in the cvs
|
|
|
|
|
repository.
|
2001-02-01 22:24:28 +00:00
|
|
|
|
2002-03-04 20:10:45 +00:00
|
|
|
send a blank e-mail message to:
|
2002-03-28 19:53:27 +00:00
|
|
|
smarty-general-subscribe@lists.php.net (subscribe to the general list)
|
|
|
|
|
smarty-general-unsubscribe@lists.php.net (unsubscribe from the general list)
|
2002-03-28 20:03:00 +00:00
|
|
|
smarty-general-digest-subscribe@lists.php.net (subscribe to digest)
|
|
|
|
|
smarty-general-digest-unsubscribe@lists.php.net (unsubscribe from digest)
|
2002-03-28 19:53:27 +00:00
|
|
|
smarty-dev-subscribe@lists.php.net (subscribe to the dev list)
|
|
|
|
|
smarty-dev-unsubscribe@lists.php.net (unsubscribe from the dev list)
|
|
|
|
|
smarty-cvs-subscribe@lists.php.net (subscribe to the cvs list)
|
|
|
|
|
smarty-cvs-unsubscribe@lists.php.net (unsubscribe from the cvs list)
|
2001-04-19 16:18:17 +00:00
|
|
|
You can also browse the mailing list archives at
|
|
|
|
|
http://marc.theaimsgroup.com/?l=smarty&r=1&w=2
|
2001-02-01 22:24:28 +00:00
|
|
|
|
2000-08-08 17:07:01 +00:00
|
|
|
SYNOPSIS:
|
|
|
|
|
|
2001-01-02 14:51:02 +00:00
|
|
|
require("Smarty.class.php");
|
2000-08-08 17:07:01 +00:00
|
|
|
|
2001-01-02 14:51:02 +00:00
|
|
|
$smarty = new Smarty;
|
2000-08-08 17:07:01 +00:00
|
|
|
|
2001-01-02 14:51:02 +00:00
|
|
|
$smarty->assign("Title","My Homepage");
|
|
|
|
|
$smarty->assign("Names",array("John","Gary","Gregg","James"));
|
2000-08-08 17:07:01 +00:00
|
|
|
|
2001-01-29 16:36:07 +00:00
|
|
|
$smarty->display("index.tpl");
|
2000-08-08 17:07:01 +00:00
|
|
|
|
2001-02-01 22:24:28 +00:00
|
|
|
|
2000-08-08 17:07:01 +00:00
|
|
|
DESCRIPTION:
|
|
|
|
|
|
2001-01-02 14:51:02 +00:00
|
|
|
What is Smarty?
|
|
|
|
|
|
2002-02-19 20:53:59 +00:00
|
|
|
Smarty is a template engine for PHP. Many other template engines for PHP
|
|
|
|
|
provide basic variable substitution and dynamic block functionality.
|
|
|
|
|
Smarty takes a step further to be a "smart" template engine, adding
|
|
|
|
|
features such as configuration files, template functions, and variable
|
|
|
|
|
modifiers, and making all of this functionality as easy as possible to
|
|
|
|
|
use for both programmers and template designers. Smarty also converts
|
|
|
|
|
the templates into PHP scripts, eliminating the need to parse the
|
|
|
|
|
templates on every invocation. This makes Smarty extremely scalable and
|
2003-02-28 15:08:15 +00:00
|
|
|
manageable for large application needs.
|
2001-01-02 14:51:02 +00:00
|
|
|
|
|
|
|
|
Some of Smarty's features:
|
|
|
|
|
|
|
|
|
|
* it is extremely fast
|
|
|
|
|
* no template parsing overhead, only compiles once.
|
2002-02-19 20:53:59 +00:00
|
|
|
* it is smart about recompiling only the template files that have
|
|
|
|
|
changed.
|
|
|
|
|
* the template language is remarkably extensible via the plugin
|
|
|
|
|
architecture.
|
2001-01-02 14:51:02 +00:00
|
|
|
* configurable template delimiter tag syntax, so you can use
|
|
|
|
|
{}, {{}}, <!--{}-->, or whatever you like.
|
2002-02-19 20:53:59 +00:00
|
|
|
* built-in caching of template output.
|
|
|
|
|
* arbitrary template sources (filesystem, databases, etc.)
|
2001-01-18 20:41:43 +00:00
|
|
|
* template if/elseif/else/endif constructs are passed to the PHP parser,
|
|
|
|
|
so the if syntax can be as simple or as complex as you like.
|
2002-02-19 20:53:59 +00:00
|
|
|
* unlimited nesting of sections, conditionals, etc. allowed
|
|
|
|
|
* it is possible to embed PHP code right in your template files,
|
2001-01-18 20:41:43 +00:00
|
|
|
although not recommended and doubtfully needed since the engine
|
|
|
|
|
is so customizable.
|
2002-02-19 20:53:59 +00:00
|
|
|
* and many more.
|
2000-08-08 17:07:01 +00:00
|
|
|
|
|
|
|
|
COPYRIGHT:
|
2005-01-21 16:41:52 +00:00
|
|
|
Copyright (c) 2001-2005 New Digital Group, Inc. All rights reserved.
|
2001-02-22 21:25:19 +00:00
|
|
|
This software is released under the GNU Lesser General Public License.
|
2001-01-02 14:51:02 +00:00
|
|
|
Please read the disclaimer at the top of the Smarty.class.php file.
|