mirror of
https://github.com/e107inc/e107.git
synced 2025-08-06 22:57:14 +02:00
new module creation
This commit is contained in:
68
e107_handlers/arraystorage_class.php
Normal file
68
e107_handlers/arraystorage_class.php
Normal file
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
+ ----------------------------------------------------------------------------+
|
||||
| e107 website system
|
||||
|
|
||||
| <20>Steve Dunstan 2001-2002
|
||||
| http://e107.org
|
||||
| jalist@e107.org
|
||||
|
|
||||
| Released under the terms and conditions of the
|
||||
| GNU General Public License (http://gnu.org).
|
||||
|
|
||||
| $Source: /cvs_backup/e107_0.8/e107_handlers/arraystorage_class.php,v $
|
||||
| $Revision: 1.1.1.1 $
|
||||
| $Date: 2006-12-02 04:33:42 $
|
||||
| $Author: mcfly_e107 $
|
||||
+----------------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
if (!defined('e107_INIT')) { exit; }
|
||||
|
||||
/**
|
||||
* Allows Storage of arrays without use of serialize functions
|
||||
*
|
||||
*/
|
||||
class ArrayData {
|
||||
|
||||
/**
|
||||
* Return a string containg exported array data.
|
||||
*
|
||||
* @param array $ArrayData array to be stored
|
||||
* @param bool $AddSlashes default true, add slashes for db storage, else false
|
||||
* @return string
|
||||
*/
|
||||
function WriteArray($ArrayData, $AddSlashes = true) {
|
||||
if (!is_array($ArrayData)) {
|
||||
return false;
|
||||
}
|
||||
$Array = var_export($ArrayData, true);
|
||||
if ($AddSlashes == true) {
|
||||
$Array = addslashes($Array);
|
||||
}
|
||||
return $Array;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array from stored array data.
|
||||
*
|
||||
* @param string $ArrayData
|
||||
* @return array stored data
|
||||
*/
|
||||
function ReadArray($ArrayData) {
|
||||
if ($ArrayData == ""){
|
||||
return false;
|
||||
}
|
||||
$data = "";
|
||||
$ArrayData = '$data = '.trim($ArrayData).';';
|
||||
@eval($ArrayData);
|
||||
if (!isset($data) || !is_array($data)) {
|
||||
trigger_error("Bad stored array data - <br /><br />".htmlentities($ArrayData), E_USER_ERROR);
|
||||
return false;
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Reference in New Issue
Block a user