Answers for "how to check if string starts with php"

PHP
2

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
0

Check if string starts with php

substr( $string_n, 0, 4 ) === "http"
Posted by: Guest on May-03-2021

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

Browse Popular Code Answers by Language