如何使用 if/else 更改数组中的值?
代码:
public function getActions()
{
return array(
'dislike' => array(
'enabled' => true,
'action_type_id' => 2,
'phrase' => Phpfox::getPhrase('like.dislike'),
'phrase_in_past_tense' => 'disliked',
'item_phrase' => 'comment',
'item_type_id' => 'feed',
'table' => 'feed_comment',
'column_update' => 'total_dislike',
'column_find' => 'feed_comment_id',
'where_to_show' => array('', 'photo')
)
);
}
如何使用 if/else 插入更改代码?
if (Phpfox::isMobile())
{
'phrase' => Phpfox::getPhrase('mobiletemplate.unlike_icon'),
}
else
{
'phrase' => Phpfox::getPhrase('like.dislike'),
}
谢谢你帮助我!