iconv_strlen function causing execution timeout, running on MAMP

孤者浪人 提交于 2019-11-26 20:26:59

问题


Has anyone had issues with the iconv_strlen function while running MAMP?


回答1:


I have been having a timeout issue with it, but not with any exceptions being thrown. I'm working on a Zend Framework site. By following the debugger deep into the guts, I tracked the problem down to the use of iconv_strlen. It's not being called on any strange string, it's a simple function being used to validate a hostname.

To verify the issue, I tried a simple iconv_strlen("test", 'UTF-8'); This causes the error to come up - endless spinning loader in browser but no error log message, and the script goes beyond the max execution time. It seems that this is an uncaught big in this version of PHP.

My colleague found this article which might address the issue. I'm on a Mac OS X machine updated to the latest Snow Leopard, which is 10.6. It seems that this is a known bug and there is a workaround if you build your own php or use the built in Apple version or use ports.

  • Bug #49267 Linking fails for iconv: "Undefined symbols: _libiconv"
  • PHP 5.3.0 on Mac OS 10.6 (Snow Leopard) - Fabien Potencier; 05 Nov 2009

Long story short, you can delve into recompiling your own php with the above patch, but this kind of defeats the point of MAMP in the first place.

The quickest solution is simply either never use iconv_strlen() (or any of the iconv_ functions) - and this is not an option if you use Zend Framework - or else revert MAMP to use php 5.2.

Until MAMP begins including php source files and providing a method by which to easily recompile the php bundled with all of the necessary libraries, this is will necessarily remain a limitation of the package. MAMP works great until you get to the point where you need to recompile php. When that happens, it's far easier to simply use ports.




回答2:


In case anyone is still having this issue, I struggled for ages with this, but upgrading to the very latest version of MAMP Pro on OSX Lion seemed to work for me.




回答3:


wbond, you have it a bit mixed up. MAMP 1.9.4 works 100% fine. It’s any version of MAMP from 1.9.5 to 2.0.1 that contains the “iconv” issue. Also, I tested your solution in PHP 5.3.6 in MAMP 2.0.1 and it doesn’t work. The only solution is roll back to MAMP 1.9.4 or use latest MAMP but roll PHP back to 5.2.x.

<?php 

$str = 'Hello, world!';
$str = iconv_function('UTF-8', 'UTF-8//IGNORE', $str);
echo $str;

function iconv_function ($in_charset, $out_charset, $str) {
  return iconv($in_charset, $out_charset, $str);
}

?>



回答4:


According to the MAMP forums, the new update to version 2.x (2.0.2 released on August 17, 2011) resolves the iconv issue. Yes!



来源:https://stackoverflow.com/questions/5400154/iconv-strlen-function-causing-execution-timeout-running-on-mamp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!