string2array($value);

/**
* 将字符串转换为数组
*
* @param string $data 字符串
* @return array 返回数组格式,如果,data为空,则返回空数组
*/
if ( !function_exists('string2array'))
{
function string2array($data) {
if($data == '') return array();
@eval("$array = $data;");
return $array;
}
}
/**
* 将数组转换为字符串
*
* @param array $data 数组
* @param bool $isformdata 如果为0,则不使用new_stripslashes处理,可选参数,默认为1
* @return string 返回字符串,如果,data为空,则返回空
*/
if ( !function_exists('array2string'))
{
function array2string($data, $isformdata = 1) {
if($data == '') return '';
if($isformdata) $data = new_stripslashes($data);
return addslashes(var_export($data, TRUE));
}
}

原文地址:https://www.cnblogs.com/hechunhua/p/3770905.html