|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2010-09-29 03:47 UTC] felipe@php.net
-Status: Open
+Status: Feedback
[2010-09-29 03:47 UTC] felipe@php.net
[2011-01-11 04:36 UTC] jack at gmail dot com
[2013-02-18 00:34 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 16:00:01 2025 UTC |
Description: ------------ I have PHP 5.3.3 and libiconv 1.13 on a Solaris machine. When I run the following script. it coredumps. The same script runs fine with PHP 5.2.6 and libiconv 1.11. $ more test.php <?php $str = "économiques"; $str = iconv('UTF-8', 'UTF-8//IGNORE', $str); print "$str\n"; ?> $php test.php Segmentation Fault (core dumped) Test script: --------------- <?php $str = "économiques"; $str = iconv('UTF-8', 'UTF-8//IGNORE', $str); print "$str\n"; ?>