Skip to content

Instantly share code, notes, and snippets.

@simplyniceweb
Last active June 18, 2016 07:10
Show Gist options
  • Save simplyniceweb/ca01e3ed0bf78d0c60273a11fc079bc8 to your computer and use it in GitHub Desktop.
Save simplyniceweb/ca01e3ed0bf78d0c60273a11fc079bc8 to your computer and use it in GitHub Desktop.
text explode
<?php
$str = 'title:{1-2 Bedrooms Apartment for Rent}:description:{1 Bedroom: $700/month / 2 Bedroom: $900/month<br />Bedrooms:1<br />Bathrooms:1<br />Floor:E6<br />LD329<br />http://www.lambdakh.com/.../apartment-for-rent-in.../<br type="_moz" />}:meta_title:{}:meta_key:{}:meta_des:{}:';
$explode = explode("}:", $str);
foreach ($explode as $val) {
if (empty($val)) {
continue;
}
$explodeTwo = explode(":{", $val);
if (isset($explodeTwo[1])) {
echo strip_tags($explodeTwo[1]) . "<br>";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment