3v4l.org

run code in 300+ PHP versions simultaneously
<?php class A implements \Serializable { public function serialize() { $s = new \stdClass(); $s->id = 1; var_dump($s); return serialize($s); } public function unserialize($s) { } } class B extends A { public function serialize() { $p = parent::serialize(); $s = unserialize($p); $s = 'O:8:"stdClass":1:{s:15:"doBookingResult";O:8:"stdClass":13:{s:13:"BookingNumber";i:11066;s:8:"ClientID";i:1819790990;s:10:"ClientName";s:5:"Girau";s:20:"NumberOfBookingRooms";i:1;s:6:"BaseID";i:0;s:4:"CNPJ";s:1:"0";s:5:"Rooms";O:8:"stdClass":1:{s:22:"HotelBookingRoomResult";O:8:"stdClass":41:{s:18:"BookingDescription";s:165:"BOOKED AND PAYABLE BY GTA Office Location: New York Hours: 09:00 - 20:00 International Phone: 1-800-5979567 National Phone: 1-800-5979567 Local Phone: 1-800-5979567";s:18:"CancelationBlockWS";b:0;s:16:"BoardDescription";s:8:"roomonly";s:17:"BreakfastIncluded";b:0;s:13:"HotelCategory";s:1:"3";s:6:"CityId";i:15001;s:16:"AgencyCommission";d:0;s:16:"CancellationDate";s:19:"0001-01-01T00:00:00";s:11:"CheckInDate";s:19:"2013-09-19T00:00:00";s:15:"PaymentDeadline";s:19:"2013-09-12T17:00:00";s:15:"ReservationDate";s:33:"2013-09-12T17:46:25.2010077-03:00";s:12:"HotelAddress";s:18:"226 W. 52nd Street";s:7:"HotelId";i:9105;s:9:"ServiceId";i:12002;s:8:"Location";s:7:"Central";s:13:"LogXMLAuditId";s:36:"5ca880f4-fe43-420d-95bc-9f92aa65bf34";s:24:"AgencyCurrencyCommission";s:3:"USD";s:8:"CityName";s:16:"Nova Iorque (ny)";s:9:"HotelName";s:20:"Novotel Times Square";s:14:"NumberOfAdults";i:1;s:16:"NumberOfChildren";i:0;s:14:"NumberOfNights";i:8;s:11:"Observation";s:1068:" - LOCATION: The hotel is located in the heart of midtown Manhattan, in the Theatre District on 52nd Street and Broadway, near Carnegie Hall, Madison Square Garden, Central Park and Rockefeller Center. - ROOMS: The rooms are medium to large in size with bright decor. Those rooms on the upper level have spectacular views of Times Square or the Hudson River. Both rooms and bathrooms are in very good condition. Bathrooms are very unique, with wooden flooring rather than marble or tile. - RESTAURANT: The hotel has a restaurant and lounge with live entertainment overlooking Broadway. - EXTERIOR: The hotel occupies the seventh to 33rd floors of a high-rise modern building. - LOBBY: The lobby is located on the seventh floor of the building and is very large, leading onto a large lounge, which incorporates a bar and restaurant. The decor is modern and very comfortable, with floor to ceiling windows and attractive artwork. - GENERAL: This centrally located hotel is ideal for those travellers wishing to be where the action is, in the heart of the city. (0709/VL)";s:18:"VoucherObservation";s:2:" ";s:9:"CountryId";s:2:"US";s:4:"Paxs";O:8:"stdClass":1:{s:3:"Pax";O:8:"stdClass":10:{s:13:"AddressNumber";i:0;s:3:"DDI";i:0;s:3:"DDD";i:0;s:11:"PhoneNumber";i:0;s:8:"Birthday";s:19:"0001-01-01T00:00:00";s:4:"Name";s:6:"marcus";s:8:"LastName";s:4:"maia";s:3:"Age";i:0;s:9:"EnumTitle";s:2:"Mr";s:11:"EnumPaxType";s:4:"Main";}}s:8:"NetPrice";O:8:"stdClass":2:{s:8:"Currency";s:3:"USD";s:5:"Value";s:3:"630";}s:28:"OperatorCancellationPolicies";O:8:"stdClass":1:{s:18:"CancellationPolicy";O:8:"stdClass":3:{s:9:"StartDate";s:25:"2013-09-11T00:00:00-03:00";s:7:"EndDate";s:19:"2013-09-19T00:00:00";s:5:"Price";O:8:"stdClass":2:{s:8:"Currency";s:3:"USD";s:5:"Value";s:3:"630";}}}s:13:"ReservationId";i:11066;s:15:"RoomDescription";s:26:"SB| Standard Twin - Single";s:13:"PaymentStatus";s:5:"Payed";s:12:"SystemStatus";s:9:"Confirmed";s:14:"ConversionRate";d:1;s:10:"HotelPhone";s:15:"+1 212 315 0100";s:10:"ProviderID";i:25;s:12:"ProviderName";s:3:"GTA";s:12:"ProviderLogo";s:63:"http://turgw.t4w.com.br/_teste/LogoFornecedor/fornecedor-25.jpg";s:19:"ProviderBookingCode";s:17:"620719-LL7F374537";s:11:"PaymentDate";s:19:"0001-01-01T00:00:00";s:11:"PaymentType";s:5:"OTHER";s:7:"Remarks";s:0:"";}}s:9:"Transfers";O:8:"stdClass":0:{}s:5:"Tours";O:8:"stdClass":0:{}s:4:"Cars";O:8:"stdClass":0:{}s:12:"TrainTickets";O:8:"stdClass":0:{}s:9:"TrainPass";O:8:"stdClass":0:{}s:10:"Insurances";O:8:"stdClass":0:{}}}'; $s2 = serialize($s); var_dump($p, $s, $s2); // $s2 = 'r:2' //var_dump(unserialize($s2)); // will throw error as can't unserialize die; //return serialize($s); } } $b = new B; serialize($b);

preferences:
62.09 ms | 402 KiB | 5 Q