我有错误:
致命错误:调用未定义的函数imagettfbbox() /home/example/public_html/generate.php 在线 65
65的generate.php :
63- $code = $this->generateCode();
64- $font = _ROOT_PATH_ . '/Captcha/ccf.ttf';
65- imagettfbbox(138, 0, $font, $code);
帮帮我PLZ :(
答案 0 :(得分:2)
根据 http://php.net/manual/en/function.imagettfbbox.php
This function requires both the GD library and the » FreeType library.
您必须缺少PHP构建中的一个或两个必需库。
使用以下代码构建文件'info.php':
<?php phpinfo() ?>
运行它,看看哪些丢失了,然后去安装它们。
答案 1 :(得分:1)