遇到了这段代码:
<?php
require_once 'HTTP/Session/Container/DB.php';
$s = new HTTP_Session_Container_DB('mysql://user:password@localhost/db');
ini_get('session.auto_start') or session_start(); //HERE. ??
?>
这种表达在 PHP 中是什么意思?[a 或 b] ?
ini_get('session.auto_start') or session_start();
谢谢。