Jump to content

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.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.