2009年11月16日 星期一

UBUNTU如何上傳網路磁碟機中的檔案

例如寄信時,
若想附加網路磁碟機中的檔案,會發現選項中沒有網路磁碟機
有光碟機,有隨身碟,就是沒有網路磁碟。

沒關係,可以到家目錄(/home/登錄者ID)下,有個隱藏的檔案夾~/.gvfs
已掛載的網路磁碟機就在裡面

只要事先將.gvfs 目錄加入書籤
以後就可以簡單的附加或上傳網路磁碟機中的檔案了

2009年11月10日 星期二

優化PHP執行效率的40條技巧

優化PHP執行效率的40條技巧


1.如果一個方法能被靜態,那就聲明他為靜態的,速度可提高1/4;

2.echo的效率高於print,因為echo沒有返回值,print返回一個整型;

3.在循環之前設置循環的最大次數,而非在在循環中;

4.銷毀變量去釋放內存,特別是大的數組;

5.避免使用像__get, __set, __autoload等魔術方法;

6.requiere_once()比較耗資源;

7.在includes和requires中使用絕對路徑,這樣在分析路徑花的時間更少;

8.如果你需要得sexinsex到腳本執行時的時間,$_SERVER['REQUSET_TIME']優於time();

9.能使用字符處理函數的,儘量用他們,因為效率高於正則;

10.str_replace字符替換比正則替換preg_replace快,但strtr比str_replace又快1/4;

11.如果一個函數既能接受數組又能接受簡單字符做為參數,例如字符替換,並且參數列表不是太長,可以考慮多用一些簡潔的替換語句,一次只替換一個字符,而不是接受數組做為查找和替換參數。大事化小,1+1>2;

12.用@掩蓋錯誤會降低腳本運行速度;

13.$row['id']比$row[id]速度快7倍,建議養成數組鍵加引號的習慣;

14.錯誤信息很有用;

15.在循環裡別用函數,例如For($x=0; $x < count($array); $x), count()函數在外面先計算;

16.在方法裡建立局部變量速度最快,97xxoo幾乎和在方法裡調用局部變量一樣快;

17.建立一個全局變量要比局部變量要慢2倍;

18.建立一個對象屬性(類裡面的變量)例如($this->prop++)比局部變量要慢3倍;

19.建立一個未聲明的局部變量要比一個初始化的局部變量慢9-10倍;

20.聲明一個未被任何一個函數使用過的全局變量也會使性能降低(和聲明相同數量的局部變量一樣),PHP可能去檢查這個全局變量是否存在;

21.方法的性能和在一個類裡面定義的方法的數目沒有關係,因為我添加10個或多個方法到測試的類裡面(這些方法在測試方法的前後)後性能沒什麼差異;

22.在子類裡方法的性能優於在基類中;

23.只調用一個參數並且函數體為空的函數運行花費的時間等於7-8次$localvar++運算,而一個類似的方法(類裡的函數)運行等於大約15次$localvar++運算;

24.Surrounding your string by 『 instead of 」 will make things interpret a little faster since php looks for variables inside 「…」 but not inside 『…』. Of course you can only do this when you don't need to have variables in the string.

25.當輸出字符串時用逗號代替點分割更快些。注意:這只對echo起作用,這個函數能接受一些字符串作為參數;

26.在apache服務器裡一個php腳本頁面比相應的HTML靜態頁面生成至少要多花2-10倍的時間,建議多用些靜態HTML頁面和少量的腳步;

27.除非你的安裝了緩存,不然你的php腳本每次被訪問都需要被重編譯。建議安裝個php緩存程序,這樣通過去除一些重複的編譯來很明顯的提高你20-100%的性能;

28.建議用memcached,高性能的分佈式內存對象緩存系統,提高動態網絡應用程序性能,減輕數據庫的負擔;

29.使用ip2long()和long2ip()函數把IP地址轉成整型存放進數據庫而非字符型。這幾乎能降低1/4的存儲空間。同時可以很容易對地址進行排序和快速查找;

30.使用checkdnsrr()通過域名存在性來確認部分email地址的有效性,這個內置函數能保證每一個的域名對應一個IP地址;

31.如果你在使用php5和mysql4.1以上的版本,考慮使用mysql_*的改良函數mysqli_*;

32.試著喜歡使用三元運算符(?:);

33.在你想在徹底重做你的項目前,看看PEAR有沒有你需要的。PEAR是個巨大的資源庫,很多php開發者都知道;

34.使用highlight_file()能自動打印一份很好格式化的頁面源代碼的副本;

35. 使用error_reporting(0)函數來預防潛在的敏感信息顯示給用戶。理想的錯誤報告應該被完全禁用在php.ini文件裡。可是如果你在用一個共享的虛擬主機,php.ini你不能修改,那麼你最好添加error_reporting(0)函數,放在每個腳本文件的第一行(或用 require_once()來加載)這能有效的保護敏感的SQL查詢和路徑在出錯時不被顯示;

36.使用 gzcompress() 和gzuncompress()對容量大的字符串進行壓縮(解壓)在存進(取出)數據庫時。這種內置的函數使用gzip算法能壓縮到90%;

37.通過參數變量地址得引用來使一個函數有多個返回值。你可以在變量前加個「&」來表示按地址傳遞而非按值傳遞;

38.Fully understand 「magic quotes」 and the dangers of SQL injection. I'm hoping that most developers reading this are already familiar with SQL injection. However, I list it here because it's absolutely critical to understand. If you've never heard the term before, spend the entire rest of the day googling and reading.

39.使用strlen()因為要調用一些其他操作例如lowercase和hash表查詢所以速度不是太好,我們可以用isset()來實現相似的功能,isset()速度優於strlen();

40.When incrementing or decrementing the value of the variable $i++ happens to be a tad slower then ++$i. This is something PHP specific and does not apply to other languages, so don't go modifying your C or Java code thinking it'll suddenly become faster, it won't. ++$i happens to be faster in PHP because instead of 4 opcodes used for $i++ you only need 3. Post incrementation actually causes in the creation of a temporary var that is then incremented. While pre-incrementation increases the original value directly. This is one of the optimization that opcode optimized like Zend's PHP optimizer. It is a still a good idea to keep in mind since not all opcode optimizers perform this optimization and there are plenty of ISPs and servers running without an opcode optimizer.

在WINE中安裝 .net 環境

建議使用 winetricks 這個方便的東西


好工具winetricks---安装Windows有关库和软件的小程序
介绍一下使用方法:

1、打开终端,输入
wget http://www.kegel.com/wine/winetricks

2、再输入
sudo apt-get install cabextract

3、再输入
chmod +x winetricks

4、最后
./winetricks

在打开的窗口中,可以看到程序所支持的一个软件列表


art2kmin 微软 Access 2000 运行时.
colorprofile 标准 RGB 颜色配置文件
comctl32 微软 common controls 5.80
comctl32.ocx 微软的comctl32.ocx 和comctl.ocx,VB6的comctl32外壳
corefonts 微软 Arial, Courier, Times 字体
dcom98 微软 DCOM, 替换Wine所自带的
dirac0.8 the obsolete Dirac 0.8 directshow filter
directx9 微软 DirectX 9
divx divx 视频编码
dotnet11 微软 .NET 1.1
dotnet20 微软 .NET 2.0
ffdshow ffdshow 视频编码
flash Adobe Flash Player ActiveX 与 firefox 插件
fontfix Fix bad fonts which cause crash in some apps (e.g. .net).
gdiplus 微软 gdiplus.dll (须安装powerpoint)
gecko HTML 渲染引擎(Mozilla)
icodecs Intel 媒体编码 (Indeo)
jet40 微软 Jet 4.0 Service Pack 8
liberation Red Hat Liberation 字体 (Sans, Serif, Mono)
mdac25 微软 MDAC 2.5: 微软 ODBC 驱动, etc.
mdac27 微软 MDAC 2.7
mdac28 微软 MDAC 2.8
mfc40 微软 mfc40 (Microsoft Foundation Classes from Visual C++ 4)
mfc42 微软 mfc42 (包含于下面的vcrun6)
mono19 mono-1.9.1-gtksharp-2.10.4-win32-2
msi2 微软 Installer 2.0
msls31 微软 Line Services 3.1 (needed by native riched?)
msxml3 微软 XML version 3
msxml4 微软 XML version 4
msxml6 微软 XML version 6
ogg ogg 过滤器和编码器: flac, theora, speex, vorbis,

pdh 微软 pdh.dll (Performance Data Helper)
quicktime72 苹果 Quicktime 7.2
riched20 微软 riched20 and riched32
riched30 微软 riched30
tahoma 微软 Tahoma 字体 (not part of corefonts)
vb3run 微软 Visual Basic 3 运行时
vb4run 微软 Visual Basic 4 运行时
vb5run 微软 Visual Basic 5 运行时
vb6run 微软 Visual Basic 6 运行时
vcrun6 微软 Visual C++ 6 sp4 运行库 (包括mfc42.dll, msvcp60.dll, msvcrt.dll)
vcrun2003 微软 Visual C++ 2003 运行库 (包括mfc71.dll,msvcp71.dll,msvcr71.dll)
vcrun2005 微软 Visual C++ 2005 运行库 (包括mfc80.dll,msvcp80.dll,msvcr80.dll)
vcrun2005sp1 微软 Visual C++ 2005 sp1 运行库
vcrun2008 微软 Visual C++ 2008 运行库 (包括mfc90.dll,msvcp90.dll,msvcr90.dll)
vjrun20 微软 Visual J# 2.0 运行库 (需要安装 dotnet20)
wmp9 微软 Windows Media Player 9
wmp10 微软 Windows Media Player 10
wsh51 微软 Windows Scripting Host 5.1
wsh56 微软 Windows Scripting Host 5.6
wsh56js 微软 Windows scripting 5.6, 只有jscript,没有cscript
wsh56vb 微软 Windows scripting 5.6, 只有vbscript,没有cscript
xvid xvid 视频编码

autohotkey Autohotkey (open source gui scripting language)
firefox3 Firefox 3
kde KDE for Windows installer
mpc Media Player Classic
vlc VLC media player

allfonts 以上所有字体 (corefonts, tahoma, liberation)
allcodecs 以上所有媒体编码 (xvid, ffdshow, icodecs)
fakeie6 在注册表中写入IE6已安装信息
native_mdac Override odbc32 and odbccp32
nt40 Set windows version to nt40
win98 Set windows version to Windows 98
win2k Set windows version to Windows 2000
winxp Set windows version to Windows XP
vista Set windows version to Windows Vista
winver= Set windows version to default (winxp)
volnum Rename drive_c to harddiskvolume0 (needed by some installers)

其中,要安装QQ2008的话,只需安装flash gecko msls31 riched20 vcrun6即可

UBUNTU下 flash 中文亂碼解決方案

原因是 /etc/fonts/conf.d/49-sansserif.conf
這個檔案裡的字型設定有錯

方案一 直接刪除 (Ubuntu - 解決 firefox 的 Flash 亂碼、無聲情況

先備份
sudo cp /etc/fonts/conf.d/49-sansserif.conf /etc/fonts/conf.d/49-sansserif.conf.bak

接著,把它砍掉~
sudo rm -f /etc/fonts/conf.d/49-sansserif.conf


方案二 修改檔案(解決 Flash 裡頭中文顯示亂碼問題
sudo gedit /etc/fonts/conf.avail/49-sansserif.conf

把最後一段「sans-serif」的 sans-serif 改成你要的中文字型就可以了,或是將中間橫線拿掉,改成 sans serif 也可以。

ubuntu 如何解壓縮 .RAR

打開「附屬應用程式」的「終端機」

打入sudo apt-get install rar

完成