유돌이

calendar

1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31

Notice

2019. 11. 6. 18:57 PHP/Java Script/html

 //문자열 역순으로 출력하기
  function reverse_word(temp) {
   var text = '';

   for (i = 0; i <= temp.length; i++) {
    text = temp.substring(i, i+1) + text;
   }
   return text;
  }

'PHP/Java Script/html' 카테고리의 다른 글

소스복사 / 마우스 우클릭 방지 모음  (0) 2019.11.14
[php] php date 함수 사용법  (0) 2019.11.06
[PHP] extract() 란?  (0) 2019.11.06
strtotime 함수(php)  (0) 2009.05.19
php 함수(explode, trim, substr)  (0) 2009.05.19
posted by 유돌이