如果数组大小大于 1
我有一个链接集的末尾,但我只想使用一部分,除非数组的大小大于 1。
$closeLink='</a>'.'<a target="_blank" href="'.implode('" rel="lightbox['.
$post->ID.']" class="single_image" title="'.$lightHtml.'<br /><a href="'.
$desclinkurl.'">'.$desclink.'</a>"></a><a href="',$custgalarr).'"
rel="lightbox['.$post->ID.']" class="single_image" title="'.$lightHtml.'<br /><a
target="_blank" href="'.$desclinkurl.'">'.$desclink.'</
a>"></a>';
因此,下面单独显示的部分之后的所有内容都只需要显示数组 $custgalarr 的大小是否为大于 1:
$closeLink='</a>'
我想我需要在关闭标签后使用类似的东西
if (sizeof($custgalarr) > 1){
帮助我,提前感谢!
I have an end of a link set, but I only want a portion to be used UNLESS the size of an array is greater than 1.
$closeLink='</a>'.'<a target="_blank" href="'.implode('" rel="lightbox['.
$post->ID.']" class="single_image" title="'.$lightHtml.'<br /><a href="'.
$desclinkurl.'">'.$desclink.'</a>"></a><a href="',$custgalarr).'"
rel="lightbox['.$post->ID.']" class="single_image" title="'.$lightHtml.'<br /><a
target="_blank" href="'.$desclinkurl.'">'.$desclink.'</
a>"></a>';
So everything after the part shown isolated below needs to only show if the size of the array $custgalarr is greater than 1:
$closeLink='</a>'
I figure I need to use something like this after the closing a tag
if (sizeof($custgalarr) > 1){
Help me out, thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 PHP 中是
In PHP it's
在 PHP 中:
http://php.net/manual/en/function.count.php< /a>
in PHP:
http://php.net/manual/en/function.count.php