Open In App
Related Articles

PHP | ReflectionClass getStartLine() Function

Improve Article
Improve
Save Article
Save
Like Article
Like

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
   
// 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);
?>


Output:

int(4)

Program 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);
?>


Output:

int(4)

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
Previous
Next
Similar Reads
Complete Tutorials