전체 글
-
PDO->setAttribute서버/PHP 2020. 12. 11. 00:56
www.w3big.com/ko/php/pdo-setattribute.html PDO ::의 setAttribute PDO ::의 setAttribute PHP PDO 참조 설명서 PDO ::의 setAttribute - 세트 특성 (PHP 5> = 5.1.0, PECL의 PDO> = 0.1.0) 설명 문법 bool PDO::setAttribute ( int $attribute , mixed $value ) 데이터베이스 핸들 속성을 설정. 아래에 나 www.w3big.com www.php.net/manual/en/pdostatement.fetch.php PHP: PDOStatement::fetch - Manual ... www.php.net
-
-
PDO::서버/PHP 2020. 11. 6. 22:42
출처:youtu.be/rcNYXc-hG_I youtu.be/T41SMNgyRrc php를 통해 DB Mysql 로 접근하기위해서는 Mysqli 또는 PDO 로 접근해야한다. PDO 기본 연결 private $host="dbaddress"; private $user="username"; private $pwd="password"; private $dbName="dbname" protected function connect(){ $dsn = 'mysql:host=' . $this->host. ';dbname='.$this->dbName; $pdo = new PDO($dsn,$this->user,$this->pwd); $pdo->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE,PDO..
-
Type Declaration서버/PHP 2020. 11. 5. 08:35
출처:youtu.be/0MYqGSplVQs 유저들이 메서드에 해당하는(적절한) 데이터를 전송하는지 확실하게 해준다. 사용하는 타입형 Methods By using type declaration, we can throw an error if wrong type is given! Works with: -class/interface names -self(used to reference to same class) -array -callable -bool -float -int -string -iterable -object public function setName(string $newName){ $this->name=$newName; } c#등등에서는 당연히 쓰는 것 (string $newName) 타입에 맞지 ..