为什么 上关闭

发布于 2024-12-12 10:04:22 字数 669 浏览 1 评论 0 原文

如标题所示,在我的 html5 文档中,由于误读,php 脚本过早结束 ->作为结束标签。我不知道为什么?我正在使用 Adob​​e Dreamweaver。

<?php
define('IN_PHPBB', true);
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
$user -> session_begin();
$auth -> acl($user = data);
$user -> setup();
?>

它不仅仅是突出显示错误,删除空格也没有什么区别。将 session_begin() 更改为 session_start() 仍然没有任何结果。我可以在我的网站上看到线路

session_start(); $auth->acl($user = data); $user->setup(); ?> 

问题是,我的文件是 .html 文件 ;>感谢您的回复

As in title, in my html5 document, php script is ending too early, due to misreading -> as a closing tag. I have no idea why? I'm using Adobe Dreamweaver.

<?php
define('IN_PHPBB', true);
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
$user -> session_begin();
$auth -> acl($user = data);
$user -> setup();
?>

It's not just highlighting error, and removing spaces makes no difference. Changed session_begin() to session_start() still nothing. I can see lines

session_start(); $auth->acl($user = data); $user->setup(); ?> 

on my website.

The problem was, my file was a .html file ;> Thanks for replies

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

往日情怀 2024-12-19 10:04:23

简短版本:不是。 PHP 以 ?> 终止(如果您使用的是 asp 样式标记,则可能为 %>)。

长版本:查看您的文档,尝试放置各种 echo 语句,以确保您退出您认为所在的位置。如果可以的话,使用纯文本查看器编辑文件,以确保编辑器不会对您隐藏任何内容。

更新
确保您的包含正确执行。如果无法找到该文件,或者该文件未创建 user 对象,则下一行将失败,并且 PHP 将终止。

Short Version: It's not. PHP terminates at ?> (or possibly %> if you're using asp style tags).

Long Version: Take a look through your document, try placing various echo statements around to ensure you're exiting where you think you are. Edit the file with a plain text viewer if you can, to make sure your editor isn't hiding anything from you.

Update
Ensure that your include is performing correctly. If it's unable to find that file, or the file doesn't create the user object, your next line will fail, and PHP will terminate.

腻橙味 2024-12-19 10:04:23

是的,就是空格:

//replace
$user -> session_begin();

//with
$user->session_begin();

以及 -> 为空格的所有其他位置。

Yep, it's the spaces:

//replace
$user -> session_begin();

//with
$user->session_begin();

and all other places where -> is a space.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文