문자 포함 여부 체크 strpos, 문자 치환 replace $str = 'abcde'; if(strpos($str, 'cd') !== false) { echo 'YES!'; } $value = "가나다라마바사"; echo str_replace("사", "가", $value); [ Web 관련 ]/php 2018. 8. 10. 11:46
PHP 파일 존재 여부 체크 (file_exists) $skin_path = $_SERVER['DOCUMENT_ROOT']."/sample.php"; if (file_exists($skin_path)) { include_once ($skin_path); } else { echo "Bad Request"; } [ Web 관련 ]/php 2018. 8. 10. 11:38
자바스크립트 숫자형->문자형, 문자형->숫자형 바꾸기 // 숫자를 문자형으로 바꾸기var tt = 2alert(typeof tt); // Result : numbertt = String(tt);alert(typeof tt); // Result : string // 문자형을 숫자로 바꾸기tt = "2"alert(typeof tt); // Result : stringtt = Number(tt);alert(typeof tt); // Result : number [ Web 관련 ]/자바스크립트 2018. 7. 13. 15:26
1000 단위로 입력 받기 if (value % 1000) != 0){alert('1,000 단위로 입력 가능합니다.');return false;} [ Web 관련 ]/자바스크립트 2018. 7. 13. 14:48