Dear PHP Community,

I'd like to propose several changes to PHP core:

   1. Allow re-throwing exceptions without losing original stack trace,
   like in other technologies:
   try {/*...*/} catch(Exception $e) { throw; }
   2. Introduce base class for all PHP classes. E.g. Object. It would help
   in type hinting and allow to add new common methods without any magic.
   3. Parse body of PUT request in the same manner as it's done for POST
   request. I guess it should be stored in $_POST array to maintain backward
   compatibility. Otherwise $_REQUEST handling should be aware of new array
   with PUT data.
   4. Add handling of DateTime objects to SoapServer and SoapClient. It
   will help in using this build-in datatype without typemap.

I tried to google for these proposals, but didn't find any previous
discussions.

-- 
Max Romanovsky

Reply via email to