- 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 hash_init() trong PHP - PHP Function
Code $ctx = hash_init('md5'); hash_update($ctx, 'This a test string'); echo hash_final($ctx);
Hàm hash_update() trong PHP - PHP Function
Code $ctx = hash_init("md5"); echo hash_update($ctx, "this is a test") . "<br />"; echo hash_final($ctx) . "<br />"; echo md5("this is a test");
Hàm hash_final() trong PHP - PHP Function
Code $ctx = hash_init("md5"); hash_update($ctx, "this is a test") . "<br />"; echo hash_final($ctx) . "<br />";
Hàm hash_copy() trong PHP - PHP Function
Code $ctx = hash_init('md5'); hash_update($ctx, 'This is a test'); $copy = hash_copy($ctx); echo hash_final($ctx). "<br />"; echo hash_final($copy). "<br />";
Hàm hash_file() trong PHP - PHP Function
Code //tạo file mới file_put_contents("test.txt", "this is a test file content"); echo hash_file("md5", "test.txt");
Hàm hash_equals() trong PHP - PHP Function
Code $expected = crypt('Zaidap.com.net', '$thisismysalt$'); $correct = crypt('Zaidap.com.net', '$thisismysalt$'); $incorrect = crypt('soccer', '$thisismysalt$'); var_dump(hash_equals($expected, $correct)); echo "<br />"; var_dump(hash_equals($expected, ...
Hàm array() trong PHP - PHP Function
$bien = array(); echo '<pre>'; print_r($bien);
Hàm array_chunk() trong PHP - PHP Function
$input_array = array('a', 'b', 'c', 'd', 'e'); echo '<pre>'; // Gom nhóm với mỗi nhóm là 2 phần tử print_r(array_chunk($input_array, 2));
Hàm array_change_key_case() trong PHP - PHP Function
$mang = array( 'name' => 'thehalfheart', 'email' => 'thehalfheart@gmail.com', 'website' => 'Zaidap.com.net' ); echo '<pre>'; print_r(array_change_key_case($mang, CASE_UPPER)); // Hoặc array_change_key_case($mang, 1)
Hàm in_array() trong PHP - PHP Function
$message = array("Hoc", "Lap", "Trinh", "Online", "Tai", "Zaidap.com.net"); if (in_array("Zaidap.com.net", $message)) { echo "Trong mảng có chứa Zaidap.com.net"; } // Hoặc if (in_array("Zaidap.com.net", $message, FALSE)) { echo "Trong mảng có chứa Zaidap.com.net"; }