← Stupid answers for a debateTravel Tip: Airline Food →
Code Snippet: Make sure a url starts with http://
08/08/2009
if( strpos($url, ‘http://’) === false )
$url = ‘http://’ . $url;
Or if you are a fan of single line functions
$url = ( strpos($url, ‘http://’) === false ) ? ‘http://’ . $url : $url;
This entry was posted in Computers and tagged PHP. Bookmark the permalink.
← Stupid answers for a debateTravel Tip: Airline Food →
Leave a Reply
You must be logged in to post a comment.










