Jump to content

Strip extensions


dreamwest

Recommended Posts

see, if you know what to replace with, then you dont have to do anything. for instant, I wrote "I love abc.com", person B wrote "I love def.com" etc.... now, when you write your code, you have to replace my string with "I love abc", person B's string with "I love def" and so on. If you use str_replace only, then how can you do it? Its not a constant string definitely. It must vary with user, otherwise, if as a coder you know the string which is constant, why should you need to strip that with code? Just use the Backspace buton on keyboard and delete the unnecessary portion !!!!

Link to comment
https://forums.phpfreaks.com/topic/140283-strip-extensions/#findComment-734025
Share on other sites

I would use the pathinfo function:

<?php
$myvar="I like crosscountry.wmv";
$x = pathinfo($myvar);
echo $x['filename'];
?>

 

Ken

 

or yeah.. pathinfo($fileName,PATHINFO_FILENAME);

 

but idk if pathinfo() will do it if that file doesn't exist :S

Link to comment
https://forums.phpfreaks.com/topic/140283-strip-extensions/#findComment-734038
Share on other sites

pathinfo works fine whether or not the file exists:

 

<?php
$fe = (file_exists('no.such.file.here'))?'exists':'does not exist';
echo 'file no.such.file.here ' . $fe . "\n";
echo pathinfo('no.such.file.here',PATHINFO_FILENAME) . "\n";
?>

 

Ken

Link to comment
https://forums.phpfreaks.com/topic/140283-strip-extensions/#findComment-734046
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.