אני בספק..
למען הסר ספק נריץ בנצ'מארק קטן
http://jobtalk.co.il/php.php
PHP קוד:
<?php
$url = "http://www.aaa-cccc.biz/images/footl.jpg";
$sm = microtime(true);
for($i = 0; $i < 100000; $i++)
{
$parts = explode(".", end( explode("/", $url) ) );
array_pop($parts); // Remove the file extention
$part = implode("", $parts);
}
echo microtime(true) - $sm . "<br>";
$sm = microtime(true);
for($i = 0; $i < 100000; $i++)
{
preg_match("#/(.+)\.[a-zA-Z]+$#", $url, $matches);
$part = $matches[1];
}
echo microtime(true) - $sm . "<br>";
?>
ובשביל מתי שאני יוריד את זה מהשרת.. 3 תוצאות:
0.85934305191
0.38126707077
0.828341960907
0.366955041885
0.839604854584
0.368497848511
צדקת..