ขอตัวอย่าง code php สลับ ตัวอักษรตัวแรกกับตัวหลังสุดหน่อยค่ะ
Code (PHP)
<?php
$input = 'abcde';
$length = strlen($input);
$output = $input[$length-1];
for($i=1 ;$i < ($length-1);$i++){
$output .= $input[$i];
}
$output .= $input[0];
echo $output;
?>
Date :
2013-12-25 16:55:27
By :
เอาแบบง่าย ๆ นะครับ
Code (PHP)
<?php
$input = 'abcde';
$length = strlen($input);
$temp = $input[$length-1];
$input[$length-1] = $input[0];
$input[0] = $temp;
echo $input;
?>
ส่งอีกแบบครับ
Date :
2013-12-25 16:59:54
By :
numton
Code (PHP)
$Input = 'ABCDE';
echo strrev($Input);
เพิ่มเติมครับ -->https://www.thaicreate.com/php/php-string-function.html
แต่ของผมนี่มันสลับกันหมดเลยนะ อ่านคำถามไม่ละเอียด 555+ ถ้าไม่ตรงก็ผ่านไปนะครับ
ประวัติการแก้ไข 2013-12-25 17:09:03 2013-12-25 17:18:24
Date :
2013-12-25 17:06:34
By :
arm8957
ขอบใจมากจ้าาา
Date :
2013-12-25 17:11:39
By :
paesalee
Code (PHP)
$s = 'ABCDE';
$s = substr($s,-1).substr($s,1,-1).$s[0];
echo $s;
ประวัติการแก้ไข 2013-12-25 20:03:16
Date :
2013-12-25 19:57:00
By :
num
Date :
2013-12-26 08:28:26
By :
mr.win
1. เก็บตัวอักขระแรกไว้นตัวแปร A
2. เก็บตัวอักขระสุดท้ายไว้นตัวแปร B
3. เก็บตัวอักขระที่ไม่ไช่ตัวแรกและตัวสุดท้าย ไว้ในตัวแปรC
4. นำตัวแปร A B C มาต่อกัน
5. ผลลัพท์
Date :
2013-12-26 11:44:22
By :
meannerss
Load balance : Server 02