Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从下面的代码中制作 $v->Url 部分:
<a href="Url">Link text</a>
所以如果网址很长,我的手机不会“爆炸”?
foreach($array as $k=>$v){ print " <tr> <td>" . $v->Status . "</td> <td>" . $v->Url . "</td> </tr>"; }
我假设链接文本存储在成员 var 中$v。试试这个:
$v
foreach($array as $k=>$v){ print " <tr> <td>{$v->Status}</td> <td><a href=\"{$v->Url}\">{$v->Text}</a></td> </tr>"; }
当然,$v->Text如果成员在您的应用程序中具有不同的名称,您将不得不重命名。
$v->Text