Jump to content

[SOLVED] string problem


Panjabel

Recommended Posts

Hi..

use following..

$string = "filename.jpg";

$file_ext=explode(".",$string);

$file_name=$file_ext[0]; //only filename

$file_ext=$file_ext[1]; //only extension

 

OR U CAN ALSO USE

$path = "filename.jpg";

$file = basename($path);        // $file is set to "filename.jpg"

$file = basename($path, ".jpg"); // $file is set to "filename"

 

Regards,

Vijay

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/65775-solved-string-problem/#findComment-328598
Share on other sites

Hi..

 

<?php
$string = "file.na.me.gif";
$file_ext=explode(".",$string);
$ext_pos=count($file_ext)-1;
for($i=0;$i<$ext_pos;i++)
{
       $file_name .=$file_ext[$i]; //only filename
}
$file_ext=$file_ext[$ext_pos]; //only extension
?>

 

Regards,

Vijay           

Link to comment
https://forums.phpfreaks.com/topic/65775-solved-string-problem/#findComment-328607
Share on other sites

Hi..

        sorry miss some code.. use following code..

<?php
$string = "file.na.me.gif";
$file_ext=explode(".",$string);
$ext_pos=count($file_ext)-1;
for($i=0;$i<$ext_pos;$i++)
{
       	
$file_name .= $file_ext[$i]; //only filename
if($i !=($ext_pos-1))
$file_name .=".";
}
$file_ext=$file_ext[$ext_pos]; //only extension
echo  $file_name."<br/>".$file_ext;
?>

Regards,

Vijay

Link to comment
https://forums.phpfreaks.com/topic/65775-solved-string-problem/#findComment-328615
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.