|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-19 08:54 UTC] tony2001@php.net
[2006-05-24 11:49 UTC] geisel at 4up dot com dot br
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Fri Feb 06 03:00:02 2026 UTC |
Description: ------------ The following code does an error in soap messages. Switching to var_export($e,false) corrects it, but at the documentation, true is the correct parameter. Reproduce code: --------------- try { throw new Exception('x'); } catch(exception $e) { throw new SoapFault('Erro:',var_export($e,true)); }