"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Remove Everything After a Specific Substring in PHP?

How to Remove Everything After a Specific Substring in PHP?

Published on 2024-11-16
Browse:350

How to Remove Everything After a Specific Substring in PHP?

How to Remove a Portion of a String After a Specific Substring in PHP

You can remove everything after a certain substring in PHP using the substr() function. The substr() function accepts three parameters:

  • The input string
  • The starting position
  • The length

To remove everything after a certain substring, you can use the strpos() function to find the position of the substring in the input string. Then you can use the substr() function to extract the portion of the string before the substring.

For example, the following code removes all the text including and after the substring "By" from the string "Posted On April 6th By Some Dude":

$string = "Posted On April 6th By Some Dude";
$substring = "By";

$position = strpos($string, $substring);

if ($position !== false) {
  $string = substr($string, 0, $position);
}

After executing the above code, the value of the $string variable will be "Posted On April 6th".

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3