Files
web-site/Internal/package-buffering/Select.php
T
2026-07-01 16:44:17 +03:00

26 lines
496 B
PHP

<?php namespace ZN\Buffering;
/**
* ZN PHP Web Framework
*
* "Simplicity is the ultimate sophistication." ~ Da Vinci
*
* @package ZN
* @license MIT [http://opensource.org/licenses/MIT]
* @author Ozan UYKUN [ozan@znframework.com]
*/
class Select extends Singleton
{
/**
* Select key
*
* @param string $name
*
* @return mixed
*/
public static function do(string $name)
{
return self::$session->select(md5('OB_DATAS_'.$name));
}
}