generated from teknasyon-bootcamp/homework4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.class.php
44 lines (33 loc) · 1.5 KB
/
post.class.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
require "db.class.php";
class Post{
private object $database;
public function __construct(DB $database)
{
$this->database = $database;// DB nesnesi inject edildi.
}
public function postLists() : array{
return $this->database->getAll("posts");
}
public function postDetail(int $post_id): array{
return $this->database->get("posts", $post_id);
}
public function createPost(string $table_name, array $columns): void{
$this->database->create("posts", [$columns]);
}
public function updatePost(int $post_id, array $columns): void{
$this-> database->update("posts", $post_id, [$columns]);
}
public function deletePost(int $post_id): void{
$this-> database->delete("posts", $post_id);
}
}
//$post = new Post(new DB()); Yeni Post sınıfı oluşturur.
//$post->postLists(); Tüm postları çeker
//$post->postDetail(2); Parametre olarak verilen id deki postu çeker
//$post-> createPost("posts", ["author"=> "Salih Duran", "post_detail" => "Lorem IPsum Dolar sit Amet", "post_header" => "Created_Header"]);
//createPost "posts" tablosundaki parametre olarak verilen dizideki verileri veritabanına ekler
//$post->updatePost(3, ["post_header" => "Updated Headers"]);
//updatePost Parametre olarak verilen id deki parametre olarak
//verilen dizinin değeleriyle veritabandaki değerleri değiştirir.
//$post->deletePost(4); //Verilen id parametresi ile veritanında aynı olan id li kayıtı siler