这段代码有效,可能有更好的方法来实现,但我的问题是,
像这样通过有什么具体的术语吗?(与匿名函数一样),
这是一种可以接受的做法吗?,
是否违反标准?
<?php
// suppose the only way i can retrieve the content is by using this function
//like wordpress equivalent of the_content()
function mycontent()
{
$Original_content="oldcontent";
return $Original_content;
}
//instead of ---> echo $Original_content."facebook,twitter code";
//if i define a new function
function social_share($content)
{
$added_social=$content;
$added_social.=" + facebook,twitter code...";
echo $added_social;
}
//function call
social_share(mycontent());
?>
提前致谢 :)