පොදු:
ඔබ ක්රමයක් (ශ්රිතයක්) හෝ දේපලක් (විචල්යයක්) ලෙස ප්රකාශ කරන විට public
, එම ක්රම සහ ගුණාංග වලට ප්රවේශ විය හැක්කේ:
- එය ප්රකාශ කළ එම පන්තියම.
- ඉහත ප්රකාශිත පන්තියට උරුම වන පන්ති.
- මෙම පන්තියෙන් පිටත ඕනෑම විදේශීය අංගයකට ද ඒවාට ප්රවේශ විය හැකිය.
උදාහරණයක්:
<?php
class GrandPa
{
public $name='Mark Henry'; // A public variable
}
class Daddy extends GrandPa // Inherited class
{
function displayGrandPaName()
{
return $this->name; // The public variable will be available to the inherited class
}
}
// Inherited class Daddy wants to know Grandpas Name
$daddy = new Daddy;
echo $daddy->displayGrandPaName(); // Prints 'Mark Henry'
// Public variables can also be accessed outside of the class!
$outsiderWantstoKnowGrandpasName = new GrandPa;
echo $outsiderWantstoKnowGrandpasName->name; // Prints 'Mark Henry'
ආරක්ෂිත:
ඔබ ක්රමයක් (ශ්රිතයක්) හෝ දේපලක් (විචල්යයක්) ලෙස ප්රකාශ කරන විට protected
, එම ක්රම සහ ගුණාංග වලට ප්රවේශ විය හැකිය
- එය ප්රකාශ කළ එම පන්තියම.
- ඉහත ප්රකාශිත පන්තියට උරුම වන පන්ති.
පිටස්තර සාමාජිකයින්ට එම විචල්යයන්ට ප්රවේශ විය නොහැක. “පිටස්තරයින්” යන අර්ථයෙන් ඔවුන් ප්රකාශිත පංතියේම වස්තු අවස්ථා නොවේ .
උදාහරණයක්:
<?php
class GrandPa
{
protected $name = 'Mark Henry';
}
class Daddy extends GrandPa
{
function displayGrandPaName()
{
return $this->name;
}
}
$daddy = new Daddy;
echo $daddy->displayGrandPaName(); // Prints 'Mark Henry'
$outsiderWantstoKnowGrandpasName = new GrandPa;
echo $outsiderWantstoKnowGrandpasName->name; // Results in a Fatal Error
නිවැරදි දෝෂය මෙය වනු ඇත:
PHP මාරක දෝෂය: ආරක්ෂිත දේපල වෙත ප්රවේශ විය නොහැක GrandPa :: $ name
පුද්ගලික:
ඔබ ක්රමයක් (ශ්රිතයක්) හෝ දේපලක් (විචල්යයක්) ලෙස ප්රකාශ කරන විට private
, එම ක්රම සහ ගුණාංග වලට ප්රවේශ විය හැක්කේ:
- එය ප්රකාශ කළ එම පන්තියම.
පිටස්තර සාමාජිකයින්ට එම විචල්යයන්ට ප්රවේශ විය නොහැක. පිටස්තරයින් යන අර්ථයෙන් ඔවුන් ප්රකාශිත පංතියේම සහ ප්රකාශිත පන්තියට උරුම වූ පංතිවල පවා වෛෂයික අවස්ථා නොවේ .
උදාහරණයක්:
<?php
class GrandPa
{
private $name = 'Mark Henry';
}
class Daddy extends GrandPa
{
function displayGrandPaName()
{
return $this->name;
}
}
$daddy = new Daddy;
echo $daddy->displayGrandPaName(); // Results in a Notice
$outsiderWantstoKnowGrandpasName = new GrandPa;
echo $outsiderWantstoKnowGrandpasName->name; // Results in a Fatal Error
නිවැරදි දෝෂ පණිවිඩ වනුයේ:
දැනුම්දීම: නිර්වචනය නොකළ දේපල: තාත්තා :: $ නම
මාරක දෝෂය: පුද්ගලික දේපල වෙත ප්රවේශ විය නොහැක GrandPa :: $ name
පරාවර්තනය භාවිතා කරමින් සීයා පන්තිය විසුරුවා හැරීම
මෙම විෂය සැබවින්ම විෂය පථයෙන් බැහැර නොවන අතර පරාවර්තනය සැබවින්ම බලවත් බව ඔප්පු කිරීම සඳහා මම එය මෙහි එක් කරමි. ඉහත උදාහරණ තුනෙහි මා සඳහන් කළ පරිදි, protected
සහprivate
සාමාජිකයන් (ගුණ හා ක්රම) පන්ති පිටත ප්රවේශ විය නොහැක.
කෙසේ වෙතත්, පිළිබිඹු සමග ඔබ කරන්න පුළුවන් අමතර-සාමාන්ය පවා පිවිසීමේදී විසින් protected
හාprivate
පංතියෙන් පිටත සාමාජිකයින්ට !
හොඳයි, පරාවර්තනය යනු කුමක්ද?
පරාවර්තනය මඟින් ප්රතිලෝම-ඉංජිනේරු පන්ති, අතුරුමුහුණත්, කාර්යයන්, ක්රම සහ දිගු කිරීමේ හැකියාව එක් කරයි. මීට අමතරව, ඔවුන් කාර්යයන්, පන්ති සහ ක්රම සඳහා doc අදහස් ලබා ගැනීමට ක්රම ඉදිරිපත් කරයි.
පෙරවදන
අපට පංතියක් නම් කර ඇති Grandpas
අතර අපට ගුණාංග තුනක් ඇති බව පවසන්න. පහසුවෙන් තේරුම් ගැනීම සඳහා, නම් සහිත සීයා තිදෙනෙකු සිටින බව සලකන්න:
- මාර්ක් හෙන්රි
- ජෝන් ක්ලාෂ්
- විල් ජෝන්ස්
අපට ඔවුන් කරන්න (සකාට අකුරු) කරමු public
, protected
හා private
පිළිවෙළින්. ඔබ දන්නා ඉතා හොඳින් බව protected
හා private
සාමාජිකයන් පන්ති පිටත ප්රවේශ විය නොහැක. දැන් පරාවර්තනය භාවිතා කරමින් ප්රකාශය පරස්පර කරමු.
කේතය
<?php
class GrandPas // The Grandfather's class
{
public $name1 = 'Mark Henry'; // This grandpa is mapped to a public modifier
protected $name2 = 'John Clash'; // This grandpa is mapped to a protected modifier
private $name3 = 'Will Jones'; // This grandpa is mapped to a private modifier
}
# Scenario 1: without reflection
$granpaWithoutReflection = new GrandPas;
# Normal looping to print all the members of this class
echo "#Scenario 1: Without reflection<br>";
echo "Printing members the usual way.. (without reflection)<br>";
foreach($granpaWithoutReflection as $k=>$v)
{
echo "The name of grandpa is $v and he resides in the variable $k<br>";
}
echo "<br>";
#Scenario 2: Using reflection
$granpa = new ReflectionClass('GrandPas'); // Pass the Grandpas class as the input for the Reflection class
$granpaNames=$granpa->getDefaultProperties(); // Gets all the properties of the Grandpas class (Even though it is a protected or private)
echo "#Scenario 2: With reflection<br>";
echo "Printing members the 'reflect' way..<br>";
foreach($granpaNames as $k=>$v)
{
echo "The name of grandpa is $v and he resides in the variable $k<br>";
}
ප්රතිදානය:
#Scenario 1: Without reflection
Printing members the usual way.. (Without reflection)
The name of grandpa is Mark Henry and he resides in the variable name1
#Scenario 2: With reflection
Printing members the 'reflect' way..
The name of grandpa is Mark Henry and he resides in the variable name1
The name of grandpa is John Clash and he resides in the variable name2
The name of grandpa is Will Jones and he resides in the variable name3
පොදු වැරදි වැටහීම්:
කරුණාකර පහත උදාහරණය සමඟ පටලවා නොගන්න. ඔබට තවමත් දැකිය හැකි පරිදි, පරාවර්තනය භාවිතා නොකර පන්තියට පිටතින්private
සහ protected
සාමාජිකයින්ට ප්රවේශ විය නොහැක
<?php
class GrandPas // The Grandfather's class
{
public $name1 = 'Mark Henry'; // This grandpa is mapped to a public modifier
protected $name2 = 'John Clash'; // This grandpa is mapped to a protected modifier
private $name3 = 'Will Jones'; // This grandpa is mapped to a private modifier
}
$granpaWithoutReflections = new GrandPas;
print_r($granpaWithoutReflections);
ප්රතිදානය:
GrandPas Object
(
[name1] => Mark Henry
[name2:protected] => John Clash
[name3:GrandPas:private] => Will Jones
)
නිදොස් කිරීමේ කාර්යයන්
print_r
, var_export
සහ var_dump
ය ඩිබගර් කාර්යයන් . ඔවුන් විචල්යයක් පිළිබඳ තොරතුරු මිනිස් කියවිය හැකි ආකාරයෙන් ඉදිරිපත් කරයි. මෙම කාර්යයන් තුනෙන් PHP 5 සමඟ ඇති වස්තූන්ගේ protected
හා private
ගුණාංග අනාවරණය වේ . ස්ථිතික පන්තියේ සාමාජිකයන් පෙන්වන්නේ නැත .
තවත් සම්පත්: