Bir whileloop edinilen grup bilgilere çökmek Kullanma (sorun çözüldü)

3 Cevap php

Solved the problem thanks to all of your tips. Thanks a lot for all the answers. d(^_^d)


Ben şu sorunu yaşıyorum. Ben numaraları 1/2/3/4/5/6 var ve ben iki grup 1/3/5 ve 2/4/6 onları ayırmak istiyorum. Seçim pozisyonuna göre yer almalıdır. Bu kısmı Tamam çalışır. Ben implode işlevini kullandığınızda ben, yine grup onlara istediğiniz zaman sorun gelir; sadece saklandığı son numarayı görür. Ben (ben sınıflandırmak için sayıların miktarı beri bu yolu seçti her zaman değişir) Bu notasyonu kullanarak benimle ilgili bir şey var biliyorum:

$q++;
$row0 = $row0 + 2;
$row1 = $row1 + 2;

ama bunu düzeltmek için bir yol ya da aynı sonucu elde etmek için başka bir yol bilemiyorum. Umarım burada birisi bana doğru yönde işaret edebilir. Aşağıda tam kod bıraktı.


<?
$string = "1/2/3/4/5/6";
$splitted = explode("/",$string);
$cnt = count($splitted);
$q=0;
$row0=0;
$row1=1;
while($cnt > 2*$q)
{
  $p_row = implode(array($splitted[$row0]));
  echo "$p_row <br>";
  $i_row = implode(array($splitted[$row1]));
  echo "$i_row <br>";

  $q++;
  $row0 = $row0 + 2;
  $row1 = $row1 + 2;
}
$out = "implode(',', $i_row)";
var_dump($out);
?>


3 Cevap

Sen döngü indeksi üzerine % kullanarak gruba dizi ayırabilirsiniz. Ayrı bir dizi, her grubu koyun. Burada örnek:

<?php
    $string = "1/2/3/4/5/6";
    $splitted = explode("/",$string);
    $group_odd = array();  ## all odd elements of $splitted come here
    $group_even = array(); ## all even elements of $splitted come here
    for ($index = 0; $index < count($splitted); ++$index) {
        ## if number is divided by 2 with rest then it's odd
        ## but we've started calculation from 0, so we need to add 1
        if (($index+1) % 2) { 
            $group_odd[] = $splitted[$index];
        }
        else {
            $group_even[] = $splitted[$index];
        }
    }
    echo implode('/', $group_odd), "<br />";  ## outputs "1/3/5<br />"
    echo implode('/', $group_even), "<br />"; ## outputs "2/4/6<br />"
    print_r($group_odd);
    print_r($group_even);
?>

Ben öyle görünüyor sorunu missread. Bunun yerine bu optimizasyon vermek.

$string = "1/2/3/4/5/6";
$splitted = explode("/", $string);
$group = array();
for ($index = 0, $t = count($splitted); $index < $t; ++$index) { 
    $group[$index & 1][] = $splitted[$index];
} 
$oddIndex = $group[0]; //start with index 1
$evenIndex = $group[1]; //start with index 2

echo "odd index:  " 
    . implode('/', $oddIndex) 
    . "\neven index: " 
    . implode('/', $evenIndex) 
    . "\n";

Konumlarına göre? Yani, dizide kendi endeksi düzgünlüğü / oddness dayalı bölünmüş?

Bu böyle bir şey?

<?php

$string = "1/2/3/4/5/6";

list( $evenKeys, $oddKeys ) = array_split_custom( explode( '/', $string ) );

echo '<pre>';
print_r( $evenKeys );
print_r( $oddKeys );

function array_split_custom( array $input )
{
  $evens = array();
  $odds = array();
  foreach ( $input as $index => $value )
  {
    if ( $index & 1 )
    {
      $odds[] = $value;
    } else {
      $evens[] = $value;
    }
  }
  return array( $evens, $odds );
}