NetBeans中是否可以标记一行(例如PHP)代码并动态引用此行号?,例如
echo "check the line number <tagged_line_number> in the script";
问题在于,通过代码开发,任何行都可以自然地改变数字,因此静态引用没有意义。
答案 0 :(得分:1)
如果您正在寻找PHP解决方案,请使用LINE constant。
答案 1 :(得分:0)
实际上Vladislav`s answer是正确的。 你肯定可以这样使用LINE constant:
$line = __LINE__ + 1; // use this right before the line you want to tag
// tagged line goes here
echo "the line number we refer to is $line";
输出将是:
the line number we refer to is 3
Run the example in your browser
但我担心你问题的答案
NetBeans是否可以标记一行代码并动态引用此行号?
是“否”。