Likes Received By Technoslab

  1. HungryMinds liked Technoslab's post in the thread Need help with preg_replace.

    $query = "id, pic=>img, detail=>a, dt=>h, type, active"; $query = preg_replace("@=>[a-z]*@","",$query); echo $query;

    Aug 27, 2011
  2. Fl1p liked Technoslab's post in the thread Unzip and Rename Files.

    Try this: function unzip_rename($file){ if(is_file($file) && extension_loaded('zip')){ $z = new ZipArchive;...

    Aug 19, 2011
  3. j_o liked Technoslab's post in the thread Working with array results.

    Maybe try this: $content = str_replace(array('<h2>','</h2>'),array('',''),$content); For case insensitive replacement, try...

    Aug 16, 2011