2014-10-08 9 views
0

나는 PHP로 몇 가지 아이디어를 얻고 싶다.
다음 값을 사용하여 내 경우에는 612B 16 진수를 반환합니다. 61 & 2B를 뒤집어 2B61로 만들어야합니다.PHP 결과 나누기

$skillsearch1 = odbc_exec($conn1,"select cast(cast(reverse(substring(strevent, 1, 1))as varbinary)as int) from USER_EVENT where strUserID='loneranger'"); 
$skillfound1 = odbc_result($skillsearch1,1); 

감사합니다.

편집 1 :

str_split($test, 2))); 

난 그냥했다

str_split($test, 1))); 

로 변경 그리고 내가 원하는 정확히 무엇을 얻었다. 도움 주셔서 감사합니다.

+0

문자열 인 경우 '$ skillfound1 = substr ($ skillfound1, 2). $ 2 $ 1 ', $ skillfound1);'$ ($ w $ {2}) /', $ 2 $ 1 ' – Cheery

답변

1
$test = '1234'; 

$result = implode(     // 3. join array to string 
      array_reverse(   // 2. reverse order of this array 
       str_split($test, 2))); // 1. convert string to array with two chars values 

var_dump($result);