顯示具有 php 標籤的文章。 顯示所有文章
顯示具有 php 標籤的文章。 顯示所有文章

2016-04-25

你的 MAC 的 PHP 的指令 ImageTTFText 無效或沒動作?

你的 MAC 的 PHP 的指令 ImageTTFText 無效或沒動作?
例如這行無動作
ImageTTFText($img_org, 14, angle, $pos[1], $pos[2], $thecolor, $ttf_font, $text_out);

大致上應該是兩個問題造成
1. 沒有安裝 GD 程式 library
2. 沒有安裝 freetype font support


2014-02-26

CentOS6 php 無法使用 ftp_connect 的解決辦法

雖然常常遇到,但每每遇到又會忘記,所以在此筆記。

在 Security Enhanced Linux 下,Apache 可能不能如你原來習慣的方式使用。

在 PHP 下,當你遇到連 connect 都會失敗時
<testftp.php>
$conn_id = ftp_connect($ip,$port,$timeout);
if (!$conn_id)
{
    print "FTP connect failed!!";
    exit();
}