January 31, 2014

PHP Regular Expressions to Extract Images from HTML Content

PHP Regular Expressions to Extract Images from HTML Content //preg_match_all(‘/<img[^>]+>/i’, $description, $img); //preg_match_all(‘/src=”([^”]*)”/’, $description, $img); preg_match_all(‘@<img.*src=”([^”]*)”[^>/]*/?>@Ui’, $description, $img);

January 2, 2014

I am a Software Engineer or I am a PHP Developer

I am a Software Engineer or I am a PHP Developer This was an obvious question among my circle whenever i met with a colleague who was developing applications in PHP. It was hard to explain that if someone is good in R&D or by any means can develop a good application so he is […]