mysql 포트변경
본문
mysql 기본 3306포트말고 다른포트로 변경할려고하는데
host를 localhost로 사용하면 포트변경시 localhost:포트번호 이렇게라던지
mysqli_connect($host, $user, $pass, $db, '포트번호') 이런식으로 안써도 되나요?
호스팅받는 업체에서는 localhost라 상관없다고하거든요
답변 1
https://www.php.net/manual/en/mysqli.construct.php
바뀐 port 번호가
ini_get("mysqli.default_port")
에 지정 되어 있다면 굳이 connect()할 때 파라미터를 지정해 주지 않아도 됩니다.
답변을 작성하시기 전에 로그인 해주세요.