Jump to content

strstr or something


slimjim

Recommended Posts

I am using this:


$url = (strstr($_POST["websiteurl"],"http://")!=""?"":"http://").$_POST["websiteurl"];

 

Only problem is that it not working correctly the way I need it too.

Oh it replaces the http:// if not there, but if a person forgets the :// or just the //, it adds the http:// to it anyway so I could end up with http://http:

 

I need help on this so in end result, of regardless of what they missed i has http"//

 

PLease help

Link to comment
Share on other sites

Have some patience please.

 

<pre>
<?php

$tests = array(
	'http://www.url.com',
	'url.com',
	'httpurl.com',
	'http:url.com'
);

foreach ($tests as $test) {
	echo $test, ' => ';
	echo preg_replace('#^(?:http:?(?://)?)?#', 'http://', $test);
	echo '<br>';
}

?>
</pre>

Link to comment
Share on other sites

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.