PHP Classes

PXML: Template engine that compiles XML tags in PHP code

Recommend this page to a friend!
  Info   View files Documentation   View files View files (2)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
Not enough user ratingsTotal: 293 This week: 1All time: 7,477 This week: 560Up
Version License PHP version Categories
pxml 1.0MIT/X Consortium ...5.0XML, PHP 5, Templates
Description 

Author

This class is a template engine that compiles XML like tags in PHP code.

It loads a template file with certain tags and replaces them by PHP code that will be executed to generate the processed template output.

Currently it supports tags that are replaced by raw PHP code, for, foreach and while loops, conditions and echo statements.

Picture of Mohammed Al Ashaal
  Performance   Level  
Name: Mohammed Al Ashaal <contact>
Classes: 8 packages by
Country: Egypt Egypt
Age: 30
All time rank: 128111 in Egypt Egypt
Week rank: 416 Up8 in Egypt Egypt Up
Innovation award
Innovation award
Nominee: 2x

Winner: 1x

Documentation

PXML TPL

<img src="http://placehold.it/500/146/fff/&text=PXML" /> <br /> A smart tiny and lightest OO php templating system . <br /> Only it replaces some words with others ( uses "str_ireplace()" ) . <br /> - No regex . <br /> - No complex code . <br /> - Very light (the lightest) . <br /> - Write php as xml/html . <br /> - Self Container for ( vars & methods ) . <br /> - Object Oriented . <br />

*

Usage

Config it:

<?php

// load it
require_once 'path/tp/pxml.php';

// start it
$pxml = new pxml;

// ad your own replacements ?
$pxml->add(array(
    '(php):'    =>  ' <?php ',
    ':(php)'    =>  ' ?> '
));

// render a file (and pass vars "optional")
$pxml->render('path/to/file.html', array('var' => 'value'));

An PHTML file

    <h1> <print>$c</print> </h1>
    <php> $this->alert = 'hi' </php>
    <print> $this->alert </print>
    
    <br />
    
    <php> $array = array( 1,2,3,4 ); </php>
    <foreach> $array as $v </foreach>
        <print> $v </print>
    </endforeach>
    
    <br />
    
    <php> $array = array( 1,2,3,4 ); </php>
    <if> !empty($xxx) </if>
        <print> "HI 1" </print>
    <elseif> !empty($yyyy) </elseif>
        <print> "HI 2" </print>
    <else> 
        <print> "HI 3" </print>
    </endif>
    
    <br />
    
    
    <for>$i=0; $i <= 5; ++$i</for>
    <print>$i</print>
    </endfor>
    
    <br />
    
    <php>$x = 4</php>
    <while>$x < 5</while>
    <print>$x, " - " , "HI"</print>
    <php>++$x</php>
    </endwhile>

  Files folder image Files  
File Role Description
Plain text file pxml.php Class Class source
Accessible without login Plain text file README.md Doc. Documentation

 Version Control Unique User Downloads Download Rankings  
 100%
Total:293
This week:1
All time:7,477
This week:560Up