- 1 Cài đặt phần mềm cần thiết cho học lập trình web
- 2 Tự Học HTML Cơ Bản Online Miễn Phí Từ A đến Z
- 3 Seo website dành cho dân IT
- 4 REACT NATIVE
- 5 sdfdsf
- 6 Lập trình di động với React Native
- 7 Vue.js
- 8 Kiếm thức cơ bản HTML CSS
- 9 So sánh count() và sizeof() 2 phần tử đếm mảng
- 10 Toán tử và biểu thức của php
Hàm isset() trong PHP - PHP Function
Kiểm tra một biến đơn giản: Code $var = null; if (isset($var)) { echo 'this var is set'; }else{ echo 'this var is not set'; } Kết quả this var is not set
Hàm print_r() trong PHP - PHP Function
Code $var = array( "php", 2408, "css", "Zaidap.com.net" ); echo "<pre>"; print_r($var); echo "</pre>";
Hàm serialize() trong PHP - PHP Function
Code $var = array( "php", 2408, "css", "Zaidap.com.net" ); $varSerialize = serialize($var); echo "<pre>"; print_r($varSerialize); echo "</pre>";
Hàm unserialize() trong PHP - PHP Function
Code $var = array( "php", 2408, "css", "Zaidap.com.net" ); $strSerialize = serialize($var); echo "<pre>"; print_r($strSerialize); echo "</pre>"; $varSource = unserialize($strSerialize); echo "<pre>"; print_r($varSource ); echo "</pre>";
Hàm settype() trong PHP - PHP Function
Code $var1 = "5Zaidap.com"; $var2 = TRUE; settype($var1, "integer"); echo $var1 . "<br />"; settype($var2, "integer"); echo $var2 . "<br />";
Hàm strval() trong PHP - PHP Function
Code class StrValTest { public function __toString() { return __CLASS__; } } echo strval(new StrValTest) . "<br />"; $var = "24.0895"; echo strval( $var) . "<br />"; $var = 'Zaidap.com.net'; echo strval( $var) . "<br />";
Hàm unset() trong PHP - PHP Function
function foo() { unset($GLOBALS['bar']); } $bar = "something"; foo();
Hàm var_dump() trong PHP - PHP Function
Code $a = [ "php", "css", "html" ]; $b = "Zaidap.com.net"; $c = 4.58; echo "<pre>"; var_dump($a, $b, $c); echo "<pre>";
Hàm var_export() trong PHP - PHP Function
Code $a = [ "php", "css", "html" ]; $b = "Zaidap.com.net"; $c = 4.58; var_export($a); echo "<br />"; var_export($b); echo "<br />"; var_export($c); echo "<br />";
Hàm bin2hex() trong PHP - PHP Function
$supertroll = bin2hex("Zaidap.com.net"); echo $supertroll;