La función ReflectionClass::getEndLine() es una función incorporada en PHP que se usa para devolver el número de línea donde termina la clase definida por el usuario.
Sintaxis:
int ReflectionClass::getEndLine( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve el número de línea donde termina la clase definida por el usuario.
Los siguientes programas ilustran la función ReflectionClass::getEndLine() en PHP:
Programa 1:
<?php // Defining a class named as Departments class Departments {} // Using ReflectionClass over the class Departments $ReflectionClass = new ReflectionClass('Departments'); // Calling getEndLine() functions $A = $ReflectionClass->getEndLine(); // Getting the end line number of // the specified class var_dump($A); ?>
Producción:
int(4)
Programa 2:
<?php // Defining a class named as Departments class Departments { static $Dept1 = 'CSE'; private static $Dept2 = 'ECE'; public static $Dept3 = 'EE'; } // Using ReflectionClass over the class Departments $ReflectionClass = new ReflectionClass('Departments'); // Calling getEndLine() functions $A = $ReflectionClass->getEndLine(); // Getting the end line number of // the specified class var_dump($A); ?>
Producción:
int(8)
Referencia: https://www.php.net/manual/en/reflectionclass.getendline.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