Compare commits

...

6 Commits

Author SHA1 Message Date
Edzer DIonido
c1733d4a87 Merge d70d20ec5a into 10872e02d1 2024-06-17 02:20:43 +05:30
Julien Le Coupanec
10872e02d1 Merge pull request #385 from WPRobson/master
add docker init command to docker cheatsheet
2024-06-07 23:35:19 +02:00
Julien Le Coupanec
365b4f72b7 Merge pull request #390 from MagedMohamedTurk/patch-1
Update C.txt
2024-06-07 23:34:57 +02:00
Maged Turkoman
0f74ebe37b Update C.txt 2024-06-01 09:07:47 +03:00
Will Robson
bf4c0379f2 add docker init command to docker cheatsheet 2024-05-12 20:01:26 +01:00
Edzer Dionido
d70d20ec5a added array functions and add description on for and foreach loop. made the switch under conditions 2024-01-23 19:53:49 +08:00
3 changed files with 42 additions and 19 deletions

View File

@@ -149,6 +149,7 @@ Operators
^= bitwise exclusive or and store ^= bitwise exclusive or and store
|= bitwise or and store |= bitwise or and store
, separator as in ( y=x,z=++x ) , separator as in ( y=x,z=++x )
; statement terminator.
Operator precedence Operator precedence

View File

@@ -65,6 +65,25 @@ ksort($arr); // Sort associative arrays in ascending order, according to the key
arsort($arr); // Sort associative arrays in descending order, according to the value. arsort($arr); // Sort associative arrays in descending order, according to the value.
krsort($arr); // Sort associative arrays in descending order, according to the key. krsort($arr); // Sort associative arrays in descending order, according to the key.
/** /
* Array Functions
*
* This are functions that you can use to manipulate the arrays
*/
count($arr); // This will count the length of the array values
array_push($arr, ['Jane', 200, 500]); // Accepts two parameters. And this adds new value to the end of the array
array_pop($arr); // This removes the value at the end of the array
array_shift($arr); // This removes the first index of the array
array_unshift($arr, ['PHP', 1999, 2024]); // Accepts two parameters. This adds new value in the first index of the array
array_slice($arr, 0, 1); // Accepts two or three parameters. This removes the selected index from the array.
$arr2 = [["Lebron James", 2003, 2024], ["Michael Jordan", 1989, 2001]];
array_splice($arr, 0, 2, $arr2); // Accepts three or four parameters. This removes specified index from the array and replaces new value.
array_reverse($arr); // This reverses the value of the array.
/** /**
* Conditions * Conditions
*/ */
@@ -78,6 +97,17 @@ if($i > 10) {
} }
// Switch Conditions
switch($arr) {
case 1:
break;
case 2:
break;
case 3:
break;
default:
}
// Ternary // Ternary
$string = $state == 'Running' ? 'He is running' : 'I don\'t know'; $string = $state == 'Running' ? 'He is running' : 'I don\'t know';
@@ -86,23 +116,19 @@ $string = $startDate ?? '';
/** /**
* Ways of looping * Ways of looping
* NOTE: Look out for and avoid having an infinite loop!
*/ */
continue; // Skip current iter continue; // Skip current iter
break; // Exit loop break; // Exit loop
// Foreach // For loop
foreach($arr as $key => $value) { // gets the initial value, validates if initial value is less than the count; if true add one.
$key = $key;
$value = $value;
}
// For
for($i = 0; $i < count($arr); $i++) { for($i = 0; $i < count($arr); $i++) {
$key = $i; $key = $i;
$value = $arr[$i]; $value = $arr[$i];
} }
// While // While loop
$i = 0; $i = 0;
while($i < count($arr) - 1) { while($i < count($arr) - 1) {
$key = $i; $key = $i;
@@ -116,15 +142,11 @@ do {
$value = $arr[$i]; $value = $arr[$i];
} while($i < count($arr)); } while($i < count($arr));
// Switch // Foreach
switch($arr) { // Iterates through the array. It could get only the value or the key and value of the array
case 1: foreach($arr as $key => $value) {
break; $key = $key;
case 2: $value = $value;
break;
case 3:
break;
default:
} }
/** /**

View File

@@ -2,7 +2,7 @@
# DOCKER # DOCKER
############################################################################## ##############################################################################
docker init # Creates Docker-related starter files
docker build -t friendlyname . # Create image using this directory's Dockerfile docker build -t friendlyname . # Create image using this directory's Dockerfile
docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80 docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode