Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save raihan-uddin/8fb840f888f7ee8e9840eea48dd2a67e to your computer and use it in GitHub Desktop.
Save raihan-uddin/8fb840f888f7ee8e9840eea48dd2a67e to your computer and use it in GitHub Desktop.
PHP : Remove URLs from string
$fh = fopen("contacts.csv", "r");
while($line = fgetcsv($fh, 1000, ",")) {
echo "Contact: {$line[1]}";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment