明明幾個簡單命令就能搞定,但是按照網上的方法就是不行,弄了一天,最後發現只需要兩行命令,而且不需要修改什麼php.ini:
sudo apt-get install php5-imagicksudo service apache2 reload
網上的其他方法:
sudo apt-get update //update libraries and packages
sudo apt-get
autoremove remove obsolete things
sudo apt-get install libmagickwand-dev //
for the libraries of imagemagick
sudo apt-get install imagick //
for the core class imagick
sudo pecl install imagick //
for create the binaries and conections in beetween
sudo echo "
extension=imagick.so
" >> /etc/php5/apache2/php.ini //
sudo service apache2 restart //
restart apache
ps:php在/usr/lib/php5/20102525目錄中搜尋.so檔案,但是imagick.so在檔案/usr/lib/php5/20090626中。因此需要講so檔案賦值到php搜尋的目錄中。
(2)5個步驟:
ps:上邊的方法適用於使用yum包管理工具的i386系統(32位),在x86_64系統(64位)中需要把.i386修改為.x86_64
(3)4個步驟:ubuntu
sudo apt-get install php5-dev pecl imagemagick libmagickwand-devsudo pecl install imagick
sudo apt-get install php5-imagick
sudo service apache2 restart
這是乙個比較完整的php使用imagick擴充套件的安裝流程。
ZH乳酪 PHP的cURL庫
使用php的curl庫可以簡單和有效地去抓網頁。你只需要執行乙個指令碼,然後分析一下你所抓取的網頁,然後就可以以程式的方式得到你想要的資料了。無論 是你想從從乙個鏈結上取部分資料,或是取乙個xml檔案並把其匯入資料庫,那怕就是簡單的獲取網頁內容,curl 是乙個功能強大的php庫。本文主要講述如果使...
ZH乳酪 PHP抓取網頁方法總結
from 在做一些天氣預報或者rss訂閱的程式時,往往需要抓取非本地檔案,一般情況下都是利用php模擬瀏覽器的訪問,通過http請求訪問url位址,然後得到html源 或者xml資料。1.file 函式 2.file get contents 函式 4.curl方式 5.fsockopen 函式 s...
Windows系統php5 6安裝Imagick庫
windows上的安裝坑比較多 官網都是新版本不可以用 我安裝成功的是imagemagick 6.8.6 9 q16 x86 dll.exe 特別注意 安裝路徑不能有空格,安裝完成後cmd,輸入命令convert,出現imagick大段內容,說明安裝成功。2 安裝imagick php擴充套件 我安...