-
Notifications
You must be signed in to change notification settings - Fork 0
/
2_operacje_na_zmiennych.php
106 lines (86 loc) · 2.21 KB
/
2_operacje_na_zmiennych.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
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
// operatory bitowe
// and &, or |, not ~, xor ^, przesunięcie bitowe <<, >>
$x = 0b1010;
$x = $x << 2; // 1010 -> 101000 => 40 (10)
$x = $x >> 1; // 10100 (2) -> 20 (10)
echo "$x<br>";
// porównananie === <=>
$x = 1;
$y = 1.0;
if ($x == $y) {
echo '$x jest równa $y<br>';
} else {
echo '$x nie jest równa $y<br>';
}
if ($x === $y) {
echo '$x jest identyczna $y<br>';
} else {
echo '$x nie jest identyczna $y<br>';
}
echo gettype($x); // integer
echo gettype($y) . '<hr>'; // double
$x = -10;
$y = 1;
echo $x<=>$y;
echo '<hr>';
$x=1;
$x=$x++;
echo $x; // 1
$x=++$x;
echo $x; // 2
$y=$x++;
echo $x; // 3
echo $y; // 2
$y=++$x*2-1;
echo $x; // 4
echo $y; // 7
echo '<hr>';
// operatory rzutowania
// bool, int, float, string, array, object, unset
$x = '123abc45'; //string
echo "$x<br>";
echo 'Typ danych $x: ' . gettype($x) . '<hr>';
$x = (int)$x; // integer
echo "$x<br>";
echo 'Typ danych $x: ' . gettype($x) . '<hr>';
$x = 0; //string
echo "$x<br>";
echo 'Typ danych $x: ' . gettype($x) . '<hr>';
$x = (bool)$x; // bool
echo "$x<br>"; // false
echo 'Typ danych $x: ' . gettype($x) . '<hr>';
$x = 10; //string
echo "$x<br>";
echo 'Typ danych $x: ' . gettype($x) . '<hr>';
$x = (float)$x; // float
echo "$x<br>"; // float
echo 'Typ danych $x: ' . gettype($x) . '<hr>';
$x = 10; //string
echo "$x<br>";
echo 'Typ danych $x: ' . gettype($x) . '<hr>';
$x = (unset)$x; // unset
echo "$x<br>"; //
echo 'Typ danych $x: ' . gettype($x) . '<hr>';
// rozmiar typu integer
echo PHP_INT_SIZE, '<hr>';
// kontrola typu zmiennych
// is_int(), is_float(), is_numeric(), is_bool(), is_null()
$x = 1;
echo is_numeric($x) . '<br>';
$w;
// operator ignorowania błędów
echo @gettype($w);
// stała predefiniowana
echo PHP_VERSION . '<br>';
$ver = PHP_VERSION;
if ($ver > 7.3) {
echo 'Nowa wersja PHP';
} else
echo 'Stara wersja PHP';
echo '<hr>';
// stałe
// nazwy z wielkich liter
define('NAME', 'Janusz');
echo NAME;
?>