for file in *.php
do
    iconv -f ISO-8859-1 -t UTF-8//TRANSLIT -o "$file.new" "$file" &&
    mv -f "$file.new" "$file"
done