remove string after certain character php code example

Example 1: php remove text from string

<?php
  //Replace the characters "world" in the string "Hello world!" with "Peter":
echo str_replace("world","Peter","Hello world!");
?>

Example 2: php remove everything after character

$fullpath = 'folderName/file.ext';
$folder = substr($fullpath, 0, strpos($fullpath, '/'));
echo $folder;
// Output => folderName

Example 3: php remove after character

$s = 'Posted On April 6th By Some Dude';
echo strstr($s, 'By', true); // Posted On April 6th

Example 4: trim specific character from strin using php

$widget_id = trim($widget_text,'[]')

Tags:

Php Example