gpt4 book ai didi

php - 修复我的 php 脚本未知错误

转载 作者:行者123 更新时间:2023-11-29 13:10:58 25 4
gpt4 key购买 nike

我的服务器从 php4 升级到 php5 时遇到问题谁能帮助我理解我无法理解的变化我分解了需要编辑的代码

session_start();
unset($l);
session_register($l);

/***********************************************************************

Check if user is logged on and display the appropriate page

************************************************************************/

if($page=="" or $page==" "){

header("Location: site_start.php");

}

if($page!="" and& $page!=" "){

if(!isset($l)){

include ("templates/template_header_main.php");

include ("templates/template_login_top.php");

include ("templates/template_$page.php");

include ("templates/template_footer_main.php"); }

else

问题出在 isset 和 session 寄存器上,我知道我要更改session_register($l) 到 $_SESSION['name']= $name;

但是我如何编辑 isset 以使用新的$_SESSION['名称']= $名称;或者我如何编辑 $_SESSION['name']= $name;使用旧的 isset还你能向我解释一下到底发生了什么吗,我很棒使用 .php 和自动脚本,但我只能认为 $_session 在更多的是命令而不是 $var 更多的是 session 注册命令,如果这是所以有人可以分享 $_session 命令列表吗这让我很困惑,非常欢迎所有帮助

谢谢自动链接交易者

我还发现了这个

// Fix for removed Session functions
function fix_session_register(){
function session_register(){
$args = func_get_args();
$_SESSION[$key]=$GLOBALS[$key];
}
}
function session_is_registered($key){
return isset($_SESSION[$key]);
}
function session_unregister($key){
unset($_SESSION[$key]);

我相信它可以解决我的错误,但现在我收到了这个错误

我只是出现白屏并出现此错误

Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are required to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Moscow' for 'MSK/3.0/no DST' instead in /home/autolink/public_html/domain1/index.php on line 48

Warning: Cannot modify header information - headers already sent by (output started at /home/autolink/public_html/donain1/index.php:48) in /home/autolink/public_html/domain1/index.php on line 82

如有任何帮助,我们将不胜感激

最佳答案

1- session_register() :

此函数已从 PHP 5.3.0 起弃用,并从 PHP 5.4.0 起删除。

使用 $_SESSION['key'] 代替,并记住以 session_start 开头您的页面

2- 设置默认时区:

date.timezone in php.ini

DateTime::setTimezone

date_default_timezone_set

List of Supported Timezones

3- isset确定变量是否已设置且不为 NULL,并返回 TRUE 或 FALSE

关于php - 修复我的 php 脚本未知错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22109697/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com