View Single Post
ישן 17-01-09, 14:15   # 11
intercooler3819
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Jul 2008
הודעות: 1,056

intercooler3819 לא מחובר  

אני בספק..
למען הסר ספק נריץ בנצ'מארק קטן
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("."endexplode("/"$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

צדקת..
__________________
  Reply With Quote