PHP:如何检测代码中的当前列(eq. __COLUMN__)?

发布于 2024-10-23 14:56:32 字数 179 浏览 1 评论 0原文

我需要获取代码中函数调用当前位置的唯一标识符(以便在模板中使用它)。 所以,我需要类似的东西:

$uid = __FILE__ . __LINE__ . __COLUMN__;
Does PHP have anything like __COLUMN__?

I need to get unique identificator for current place of function call in code (for using it in template).
So, i need something like:

$uid = __FILE__ . __LINE__ . __COLUMN__;


Does PHP have anything like __COLUMN__?

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

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

发布评论

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

评论(1

习ぎ惯性依靠 2024-10-30 14:56:32

我不这么认为,不。

魔法常量部分没有提到这样的事情手册的内容。

然而,按理说,人们不应该太需要它。如果一行源代码太长以至于需要列号作为信息,则可能应该将其分解。

I don't think so, no.

There is no mention of such a thing in the magic constants section of the manual.

However, it stands to reason one shouldn't be needing that too badly. If a line of source code is so long that it needs the column number as an information, it should probably be broken up.

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