当前情景:
表“主题”可能包含行“类型”,其中包含以下缩写:
- 网络 - W,
- 电子邮件 - E,
- 电话-P
所以
if ( isset($topic['type'])) {
echo $topic['type'];
通常可以输出
W P
我的问题是如何输出全文而不是缩写,并有从全文到 url 的超链接,例如:
<a href='somesite.com/web'>Web</a> <a href='somesite.com/phone'>Phone</a>
到目前为止我所拥有的:
if ( isset($topic['type'])) {
$typeArr = explode(' ',$topic['type']);
$fulldesc = array(
'W' => $lang['textentryW'], // textentryW equals Web
'E' => $lang['textentryE'], // Email
'P' => $lang['textentryP'], // Phone
);
foreach ($fulldesc as $abc => $name) {
if(in_array($abc, $typeArr))
// mental blank !!!
}