Categories
How to remove repeated slashes in Laravel?
Help me please. There is a site on Laravel, but I can’t remove repeated slashes.
Answer the question
In order to leave comments, you need to log in
trim($str, '/')- this is if there are slashes at the beginning and end of the line, and if in the middle:
trim($str, '/')
white(strpos($str, '/') !== false) $str = str_replace('//', '/', $str);
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question