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