Answers for "php check if a string starts with"

PHP
4

php string starts with

//php check if first four characters of a string = http
substr( $http, 0, 4 ) === "http";
//php check if first five characters of a string = https
substr( $https, 0, 5 ) === "https";
Posted by: Guest on September-01-2020
0

Check if a String Starts With a Specified String in PHP

phpCopy<?php
  $string = "Mr. Peter";
  if(strncmp($string, "Mr.", 3) === 0){
      echo "The string starts with the desired substring.";
  }else 
      echo "The string does not start with the desired substring.";
?>
Posted by: Guest on April-23-2021

Code answers related to "php check if a string starts with"

Browse Popular Code Answers by Language