ReflectionGenerator::getExecutingLine()函数是PHP中的一个内置函数,用于返回生成器中指定的当前正在执行的语句的行号。
用法:
int ReflectionGenerator::getExecutingLine( void )
参数:该函数不接受任何参数。
返回值:此函数返回生成器中指定的当前正在执行的语句的行号。
以下示例程序旨在说明PHP中的ReflectionGenerator::getExecutingLine()函数:
示例1:
<?php
// Initializing a user-defined class Company
class Company {
public function GFG() {
yield 0;
}
}
// Creating a generator 'A' on the above
// class Company
$A = (new Company)->GFG();
// Using ReflectionGenerator over the
// above generator 'A'
$B = new ReflectionGenerator($A);
// Calling the getExecutingLine() function
$C = $B->getExecutingLine();
// Getting the line number of the specified
// currently executing statement in
// the generator 'A'
echo $C;
?>
输出:
8
示例2:
<?php
// Initializing a user-defined class Departments
class Departments {
public function Coding_Department() {
yield 0;
}
public function HR_Department() {
yield 1;
}
public function Marketing_Department() {
yield 2;
}
}
// Creating some generators on the above
// class Departments
$A = (new Departments)->Coding_Department();
$B = (new Departments)->HR_Department();
$C = (new Departments)->Marketing_Department();
// Using ReflectionGenerator over the
// above generators
$D = new ReflectionGenerator($A);
$E = new ReflectionGenerator($B);
$F = new ReflectionGenerator($C);
// Calling the getExecutingLine() function
// and getting the line number of the specified
// currently executing statement in
// the generators
echo $D->getExecutingLine();
echo "\n";
echo $E->getExecutingLine();
echo "\n";
echo $F->getExecutingLine();
?>
输出:
8 12 16
参考: https://www.php.net/manual/en/reflectiongenerator.getexecutingline.php
相关用法
- PHP ReflectionGenerator getExecutingFile()用法及代码示例
- PHP ReflectionGenerator getTrace()用法及代码示例
- PHP ReflectionGenerator getExecutingGenerator()用法及代码示例
- PHP ReflectionGenerator getFunction()用法及代码示例
- PHP ReflectionGenerator getThis()用法及代码示例
- d3.js d3.rgb()用法及代码示例
- p5.js int()用法及代码示例
- PHP dir()用法及代码示例
- PHP pi( )用法及代码示例
- CSS rgb()用法及代码示例
- d3.js d3.map.get()用法及代码示例
- CSS url()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 PHP | ReflectionGenerator getExecutingLine() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。