|
|
|
ด่วนค่ะ ช่วยหน่อยนะค่ะ เกี่ยวกับ array ค่ะ ตัวแปรที่เก็บค่าเอามาใช้งานไม่ได้ค่ะ ตัวแปร $s ที่เก็บค่าจาก ลูปสองลูปแรกค่า |
|
|
|
|
|
|
|
change strlen to count
|
|
|
|
|
Date :
2010-02-08 15:43:45 |
By :
เซ็งตัวเอง |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for($g=0;$g<count($s);$g++){
ได้แค่ค่า 77777 ค่ะ
|
|
|
|
|
Date :
2010-02-08 15:49:54 |
By :
unicorn070 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$j=array("2","3","4","6","7");
$w=array("a","b","c","d","e","f");
$s=array();
for($t=0;$t<count($w);$t++){
for($i=0;$i<count($j);$i++){
$s[]=$j[$i];
}
}
for($g=0;$g<count($s);$g++){
echo $s[$g];
}
?>
http://imwriter.keedkean.com/show.php?id=4
|
|
|
|
|
Date :
2010-02-08 21:14:29 |
By :
xbeginner01 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|