|
|
|
วนลูปแล้วเก็บค่าทีได้ทุกค่าไว้ในค่าเดียว หลังจากจบลูป |
|
|
|
|
|
|
|
ถ้าเป็น Code C# จะทำดังนี้
String _output = "";
String[] emp = new String(){1, 2, 3, 4, 5};
for(Int32 Index = 0;Index < emp.Length;Index++)
_output += (Index > 0 ? "," : "") + emp[Index];
ถ้าเป็น PHP จะทำดังนี้
$emp[0] = 1;
$emp[1] = 2;
$emp[2] = 3;
$emp[3] = 4;
$emp[4] = 5;
$_output = "";
for($i=0;$i<count($emp);$i++)
$_output += (Index > 0 ? "," : "") + emp[Index];
|
|
|
|
|
Date :
2012-11-15 15:00:07 |
By :
ผู้ที่ต้องการแบ่งปันความรู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ต้องประทานโทษนะครับ พอดีเขียน Syntax ของ PHP ผิดไป
ถ้าเป็น PHP จะทำดังนี้
$emp[0] = 1;
$emp[1] = 2;
$emp[2] = 3;
$emp[3] = 4;
$emp[4] = 5;
$_output = "";
for($i=0;$i<count($emp);$i++)
$_output .= ($i > 0 ? "," : "").$emp[$i];
|
|
|
|
|
Date :
2012-11-15 15:02:16 |
By :
ผู้ที่ต้องการแบ่งปันความรู้ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|