PHP | Función ReflectionGenerator getExecutingLine()

La función ReflectionGenerator::getExecutingLine() es una función incorporada en PHP que se usa para devolver el número de línea de la instrucción especificada que se está ejecutando actualmente en el generador.

Sintaxis:

int ReflectionGenerator::getExecutingLine( void )

Parámetros: Esta función no acepta ningún parámetro.

Valor devuelto: esta función devuelve el número de línea de la instrucción que se está ejecutando actualmente en el generador.

Los siguientes programas ilustran la función ReflectionGenerator::getExecutingLine() en PHP:

Programa 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;
?>

Producción:

8

Programa 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();
?>
Producción:

8
12
16

Referencia: https://www.php.net/manual/en/reflectiongenerator.getexecutingline.php

Publicación traducida automáticamente

Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *