| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2004-08-19 22:10 UTC] cyanide320 at hotmail dot com
  [2004-08-20 02:20 UTC] tmgh at www dot deyang dot gov dot cn
  [2005-02-11 15:19 UTC] tony2001@php.net
  [2005-02-19 01:00 UTC] php-bugs at lists dot php dot net
  | 
    |||||||||||||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 15:00:01 2025 UTC | 
Description: ------------ file_exists, include, include_once, require, require_once and getimagesize are about 10x slower than their php4 version. Using Apache 2.0.48, Windows XP Php 5.0.0 versus Php 4.3.6 on the same computer. Reproduce code: --------------- Tested using this function either with file_exists, include, include_once, require, require_once and getimagesize function FileExists($file,$nb,$para="") { $aT=array(); $aT[0]=microtime(false); for($t=0;$t<$nb;$t++){ file_exists($file); } $aT[1]=microtime(false); return $aT; } Actual result: -------------- Mean for 100 repeated tests Using php 5.0.0: include mean: 0.0029407 (s) require mean: 0.0030178 (s) include_once mean: 0.0022040 (s) require_once mean: 0.0023427 (s) file_exists mean: 0.0000355 (s) file_exists and clearstatcache mean: 0.0013877 (s) Using php 4.3.6: include mean: 0.0002966 (s) require mean: 0.0002929 (s) include_once mean: 0.0001056 (s) require_once mean: 0.0001038 (s) file_exists mean: 0.0000028 (s) file_exists and clearstatcache mean: 0.0000749 (s)