fork download
  1. <?php
  2. $html = <<<html
  3. <div class="hp_hotel_description_hightlights_wrapper">
  4.   <div class="hotel_description_wrapper_exp">
  5.   <div id="summary" class=""> <!--Начать тут -->
  6.   <p>Offering a terrace and a lounge area, Abkhazskaya Usadba is located in Gagra, 500 metres from the Black Sea coast. Free WiFi and free private parking are available on site.</p>
  7.   <p>The rooms feature a balcony, private entrance, air conditioning, a fridge, hairdryer and flat-screen TV.</p>
  8.   <p>Guests can dine in the guest house’s canteen serving home made food.</p>
  9.   <p>Gagra Train Station is 2 km away, and Sochi International Airport is 40 km from Abkhazskaya Usadba.</p>
  10.   </div> <!-- Закончить тут -->
  11.   <p class="summary " style="color: #555; font-size: 95%; font-style: italic; ">
  12.   Hotel Rooms: 24
  13.   </p>
  14.   </div>
  15.   <div class="property_hightlights_wrapper">
  16.   <div class="property_highlights_left">
  17.   <div class="photo_overlay filter_api_vers_left filter_api_width">
  18.   <span class="inner_content_filter_api">
  19. <p class="filter_highlights_title ">
  20. Property Highlights
  21. </p>
  22. <span rel="300" class="lastbooking jq_tooltip" title="&lt;strong&gt;Double or Twin Room with Shower&lt;&#47;strong&gt; booked 1 day, 15 hours, 41 minutes ago">
  23. Latest Booking: May 4
  24. </span>
  25.   <span class="highlighted_facilities_reinforcement highlighted_facilities_property_reinforcement">
  26. <p class="filter_api_subtitle">
  27. </p>
  28. </span>
  29.   <span class="hp_usp_filter_api_el">
  30. <i class="b-sprite hotelfacility_id_96"></i>
  31. <span class="hp_usp_filter_api_text">
  32. Free WiFi
  33. </span>
  34.   </span>
  35.   <span class="hp_usp_filter_api_el">
  36. <i class="b-sprite hotelfacility_id_2"></i>
  37. <span class="hp_usp_filter_api_text">
  38. Free parking
  39. html;
  40.  
  41. $doc = new DOMDocument();
  42. $doc->loadHTML($html);
  43.  
  44. $xpathSummary = new DOMXPath($doc);
  45. echo ($xpathSummary->query("//div[@id='summary']")->item(0)->textContent);
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
 
      Offering a terrace and a lounge area, Abkhazskaya Usadba is located in Gagra, 500 metres from the Black Sea coast. Free WiFi and free private parking are available on site.
      The rooms feature a balcony, private entrance, air conditioning, a fridge, hairdryer and flat-screen TV.
      Guests can dine in the guest house’s canteen serving home made food.
      Gagra Train Station is 2 km away, and Sochi International Airport is 40 km from Abkhazskaya Usadba.