<?php
$text = "http://mmssmsm.com/";
$text = str_replace("http://", "", $text);
$text = str_replace("https://", "", $text);
echo $text;
//този няма да работи при https
$text = "http://mmssmsm.com/";
$text = substr($text, 7);
echo $text;
$text = "https://mmssmsm.com/";
$text = preg_replace("/^https?:\/\//", "", $text);
echo $text;
?>