서버
-
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) 타입에 맞지 ..
-
[객체지향PHP]6.include서버/PHP 2020. 11. 5. 07:59
출처:youtu.be/z3pZdmJ64jo 다른 php 파일의 객체를 불러오려면 include 함수를 이용해야 한다. 하지만 php를 작성 할 때 마다 또는 수 많은 객체를 불러오기 위해 include 로 일일이 다 불러오는 것은 번거롭기 때문에 spl_autoload_register(); 을 사용한다 _autoload 라는 것이 과거에 있었다는데 문제가 있어 현재는 사용하지 않는다고 한다. 위 내용을 따로 php 로 만들고 index.php 에서 include 하면 클래스 폴더에 형식에 맞는 내용들은 자동으로 불러온다. if(!file_exists()){ //찾을 수 없을 때 return false; } 위 내용을 include_once 전에 추가하면 복잡하게 나타나는 에러내용들을 줄 일 수 있다.
-
[객체지향PHP]5.Static ::(Scope Resolution Operator)서버/PHP 2020. 11. 5. 04:52
출처:youtu.be/L9jLxuLAAIY Class Person{ private $name public staitc $drinking Age=21; } 불러올 때는 ::(Scope Resolution Operator) 클래스 내에서 메서드로 불러 올 때는 public static function setDrinkingAge($newDA) { self ::$drinkingAge; } self :: 부모 클래스에서 불러 올 때는 parent:: ::(Scope Resolution Operator) 는 const 변수에도 똑같이 사용된다.