function test($matches)
{
$fx = '';
if(strpos($matches[0],"http://")===false)
{
$fx = "http://";
}
elseif(strpos($matches[0],"http:/")===false)
{
$fx = "http:/";
}
elseif(strpos($matches[0],"http:")===false)
{
$fx = "http:";
}
elseif(strpos($matches[0],"http")===false)
{
$fx = "http";
}
return $fx.$matches[0];
}
また
function test($matches)
{
if(strpos($matches[0],"http://")===false)
{
return "http://".$matches[0];
}
elseif(strpos($matches[0],"http:/")===false)
{
return "http:/".$matches[0];
}
elseif(strpos($matches[0],"http:")===false)
{
return "http:".$matches[0];
}
elseif(strpos($matches[0],"http")===false)
{
return "http".$matches[0];
}
}
私は自分のスクリプトを書いてできるだけ少ないメモリを使用しようとしていますが、コードが見苦しく見えることがあります.
ありがとう。