如果数组大小大于 1

发布于 2024-11-28 07:28:53 字数 819 浏览 1 评论 0原文

我有一个链接集的末尾,但我只想使用一部分,除非数组的大小大于 1。

$closeLink='</a>'.'<a target=&quot;_blank&quot; href="'.implode('" rel="lightbox['.
$post->ID.']" class="single_image" title="'.$lightHtml.'<br />&lt;a href=&quot;'.
$desclinkurl.'&quot;&gt;'.$desclink.'&lt;/a&gt;"></a><a href="',$custgalarr).'"
rel="lightbox['.$post->ID.']" class="single_image" title="'.$lightHtml.'<br />&lt;a 
target=&quot;_blank&quot; href=&quot;'.$desclinkurl.'&quot;&gt;'.$desclink.'&lt;/
a&gt;"></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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

忆伤 2024-12-05 07:28:54
<?php

function wordlength($txt, $limit)
{
   $words = explode(' ', $txt);
   foreach($words as $v)
   {
       if(strlen($v) > $limit)
       {
            return true;
       }
   }
   return false;
}

$txt = "1";

if(!wordlength($txt, 1))
{
    die("String is less than or equal to one.");
}

?>
<?php

function wordlength($txt, $limit)
{
   $words = explode(' ', $txt);
   foreach($words as $v)
   {
       if(strlen($v) > $limit)
       {
            return true;
       }
   }
   return false;
}

$txt = "1";

if(!wordlength($txt, 1))
{
    die("String is less than or equal to one.");
}

?>
月依秋水 2024-12-05 07:28:53

在 PHP 中是

if (count($custgalarr) > 1)

In PHP it's

if (count($custgalarr) > 1)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文