IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası

IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası (https://www.ircforumlari.net/)
-   PHP (https://www.ircforumlari.net/php/)
-   -   php web adreslerini formatlamak (https://www.ircforumlari.net/php/624441-php-web-adreslerini-formatlamak.html)

hAte 08 Ekim 2014 08:27

php web adreslerini formatlamak
 
PHP- Kodu:

function formatWebAddress($webAddress) {
$originalWebAddress $webAddress;
$webAddress "*" $webAddress;
$formattedWebAddress "";
if (
stripos($webAddress"http://") == 1) {    //starts with http://
if (substr_count($webAddress".") == 1) {    //one dot only
$formattedWebAddress $originalWebAddress;
$formattedWebAddress insertString($formattedWebAddress"
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
style="color: #007700">, 
7);
}
else
$formattedWebAddress $originalWebAddress;
}
else {    
//does not start with http://
if (substr_count($webAddress".") == 1)    //one dot only
$formattedWebAddress "
Bu forumdaki linkleri ve resimleri görebilmek için en az 25 mesajınız olması gerekir.
style="color: #007700">. 
$originalWebAddress;
elseif (
substr_count($webAddress".") >= 2)    //two dots only
$formattedWebAddress "http://" $originalWebAddress;
else
$formattedWebAddress $originalWebAddress;
}
// add slash at end
if (substr_count($formattedWebAddress"/") == 2)    //if it has "//" at beginning
$formattedWebAddress .= "/";
$formattedWebAddress strtolower($formattedWebAddress);
return 
$formattedWebAddress;




Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 06:13.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Friendly URLs by vBSEO
Copyright ©2004 - 2025 IRCForumlari.Net Sparhawk