


Due to its power and scalability, PHP has made great progress in recent years. Compared with traditional ASP websites, PHP has an absolute advantage in speed. If you want to transfer 60,000 pieces of data from mssql to PHP, it takes 40 seconds. ASP takes no less than 2 minutes. However, as the website has more and more data, we are eager to call the data faster. We do not need to delete it from the database every time. We can call it from other places, such as a file or a certain memory address. , This is PHP’s caching technology, which is Cache technology.
In-depth analysis
Generally speaking, the purpose of caching is to put data in one place to make access faster. There is no doubt that memory is the fastest, but can hundreds of M of data be stored in it? This is unrealistic , Of course, sometimes it is temporarily placed in the server cache. For example, if the ob_start() cache page is turned on, the page content will be cached in the memory before sending the file header. Until the page output is automatically cleared, or waiting for the return of ob_get_contents, or ob_end_clean Display clearing can be well used in the generation of static pages and can be well reflected in templates.
In addition, there is an object application in ASP that can save public parameters. This is also a bit of caching. But in PHP, I have not seen developers produce such objects so far. Indeed, it is not necessary. ASP.NET Page caching technology uses viewstate, and cache is file association (not necessarily accurate). When the file is modified, the cache is updated. If the file is not modified and does not time out (note 1), the cache is read and the result is returned, which is this For ideas, take a look at this source code:
<ol class="dp-c"> <li class="alt"><span><span><?PHP </span></span></span></li> <li> <span class="keyword">class</span><span> cache{ </span> </li> <li class="alt"> <span class="keyword">private</span><span> </span><span class="vars">$cache_dir</span><span>; 🎜>$expireTime</span> </li>=180;<li> <span class="keyword">//The cache time is 60 seconds </span><span> </span><span class="vars"></span><span>function</span><span class="comment"> __construct(</span><span>$cache_dirname</span> </li>){ <li class="alt"> <span class="keyword"></span><span> </span><span class="vars">if</span><span>(!@</span> </li>is_dir<li> <span>(</span><span class="keyword">$cache_dirname</span><span>)){ ></span>(!@<span class="func"></span>mkdir<span></span>(<span class="vars"></span>$cache_dirname<span></span>,0777)){ </li> <li class="alt"> <span></span> <span class="keyword"></span>$this<span></span>->warn(<span class="func"></span>The cache file does not exist and cannot be created, it needs to be created manually.<span></span>); <span class="vars"> </span><span></span> </li> <li>return<span></span> false; <span class="vars"></span><span></span> } <span class="string"></span><span></span>$this</li> <li class="alt">->cache_dir = <span></span>$cache_dirname<span class="keyword"></span>; <span></span> </li> <li>} <span></span> </li> <li class="alt">function<span></span> __destruct(){ </li> <li> <span class="vars"></span> <span></span>echo<span class="vars"></span> <span></span>Cache class bye.</li> <li class="alt">; <span></span> </li> <li>} 🎜><span class="keyword">function</span><span> get_url() { </span> </li> <li class="alt"> <span> >$_SERVER</span><span class="func">[</span><span>REQUEST_URI</span><span class="string">])) { </span><span></span> </li> <li> = <span></span>$_SERVER</li> <li class="alt">[<span></span>REQUEST_URI</li> <li>]; <span class="keyword">else</span><span>{ 🎜>[</span> </li>SCRIPT_NAME<li class="alt"> <span>]; ></span>empty<span class="keyword"></span>empty<span></span>(<span class="vars"></span>$_SERVER<span></span>[<span class="string"></span>QUERY_STRING<span></span>])) ?</li> <li>?<span></span> . ><span class="vars"></span>; <span></span><span class="vars"></span> 🎜 >return<span></span> <span class="string"></span>$url<span></span>; </li> <li class="alt"> <span></span>}</li> <li class="alt"><span><span>function warn($errorstring){ </span></span></li> <li> <span>echo "</span><strong><font color="#006699"><span class="tag"><span class="tag-name">b</span><span class="tag">></span><span class="tag"><span class="tag-name">font</span></span></span></font></strong><span> </span><span class="attribute"><font color="#ff0000">color</font></span><span>=</span><span class="attribute-value"><font color="#0000ff">red</font></span><span class="tag"><strong><font color="#006699">></font></strong></span><span>An error occurred:</span><strong><font color="#006699"><span class="tag"><span class="tag-name">pre</span><span class="tag">></span></span></font></strong><span>". $errorstring."</span><strong><font color="#006699"><span class="tag"></span><span class="tag-name">pre</span><span class="tag">></span><span class="tag"></span><span class="tag-name">font </span><span class="tag">></span><span class="tag"></span><span class="tag-name">b</span><span class="tag">></span></font></strong><span>"; </span> </li> <li class="alt"><span>} </span></li> <li><span> </span></li> <li class="alt"><span>function cache_page($pageurl,$pagedata){ </span></li> <li> <span>if(!$</span><span class="attribute"><font color="#ff0000">fso</font></span><span>=</span><span class="attribute-value"><font color="#0000ff">fopen</font></span><span>($ pageurl,w)){ </span> </li> <li class="alt"> <span> $this-</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>warns(unable Open the cache file.);//trigger_error </span> </li> <li><span> return false; </span></li> <li class="alt"><span> } </span></li> <li><span> if (!flock($fso,LOCK_EX)){//LOCK_NB, exclusive lock </span></li> <li class="alt"> <span> $this-</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>warns(Unable to lock cache file.);//trigger_error </span> </li> <li><span> return false; </span></li> <li class="alt"><span> } </span></li> <li><span> if(!fwrite($fso,$pagedata)){//Write byte stream, serialize to write other formats </span></li> <li class="alt"> <span> $this-</span><span class="tag"><strong><font color="#006699">></font></strong></span><span>warns(Unable to write cache file.);//trigger_error </span> </li> <li><span> return false; </span></li> <li class="alt"><span> } </span></li> <li><span> flock($fso,LOCK_UN);//Release lock </span></li> <li class="alt"><span> fclose($fso); </span></li> <li><span> return true; </span></li> <li class="</p"> <p align="left"></p> <div style="display:none;"> <span id="url" itemprop="url">http://www.bkjia.com/PHPjc/486256.html</span><span id="indexUrl" itemprop="indexUrl">www.bkjia.com</span><span id="isOriginal" itemprop="isOriginal">true</span><span id="isBasedOnUrl" itemprop="isBasedOnUrl">http: //www.bkjia.com/PHPjc/486256.html</span><span id="genre" itemprop="genre">TechArticle</span><span id="description" itemprop="description">PHP has made great progress in recent years due to its power and scalability. Compared with traditional ASP, PHP The website has an absolute advantage in terms of speed. If you want to transfer 60,000 pieces of data from mssql to PHP, it will take 40 seconds, and ASP will not be faster...</span> </div> <div class="art_confoot"></div> </li> </ol>

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Mac version
God-level code editing software (SublimeText3)
