search
HomeBackend DevelopmentPHP TutorialPHP code optimization and summary of PHP related issues

1. When passing an array in a function, using return is more efficient than using global. For example,

function userloginfo($usertemp){

$detail=explode("|",$usertemp);
return $detail;
}
$login=userloginfo($userdb);

than

function userloginfo($usertemp){

global $detail;

$detail=explode("|",$usertemp);
}
userloginfo($userdb) ;

Be efficient

2, (This code is used to get the URL corresponding to the program directory, recommended)

$urlarray=explode('/',$HTTP_SERVER_VARS['REQUEST_URI']);

$urlcount= count($urlarray);unset($urlarray[$urlcount-1]);

$ofstarurl='http://'.$HTTP_SERVER_VARS['HTTP_HOST'].implode('/',$urlarray);

this This code segment is more efficient than

$pre_urlarray=explode('/',$HTTP_SERVER_VARS['HTTP_REFERER']);

$pre_url=array_pop($pre_urlarray);


3. When judging in a loop, use numerical judgment Identity ratio is equal to efficient

$a=2;$b=2;

For example

if($a==$b)$c=$a;

than
if($a===$b)$c =$a;
Efficient

4, MySQL try to use where in when querying and use limit less
limit to check the first few records of many records, the speed is very fast, but the query of the last few records will be slow
use in. In the continuous query Continuous recording is very fast. Discontinuous recording will be a little slower for the first time, but it will be faster after that!

5. The stability of NT server data operation is not as stable as unix/linux

6. Try to use ob_start( before outputting ); can speed up the output, suitable for NT or nuli/linux. If you use ob_start('ob_gzhandler') for unlix servers; the output efficiency will be higher

7. Try to use if($a==his value when making judgments. ) When negating, try to use if(empty($a)), because this way the program runs faster

8, when using unequal time!= is equivalent to

9, personal experience is to use $a=" 11111111111111"; is as efficient as $a='11111111111111';. It is not very different as the book says

10. Using standardized SQL statements will be beneficial to MySQL parsing

11. Using

if($ online){

$online1=$online;

setcookie('online1',$online,$cookietime,$ckpath,$ckdomain,$secure);

}




COOKIE will take effect immediately

Use

if($ online)

setcookie('online1',$online,$cookietime,$ckpath,$ckdomain,$secure);


COOKIE needs to be refreshed again to take effect

12, use

$handle=fopen($filename ,wb);

flock($handle,LOCK_SH);

$filedata=fread($handle,filesize($filename));

fclose($handle);


than

file($filename);

no matter Excellent in both speed and stability

13, truncation string optimization function (can avoid the appearance of ? characters)

function substrs($content,$length) {

if(strlen($content)>$length){

          $num=0;

                                                                                                                                                                                                                                                     $num %2==1 ? $content=substr($content,0,$length-4):$content=substr($content,0,$length-3);

         $content.=' ...';
}
return $content;
}



For example $newarray[1]=substrs($newarray[1],25);

14, case shielding in the program

for ($asc=65;$asc< ;=90;$asc++)

{ //strtolower() This function will produce garbled characters on some servers!

if (strrpos($regname,chr($asc))!==false)

{

$error="For To avoid user name confusion, uppercase letters are prohibited in user names, please use lowercase letters";

$reg_check=0;

}

}




15, do not use file(); and do not use fget();( Unstable or slow) Take an array function

function openfile($filename,$method="rb")

{

$handle=@fopen($filename,$method);

@flock($handle,LOCK_SH) ;

@$filedata=fread($handle,filesize($filename));
@fclose($handle);

$filedata=str_replace("n","n",$filedata);

$filedb=explode("",$filedata);
//array_pop($filedb);
$count=count($filedb);
if($filedb[$count-1]== ''){unset($filedb[$count-1]);}
return $filedb;
}
//Although this function has a lot of code, it has great advantages in speed and stability!



Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
PHP Dependency Injection Container: A Quick StartPHP Dependency Injection Container: A Quick StartMay 13, 2025 am 12:11 AM

APHPDependencyInjectionContainerisatoolthatmanagesclassdependencies,enhancingcodemodularity,testability,andmaintainability.Itactsasacentralhubforcreatingandinjectingdependencies,thusreducingtightcouplingandeasingunittesting.

Dependency Injection vs. Service Locator in PHPDependency Injection vs. Service Locator in PHPMay 13, 2025 am 12:10 AM

Select DependencyInjection (DI) for large applications, ServiceLocator is suitable for small projects or prototypes. 1) DI improves the testability and modularity of the code through constructor injection. 2) ServiceLocator obtains services through center registration, which is convenient but may lead to an increase in code coupling.

PHP performance optimization strategies.PHP performance optimization strategies.May 13, 2025 am 12:06 AM

PHPapplicationscanbeoptimizedforspeedandefficiencyby:1)enablingopcacheinphp.ini,2)usingpreparedstatementswithPDOfordatabasequeries,3)replacingloopswitharray_filterandarray_mapfordataprocessing,4)configuringNginxasareverseproxy,5)implementingcachingwi

PHP Email Validation: Ensuring Emails Are Sent CorrectlyPHP Email Validation: Ensuring Emails Are Sent CorrectlyMay 13, 2025 am 12:06 AM

PHPemailvalidationinvolvesthreesteps:1)Formatvalidationusingregularexpressionstochecktheemailformat;2)DNSvalidationtoensurethedomainhasavalidMXrecord;3)SMTPvalidation,themostthoroughmethod,whichchecksifthemailboxexistsbyconnectingtotheSMTPserver.Impl

How to make PHP applications fasterHow to make PHP applications fasterMay 12, 2025 am 12:12 AM

TomakePHPapplicationsfaster,followthesesteps:1)UseOpcodeCachinglikeOPcachetostoreprecompiledscriptbytecode.2)MinimizeDatabaseQueriesbyusingquerycachingandefficientindexing.3)LeveragePHP7 Featuresforbettercodeefficiency.4)ImplementCachingStrategiessuc

PHP Performance Optimization Checklist: Improve Speed NowPHP Performance Optimization Checklist: Improve Speed NowMay 12, 2025 am 12:07 AM

ToimprovePHPapplicationspeed,followthesesteps:1)EnableopcodecachingwithAPCutoreducescriptexecutiontime.2)ImplementdatabasequerycachingusingPDOtominimizedatabasehits.3)UseHTTP/2tomultiplexrequestsandreduceconnectionoverhead.4)Limitsessionusagebyclosin

PHP Dependency Injection: Improve Code TestabilityPHP Dependency Injection: Improve Code TestabilityMay 12, 2025 am 12:03 AM

Dependency injection (DI) significantly improves the testability of PHP code by explicitly transitive dependencies. 1) DI decoupling classes and specific implementations make testing and maintenance more flexible. 2) Among the three types, the constructor injects explicit expression dependencies to keep the state consistent. 3) Use DI containers to manage complex dependencies to improve code quality and development efficiency.

PHP Performance Optimization: Database Query OptimizationPHP Performance Optimization: Database Query OptimizationMay 12, 2025 am 12:02 AM

DatabasequeryoptimizationinPHPinvolvesseveralstrategiestoenhanceperformance.1)Selectonlynecessarycolumnstoreducedatatransfer.2)Useindexingtospeedupdataretrieval.3)Implementquerycachingtostoreresultsoffrequentqueries.4)Utilizepreparedstatementsforeffi

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor