PHP Variable Function→
पीएचपी variable function को Support करता है। इसका मतलब यह है कि यदि किसी Variable नाम के साथ कोष्ठक {} जुड़े हुए हैं, तो PHP उसी नाम से function को call करता है, जिसका वेरिएबल मूल्यांकन करता है, और इसे निष्पादित करने का प्रयास करेगा।
variable function का उपयोग (use) callbacks, function tables आदि के साथ किया जा सकता है।
PHP Function में Function के नाम में echo, print, unset(), isset(), empty(), include, require and the like. Utilize wrapper आदि को Use (काम) में नहीं ले सकते हैं।
PHP Variable Function में हम Argument भी पास कर सकते हैं।
variable function को लिखने का Syntax--
<?php
function FunctionName(){
// Statements
}
$VariableName = "FunctionName";
$VariableName();
?>
|
Example- PHP Variable Function
<?php
function codinger(){
echo "Function Variable in PHP";
}
$x = "codinger"; // जिस नाम से हमने हमने function बनाया है उसी नाम से Variable की 'String' Data Types Value को लिखेंगे।
$x();
?>
|
PHP Variable Function Output--
Example- PHP Variable Function with Parameters--
function funName($websiteName)
{
echo "PHP Variable Function with Parameters $websiteName";
}
$y = "funName";
$y("codinger.in");
PHP Variable Function with Parameters Output--
PHP Variable Function with Parameters codinger.in |