The ReflectionClass::getStartLine() function is an inbuilt function in PHP which is used to return the line number from where the user defined class get started.
Syntax:
int ReflectionClass::getStartLine( void )
Parameters: This function does not accept any parameters.
Return Value: This function returns the line number from where the user defined class get started.
Below programs illustrate the ReflectionClass::getStartLine() function in PHP:
Program 1:
<?php
class Departments {}
$ReflectionClass = new ReflectionClass( 'Departments' );
$A = $ReflectionClass ->getStartLine();
var_dump( $A );
?>
|
Program 2:
<?php
class Departments {
static $Dept1 = 'CSE' ;
private static $Dept2 = 'ECE' ;
public static $Dept3 = 'EE' ;
}
$ReflectionClass = new ReflectionClass( 'Departments' );
$A = $ReflectionClass ->getStartLine();
var_dump( $A );
?>
|
Reference: https://www.php.net/manual/en/reflectionclass.getstartline.php
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
30 Nov, 2019
Like Article
Save Article