mirror of
https://github.com/smarty-php/smarty.git
synced 2025-08-02 17:34:26 +02:00
Add standalone instantiation documentation
This commit is contained in:
@@ -25,9 +25,17 @@ Here's how you create an instance of Smarty in your PHP scripts:
|
|||||||
```php
|
```php
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
// Instantiated via composer
|
||||||
require 'vendor/autoload.php';
|
require 'vendor/autoload.php';
|
||||||
use Smarty\Smarty;
|
use Smarty\Smarty;
|
||||||
$smarty = new Smarty();
|
$smarty = new Smarty();
|
||||||
|
|
||||||
|
// or ...
|
||||||
|
|
||||||
|
// Instantiated directly
|
||||||
|
require("/path/to/smarty/src/Smarty.class.php");
|
||||||
|
use Smarty\Smarty;
|
||||||
|
$smarty = new Smarty();
|
||||||
```
|
```
|
||||||
|
|
||||||
Now that the library files are in place, it's time to set up the Smarty
|
Now that the library files are in place, it's time to set up the Smarty
|
||||||
|
Reference in New Issue
Block a user