forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChecks.php
More file actions
106 lines (87 loc) · 2.48 KB
/
Copy pathChecks.php
File metadata and controls
106 lines (87 loc) · 2.48 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php namespace App\Controllers;
use CodeIgniter\API\ResponseTrait;
use CodeIgniter\Controller;
use Config\Database;
class Checks extends Controller
{
use ResponseTrait;
public function index()
{
session()->start();
}
public function escape()
{
$db = Database::connect();
$db->initialize();
$jobs = $db->table('job')
->whereNotIn('name', ['Politician', 'Accountant'])
->get()
->getResult();
die(var_dump($jobs));
}
public function password()
{
$db = Database::connect();
$db->initialize();
$result = $db->table('misc')
->insert([
'key' => 'password',
'value' => '$2y$10$ErQlCj/Mo10il.FthAm0WOjYdf3chZEGPFqaPzjqOX2aj2uYf5Ihq'
]);
die(var_dump($result));
}
public function forms()
{
helper('form');
var_dump(form_open());
}
public function api()
{
$data = array(
"total_users" => 3,
"users" => array(
array(
"id" => 1,
"name" => "Nitya",
"address" => array(
"country" => "India",
"city" => "Kolkata",
"zip" => 700102,
)
),
array(
"id" => 2,
"name" => "John",
"address" => array(
"country" => "USA",
"city" => "Newyork",
"zip" => "NY1234",
)
),
array(
"id" => 3,
"name" => "Viktor",
"address" => array(
"country" => "Australia",
"city" => "Sydney",
"zip" => 123456,
)
),
)
);
return $this->respond($data);
}
public function db()
{
$db = Database::connect();
$db->initialize();
$query = $db->prepare(function($db){
return $db->table('user')->insert([
'name' => 'a',
'email' => 'b@example.com',
'country' => 'x'
]);
});
$query->execute('foo', 'foo@example.com', 'US');
}
}