PHP code example of iturgeon / fuelfilter
1. Go to this page and download the library: Download iturgeon/fuelfilter 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/ */
iturgeon / fuelfilter example snippets
// create a new view (these extend FuelPHP's View Class)
$view = \Filter\View::forge('myView');
$view->add_filters(\Filter\NoFollow::forge());
echo($view);
<?
namespace \Filter;
class ReverseFilter extends Filter
{
public static function process($string)
{
return strrev($string);
}
}
// create a new view (these extend FuelPHP's View Class)
$view = \Filter\View::forge('myView');
$view->add_filters(ReverseFilter::forge());
echo($view);