1
1
mirror of https://github.com/namibia/awesome-cheatsheets.git synced 2024-06-03 05:00:47 +00:00

Merge pull request #292 from simonardejr/patch-1

removing php version
This commit is contained in:
Julien Le Coupanec 2022-07-06 11:12:11 +02:00 committed by GitHub
commit 335c178141
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ var_dump($arr); // Print anything, with type hints for any value and sizes
$string = 'Awesome cheatsheets';
str_contains($string, 'cheat'); // Find if the string contains the specified string (PHP >= 8.0)
str_replace('Awesome', 'Bonjour', $string); // Replace all occurence (PHP >= 8.0)
str_replace('Awesome', 'Bonjour', $string); // Replace all occurence
strcmp($string, 'Awesome cheatsheets'); // Compare two strings
strpos($string, 'a', 0); // Get position in the string
str_split($string, 2); // Split the string