PHP | ReflectionProperty isPrivate() Function Last Updated : 30 Dec, 2019 Comments Improve Suggest changes Like Article Like Report The ReflectionProperty::isPrivate() function is an inbuilt function in PHP which is used to return TRUE if the specified property is private, FALSE otherwise. Syntax: bool ReflectionProperty::isPrivate ( void ) Parameters: This function does not accept any parameter. Return Value: This function returns TRUE if the specified property is private, FALSE otherwise. Below programs illustrate the ReflectionProperty::isPrivate() function in PHP: Program 1: php <?php // Initializing a user-defined class Company class Company { private $SizeOfGeeksforGeeks = 13; public $SizeOfGFG = 3; } // Using ReflectionProperty $A = new ReflectionProperty('Company', 'SizeOfGeeksforGeeks'); $B = new ReflectionProperty('Company', 'SizeOfGFG'); // Calling the isPrivate() function $C = $A->isPrivate(); $D = $B->isPrivate(); // Getting TRUE if the specified property // is private, FALSE otherwise. var_dump($C); var_dump($D); ?> Output: bool(true) bool(false) Program 2: php <?php // Initializing some user-defined classes class Department1 { protected $SizeOfHR; } class Department2 { public $SizeOfCoding = 6; } class Department3 { private $SizeOfMarketing = 9; } // Using ReflectionProperty over above classes $A = new ReflectionProperty('Department1', 'SizeOfHR'); $B = new ReflectionProperty('Department2', 'SizeOfCoding'); $C = new ReflectionProperty('Department3', 'SizeOfMarketing'); // Calling the isPrivate() function and // getting TRUE if the specified property // is private, FALSE otherwise. var_dump($A->isPrivate()); var_dump($B->isPrivate()); var_dump($C->isPrivate()); ?> Output: bool(false) bool(false) bool(true) Reference: https://www.php.net/manual/en/reflectionproperty.isprivate.php Comment More infoAdvertise with us Next Article Must Coding Questions - Company-wise K Kanchan_Ray Follow Improve Article Tags : Web Technologies PHP PHP-function PHP- Reflection Similar Reads Interview PreparationInterview Preparation For Software DevelopersMust Coding Questions - Company-wise Must Do Coding Questions - Topic-wiseCompany-wise Practice ProblemsCompany PreparationCompetitive ProgrammingSoftware Design-PatternsCompany-wise Interview ExperienceExperienced - Interview ExperiencesInternship - Interview ExperiencesPractice @GeeksforgeeksProblem of the DayTopic-wise PracticeDifficulty Level - SchoolDifficulty Level - BasicDifficulty Level - EasyDifficulty Level - MediumDifficulty Level - HardLeaderboard !!Explore More...Data StructuresArraysLinked ListStackQueueBinary TreeBinary Search TreeHeapHashingGraphAdvance Data StructuresMatrixStringAll Data StructuresAlgorithmsAnalysis of AlgorithmsSearching AlgorithmsSorting AlgorithmsPattern SearchingGeometric AlgorithmsMathematical AlgorithmsRandomized AlgorithmsGreedy AlgorithmsDynamic ProgrammingDivide & ConquerBacktrackingBranch & BoundAll AlgorithmsProgramming LanguagesCC++JavaPythonC#Go LangSQLPHPScalaPerlKotlinWeb TechnologiesHTMLCSSJavaScriptBootstrapTailwind CSSAngularJSReactJSjQueryNodeJSPHPWeb DesignWeb BrowserFile FormatsComputer Science SubjectsOperating SystemsDBMSComputer NetworkComputer Organization & ArchitectureTOCCompiler DesignDigital Elec. & Logic DesignSoftware EngineeringEngineering MathematicsData Science & MLComplete Data Science CourseData Science TutorialMachine Learning TutorialDeep Learning TutorialNLP TutorialMachine Learning ProjectsData Analysis TutorialTutorial LibraryPython TutorialDjango TutorialPandas TutorialKivy TutorialTkinter TutorialOpenCV TutorialSelenium TutorialGATE CSGATE CS NotesGate CornerPrevious Year GATE PapersLast Minute Notes (LMNs)Important Topic For GATE CSGATE CoursePrevious Year Paper: CS exams Like