Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.php > #13516

Re: solved

From Denis McMahon <denismfmcmahon@gmail.com>
Newsgroups comp.lang.php
Subject Re: solved
Date 2014-05-05 13:36 +0000
Organization A noiseless patient Spider
Message-ID <lk845o$l73$2@dont-email.me> (permalink)
References <1ma4780alja8r$.a7gtdehqwehf$.dlg@40tude.net> <16xq2nliyxm0r.1pydq2jo6js8c$.dlg@40tude.net> <5oo9jupriqe6$.zu9bt3msqine.dlg@40tude.net> <lk6sti$pff$1@dont-email.me> <57n6x3z90tu3.19j4qnzkwif2b.dlg@40tude.net>

Show all headers | View raw


On Sun, 04 May 2014 23:07:55 -0400, richard wrote:

> On Sun, 04 May 2014 22:27:01 -0400, Jerry Stuckle wrote:

>> If written correctly a conditional for !="." would get rid of the '.'
>> entry; !=".." would get rid of the ".." entry.
>> 
>> But you didn't show your entire code, so it's hard to say what could be
>> wrong.

> for ($x=0;$x<=$number;$x++){
>   if ($files[x] !=".") {

As Ben pointed out, missing $ from [$x] in $files[x], but that's just 
your usual broken code.

>    $master[$lo]=$files[$x];
> 	 $lo=$lo+1;
>      }
> }

for ( $x=0; $x <= $number; $x++ )
  if ( $files[$x] != "." && $files[$x] != ".." )
    $master[$lo++] = $files[$x];

The line:

$master[$lo++] = $files[$x];

does the following:

First it assigns the value of $files[$x] to $master[$lo]
Then it increments $lo by 1

And as Ben pointed out, it's possible that the following will work too:

for ( $x=0; $x <= $number; $x++ )
  if ( $files[$x] != "." && $files[$x] != ".." )
    $master[] = $files[$x];

As it just increments the numeric index of $master by 1 each time it 
assigns another element.

-- 
Denis McMahon, denismfmcmahon@gmail.com

Back to comp.lang.php | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

how to join two arrays? richard <noreply@example.com> - 2014-05-03 13:25 -0400
  Re: how to join two arrays? "J.O. Aho" <user@example.net> - 2014-05-03 22:07 +0200
  Re: how to join two arrays? Denis McMahon <denismfmcmahon@gmail.com> - 2014-05-03 22:23 +0000
    Re: how to join two arrays? Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2014-05-04 19:56 +0200
      Re: how to join two arrays? Jerry Stuckle <jstucklex@attglobal.net> - 2014-05-04 15:17 -0400
        Re: how to join two arrays? Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2014-05-04 21:47 +0200
          Re: how to join two arrays? Jerry Stuckle <jstucklex@attglobal.net> - 2014-05-04 16:48 -0400
            Re: how to join two arrays? Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2014-05-04 23:02 +0200
              Re: how to join two arrays? Jerry Stuckle <jstucklex@attglobal.net> - 2014-05-04 17:51 -0400
                Re: how to join two arrays? Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2014-05-05 00:55 +0200
                Re: how to join two arrays? Jerry Stuckle <jstucklex@attglobal.net> - 2014-05-04 21:31 -0400
                Re: how to join two arrays? Jerry Stuckle <jstucklex@attglobal.net> - 2014-05-04 22:13 -0400
                Re: how to join two arrays? Richard Yates <richard@yatesguitar.com> - 2014-05-05 12:45 -0700
  solved    (was: how to join two arrays?) richard <noreply@example.com> - 2014-05-04 19:54 -0400
    Re: solved richard <noreply@example.com> - 2014-05-04 22:00 -0400
      Re: solved Jerry Stuckle <jstucklex@attglobal.net> - 2014-05-04 22:27 -0400
        Re: solved richard <noreply@example.com> - 2014-05-04 23:07 -0400
          Re: solved Ben Bacarisse <ben.usenet@bsb.me.uk> - 2014-05-05 11:11 +0100
            Re: solved richard <noreply@example.com> - 2014-05-05 09:42 -0400
              Re: solved Christoph Michael Becker <cmbecker69@arcor.de> - 2014-05-05 15:51 +0200
              Re: solved Jerry Stuckle <jstucklex@attglobal.net> - 2014-05-05 10:26 -0400
                Re: solved richard <noreply@example.com> - 2014-05-05 10:34 -0400
              Re: solved Doug Miller <doug_at_milmac_dot_com@example.com> - 2014-05-06 00:55 +0000
          Re: solved Denis McMahon <denismfmcmahon@gmail.com> - 2014-05-05 13:36 +0000

csiph-web