Jump to content

[SOLVED] help with split


denoteone

Recommended Posts

I would like to split a variable at the "." and then save the part to the right in a new variable called $ext. I am pretty sure that I would use split but I am having and issue.

$file = "mypage.php";

$ext = split($file.".");
echo $ext[1];   

should read   php

 

Thanks

Link to comment
https://forums.phpfreaks.com/topic/169794-solved-help-with-split/
Share on other sites

$file = "mypage.php";

list($file, $ext) = explode(".", $file);
echo $file . " has the extension of " . $ext;  

 

I tend to prefer explode for something simple like this.

 

Also look at list. Alternatively there is a pathinfo function in mysql php which breaks that out into an associative array so $array['extension'] would contain that, incase the file name may have multiple periods in it.

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.