Get emails from each docx file in directory using php -
this question has answer here:
hi, making job portal in user upload multiple resumes contain emails , phone numbers there way email .docx file using php
first u must read docx file.please refer reading doc file in php
then using
$emailreg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/; $match = preg_match($emailreg, $your_text);
the matches give desired output.
Comments
Post a Comment