为什么 上关闭
如标题所示,在我的 html5 文档中,由于误读,php 脚本过早结束 ->作为结束标签。我不知道为什么?我正在使用 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();
?>
它不仅仅是突出显示错误,删除空格也没有什么区别。将 session_begin() 更改为 session_start() 仍然没有任何结果。我可以在我的网站上看到线路
session_start(); $auth->acl($user = data); $user->setup(); ?>
。
问题是,我的文件是 .html 文件 ;>感谢您的回复
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简短版本:不是。 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.是的,就是空格:
以及
->
为空格的所有其他位置。Yep, it's the spaces:
and all other places where
->
is a space.