Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
fbian каза:А стринга накрая винаги ли завършва с точка?
$filename = "bla.bla.bla.blabla.bla.dat";
$ext = pathinfo($filename, PATHINFO_EXTENSION);
$filename = str_replace(".", "_", str_replace(".{$ext}", "", $filename)) . ".{$ext}";
echo $filename;
joTunkiq каза:PHP:$string = "some.text.some.text.some.text.jpg"; $arr = explode(".",$string); $n = count($arr); $first = $arr[$n-1]; $first = str_replace(".","_",$first); echo $first.".".$arr[$n];
:idea:
(не е тестван)
<?php
$string = 'something.with.many.dots.last';
$lastDotPos = strrpos($string, '.');
echo str_replace('.', '_', substr($string, 0, $lastDotPos - 1)) . substr($string, $lastDotPos);