PHP str_ends_with()


str_ends_with() function check करता है कि क्या कोई String pass की गयी substring value से end हो रही है। match होने पर true return होता है otherwise false .

str_ends_with() function PHP version 8 में add किया गया था , इसलिए हो सकता है कि PHP के older version में error दे।

PHP str_ends_with Syntax

str_ends_with(string $haystack , $needle);
Parameters
  1. string $haystack | required : string value जो हमें $needle string में check करनी है।

  2. string $needle | required : string value जिसमे हमें $haystack string check करनी है।

  3. Return Value : Boolean value true / false return होता है।

PHP str_ends_with Example

File : php_str_ends_with.php

Copy Fullscreen Close Fullscreen
<?php 
	$str = "learnhindituts.com";
	if (str_ends_with($str, "com")) echo "$str ends with com. br>";
	if (str_ends_with($str, "Com")) echo "$str ends with Com.";
	/*now try with empty string*/
	if (str_ends_with("", $str)) echo "$str ends with empty string";
	if (str_ends_with("", "")) echo "empty string ends with empty string";
?>
Output
learnhindituts.com ends with com.
empty string ends with empty string

Hey ! I'm Rahul founder of learnhindituts.com. Working in IT industry more than 4.5 years. I love to talk about programming as well as writing technical tutorials and blogs that can help to others .... keep learning :)

Get connected with me - LinkedIn Twitter Instagram Facebook