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

24 lines
416 B
PHP

<?php namespace ZN;
/**
* 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 Storage
{
/**
* Start Session
*/
public static function start()
{
if( ! session_id() )
{
session_start();
}
}
}