背景:
我正在尝试创建一个平面文件键值存储。当我使用下面的代码时,已经写入文件的数组被删除,我最终得到一个空文件。在下一个请求中,文件将填充数组。此过程在每个页面请求上循环自身。
我尝试了什么:
似乎什么都行不通!我最终得到了一个空文件的循环 - >文件与数组,它继续
问题:
有经验的人可以告诉我我做错了吗?
代码:
/**
* Class Orm
*/
class Orm
{
/**
* @var string The Root database directory with a trailing slash. default is "./database/".
*/
static $dir = "./database/";
/**
* @var array
*/
protected $data;
/**
* @var string
*/
protected $file = "";
/**
* @param $file
* @return string
*/
public function load_table($file)
{
try {
if (file_exists(self::$dir . $file)) {
return $this->file = $file;
} else {
throw new Exception("The file " . $file . " cannot be created, because it already exists");
}
} catch (Exception $error) {
return $error->getMessage();
}
}
/**
* @param String
* @param array $values An associative array of values to store.
* @return array
*/
public function set($key, $values = array())
{
try{
if (!empty($key) && !empty($values)){
return $this->data[$key] = $values;
} else {
throw new Exception();
}
} catch (Exception $error){
return $error->getMessage();
}
}
public function save()
{
try{
if (file_exists(self::$dir . $this->file)) {
if (filesize(self::$dir . $this->file) == 0)
{
file_put_contents(self::$dir . $this->file, print_r($this->data, TRUE));
}else{
$tmp = file_get_contents(self::$dir . $this->file);
$content = array_merge($tmp, $this->data);
file_put_contents(self::$dir . $this->file, print_r($content, TRUE));
}
} else {
throw new Exception();
}
} catch(Exception $error){
return $error->getMessage();
}
}
}
$user = new Orm();
$user->load_table("users");
$user->set("Tito",array("age" => "32", "occupation" => "cont"));
$user->save();
PS:我认为这将是一个很好的项目,让自己熟悉Php。因此,请不要建议使用SQL,因为这仅用于学习和理解Php。
答案 0 :(得分:3)
我不能说为什么你的代码不能这样做。但是我会创建另一个对象,负责加载并将字符串保存到磁盘。没有更多,更不用说了:
class StringStore
{
private $path;
public function __construct($path) {
$this->path = $path;
}
/**
* @return string
*/
public function load() {
... move your load code in here
return $buffer;
}
/**
* @param string $buffer
*/
public function save($buffer) {
... move your save code in here
}
}
这可能看起来有点少,但是你可以将更多的代码移出ORM类。如果问题是存储到磁盘(例如可能有些错误?),那么你可以在商店类中修复它。
如果在字符串处理中犯了错误,那么您知道需要查看ORM类而不是继续修复。