摘要:
Explain的type显示的是访问类型,是较为重要的一个指标,结果值从好到坏依次是:system > const > eq_ref> ref > fulltext >ref_or_null > index_merge >unique_subquery > index_subquery >range > index > ALL用explain解释你的select语句,完善语句。mysql> explain select artist_id ,type,founded from artist where name=' 阅读全文
摘要:
只有几个常用的,其他的自己可以在网上查到的。text/htmltext/csstext/javascriptimage/gifimage/jpegimage/pngimage/bmpapplication/pdfapplication/x-tarapplication/zipapplication/octet-stream 阅读全文
摘要:
php:我在这里就说几个我特别常用的,可能我的这些不是很全,请见谅!$handle=fopen($fileName,$mode),是打开文件,参数看名字知道什么意思了,至于模式,我一般不太建议大家以写模式打开,因为会造成清空文件的后果,所以以写的模式打开慎用。fread($handle,$length);fwrite($handle,$string);fclose($handle); 这几个比较简单,在这里就不过多叙述了feof($handle) 判断指针是否到了文件的末尾,这个可以在以行读取文件,判断文件是否读到末尾fileatime($string),filectime($string), 阅读全文