PHP Classes

File: examples/tags/lower/tag.php

Recommend this page to a friend!
  Classes of Oliver Lillie   PHP Custom Tags   examples/tags/lower/tag.php   Download  
File: examples/tags/lower/tag.php
Role: Auxiliary script
Content type: text/plain
Description: Example script
Class: PHP Custom Tags
Template engine based on tags similar to HTML
Author: By
Last change: Update of examples/tags/lower/tag.php
Date: 2 months ago
Size: 102 bytes
 

Contents

Class file image Download
<?php

   
namespace CustomTags;

    function
ct_lower($tag)
    {
        return
strtolower($tag['content']);
    }