在 Windows 中的 XAMPP 上安装 PHP 的 Freetype 库模块
如何安装 Freetype 库模块。
how to install Freetype library modules.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何安装 Freetype 库模块。
how to install Freetype library modules.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
来自 PHP 手册:
如果您在 php.ini 中找不到该设置,则默认情况下魔术引号处于关闭状态。我猜你想要的就是打开它,对吧?
如果是这样,那么只需将
magic_gpc_quotes = 1
行添加到您的 php.ini 中就可以了。如果情况相反,并且您无法写入 php.ini,则查找可撤消转义的代码: http://www.charles-reace.com/blog/2010/07/13/undoing-magic-quotes/。
至于freetype库,请参见http://ubuntuforums.org/showthread.php?t=205825< /a>.
干杯
From the PHP manual:
If you can't find that setting in the php.ini, than magic quotes are off by default. I guess what you want is to turn it on, right?
If so, then just go ahead and add the line
magic_gpc_quotes = 1
to your php.ini and you'll be fine.If the opposite is true and you can't write to the php.ini then look for code that undos the escaping: http://www.charles-reace.com/blog/2010/07/13/undoing-magic-quotes/.
As for the freetype library, see http://ubuntuforums.org/showthread.php?t=205825.
Cheers