how to set Anchor on target="_blank"

i ahve this anchor in me.php in my bootstrap theme and i want this to put on a target="_blank" but do not know how to do that:
echo Wrap(Anchor(Sprite('SpUpload').' '.T('Upload'), '/mods-upload'), 'li');
0
i ahve this anchor in me.php in my bootstrap theme and i want this to put on a target="_blank" but do not know how to do that:
echo Wrap(Anchor(Sprite('SpUpload').' '.T('Upload'), '/mods-upload'), 'li');
Comments
echo Wrap(Anchor(T('LinkName'),'link',array('target' => '_blank')));
❌ ✊ ♥. ¸. ••. ¸♥¸. ••. ¸♥ ✊ ❌
Works great! Thnx @vrijvlinder