PHP Classes

File: tests/evalContainer.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Mind Framework   tests/evalContainer.php   Download  
File: tests/evalContainer.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Mind Framework
Framework that implements several design patterns
Author: By
Last change:
Date: 1 year ago
Size: 342 bytes
 

Contents

Class file image Download
<?php

require_once '../src/Mind.php';

$Mind = new Mind();

$code = 'merhaba &lt;?=$this-&gt;timestamp;?&gt;';
$Mind->evalContainer($code);


$code = 'merhaba &lt;?=$this-&gt;timestamp;?&gt;

&lt;?php

$array = array(
\'username\'=&gt;\'aliyilmaz\',
\'password\'=&gt;\'123456\'
);

$this-&gt;print_pre($array);'
;
$Mind->evalContainer($code);