PHP Classes

File: example3.2.php

Recommend this page to a friend!
  Classes of Richard Munroe   dm.IS Layout   example3.2.php   Download  
File: example3.2.php
Role: Example script
Content type: text/plain
Description: example
Class: dm.IS Layout
Fork of the IS layout template engine
Author: By
Last change:
Date: 19 years ago
Size: 870 bytes
 

Contents

Class file image Download
<?php
require_once "class.IS_Layout.php";

// The HTML file
$html=<<<END
<html>
<body>

<p align="center">&nbsp;</p>
<p align="center"><b>Today</b>: [date,today,month]/[date,today,day]/[date,today,year]</p>
<p align="center"><b>Yesterday</b>: [date,yesterday,month]/[date,yesterday,day]/[date,yesterday,year]</p>

</body>
</html>
END;

$date['today']['month']=date("m");
$date['today']['day']=date("d");
$date['today']['year']=date("Y");

$unixyesterday=date("U")-60*60*24;
$arrayYesterday=getdate($unixyesterday);

$date['yesterday']['month']=$arrayYesterday['mon'];
$date['yesterday']['day']=$arrayYesterday['mday'];
$date['yesterday']['year']=$arrayYesterday['year'];


$lay=new IS_Layout($html);

// First Argument in replace function are ever the reference of variable in HTMl file
$lay->replace('date',$date);

$lay->display();
?>