[ create a new paste ] login | about

Link: http://codepad.org/7TefG7Je    [ raw code | output | fork ]

PHP, pasted on Aug 24:
1
2
3
4
5
6
7
<?php
        //Enter your code here, enjoy!
$nombre = "https://es.stackoverflow.com/questions/191277/a%c3%b1adir-texto-en-medio-de-strings-php/191279#191279/img.jpg";
$ext  = explode('.', $nombre);
$ext  = end($ext);
$nombre =  str_replace(".".$ext, "-150x150.".$ext, $nombre);
echo $nombre;


Output:
1
https://es.stackoverflow.com/questions/191277/a%c3%b1adir-texto-en-medio-de-strings-php/191279#191279/img-150x150.jpg


Create a new paste based on this one


Comments: