Logout 当我运行代码嗅探器时-6ren">
gpt4 book ai didi

php - 不清楚的代码嗅探器错误

转载 作者:可可西里 更新时间:2023-10-31 23:38:51 30 4
gpt4 key购买 nike

我已经用 php 代码跟踪了 html 标记:

<div class="block">
<div class="block-title">
<?php if ($user->isOnline()): ?>
<a href="<?=Url::create('/user/logout');?>">Logout</a>
<?php endif; ?>
</div>
</div>

当我运行代码嗅探器时,出现以下错误:

<error line="3" column="15" severity="error" message="Line indented incorrectly; expected 8 spaces, found 0" source="Generic.WhiteSpace.ScopeIndent.Incorrect"/>
<error line="5" column="15" severity="error" message="Closing brace must be on a line by itself" source="PEAR.WhiteSpace.ScopeClosingBrace.Line"/>

我试图在 html View 中找到关于 php 构造的任何标准或描述,但一无所获。

也许,有人知道 html 中的 ifforeach 指令应该怎么看?

谢谢。

最佳答案

我解决了我的问题,但代码看起来不太好:

<div class="block">
<div class="block-title">
<?php
if ($user->isOnline()): ?>
<a href="<?=Url::create('/user/logout');?>">Logout</a>
<?php
endif; ?>
</div>

因此,我决定使用 @codingStandardsIgnoreFile 注释将 View 文件添加到 Code Sniffer 忽略列表中。现在,需要手动检查代码风格,但代码看起来好多了。

关于php - 不清楚的代码嗅探器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33033292/

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