私がしなければならないこと:
$ sourceElement ['description'] = htmlspecialchars_decode($ sourceElement ['description']);
変数名の冗長な言及は避けたいと思います。私は試した:
htmlspecialchars_decode(&$ sourceElement ['description']);
と
call_user_func('htmlspecialchars_decode'、&$ sourceElement ['description']);
それはうまくいきませんでした。これはPHPで可能ですか?変数で関数を呼び出しますか?