PHP code example of folded / view

1. Go to this page and download the library: Download folded/view library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

folded / view example snippets


use function Folded\setViewFolderPath;
use function Folded\setViewCacheFolderPath;

setViewFolderPath(__DIR__ . "/views");
setViewCacheFolderPath(__DIR__ . "/cache/views");

use function Folded\displayView;

displayView("home.index");

use function Folded\displayView;

displayView("home.index", [
  "name" => "John",
]);

use function Folded\displayView;

displayView("about-us.index");

use function Folded\addDataToView;

addDataToView("layouts.base", [
  "companyName" => "Folded",
]);

use function Folded\getRenderedView;

$content = getRenderedView("emails.account-created");