remove string after certain character php code example
Example 1: php remove text from string
<?php
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;
Example 3: php remove after character
$s = 'Posted On April 6th By Some Dude';
echo strstr($s, 'By', true);
Example 4: trim specific character from strin using php
$widget_id = trim($widget_text,'[]')