PHP Classes

File: test/mmcache/get.php

Recommend this page to a friend!
  Classes of Peter   Storage Class   test/mmcache/get.php   Download  
File: test/mmcache/get.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Storage Class
Manipulate data in arrays and store it in files
Author: By
Last change:
Date: 8 years ago
Size: 254 bytes
 

Contents

Class file image Download
<?php
include_once('../../config/config_setting.php');
$config = config_setting::get_config();
$base_path = $config['base_path'];
include_once(
"{$base_path}/mmcache.php");
$memcache = new mmcache();
$key = 'order';
print_r($memcache->get($key));