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 |