我正在尝试找出我的 php 会话的最大时间(我无权访问 cpanel 或 php.ini 文件)。我正在尝试使用此代码,但它没有打印出任何内容(“你好”除外)。怎么了?
<?php
session_start();
error_reporting(E_ALL);
ini_set("error_reporting",1);
// Get the current Session Timeout Value
$currentTimeoutInSecs = ini_get(’session.gc_maxlifetime’);
print "hello " . $currentTimeoutInSecs;
?>