|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-10-15 00:19 UTC] pajoye@php.net
[2010-03-19 16:51 UTC] phpnet at bueckemeyer dot com
[2016-07-16 01:44 UTC] cmb@php.net
-Status: Assigned
+Status: Closed
[2016-07-16 01:44 UTC] cmb@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 16:00:01 2025 UTC |
Description: ------------ Using shared GD with PHP 5.3.0 should work the same as using --with- gd=php. However, this is not true. Reproduce code: --------------- ~> php -r 'var_dump(PHP_VERSION);' string(5) "5.3.0" ~> php -r 'var_dump(function_exists("imagerotate"));' bool(true) ~> php -r 'var_dump(function_exists("imagelayereffect"));' bool(false) Expected result: ---------------- I expected the last command to show "bool(true)". Actual result: -------------- It shows "bool(false)".