审查视图

simplewind/extend/alipay/lotusphp_runtime/Store.php 158 字节
lihan authored
1 2 3 4 5 6 7 8
<?php
Interface LtStore
{
	public function add($key, $value);
	public function del($key);
	public function get($key);
	public function update($key, $value);
}