Compare commits

...

2 Commits

Author SHA1 Message Date
HemanthKumar M
3975bcd74d Merge 59b6486809 into 2aee46f169 2024-05-23 02:37:55 -03:00
HemanthKumar M
59b6486809 Updated php.php line 20 str_replace to ver PHP 8.0 2022-09-03 18:00:45 +05:30

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
str_replace('Awesome', 'Bonjour', $string, $count); // 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