Go to the documentation of this file.00001 <?php
00010 class cache_none extends cache_abstract {
00011
00012 public function get(&$value, array $prm) {
00013 return false;
00014 }
00015
00016 public function save() {
00017 return true;
00018 }
00019
00020 public function start(array $prm) {
00021 return false;
00022 }
00023
00024 public function end() {
00025 return true;
00026
00027 }
00028
00029 public function delete(array $prm = array()) {
00030 return 1;
00031 }
00032
00033 public function exists(array $prm) {
00034 return false;
00035 }
00036
00037 }