Why should the variables defined in the parameter list be called using func_get_arg in the function? Wouldn't it be more convenient to call them directly?
Pitohui
Pitohui 2019-01-06 17:50:41
0
2
802

function demo3($str3)
{
   $str3 = func_get_arg(0);
   return $str3;
}

function demo3($str3)

{

   return $str3;
}

Pitohui
Pitohui

reply all(1)
秋香姐家的小书童

You need to use callbacks under special conditions. Don’t worry about this. Just know that there is such a callback method.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!