Skip to content

Instantly share code, notes, and snippets.

View ttamna's full-sized avatar
🎯
Focusing

ttamna lee ttamna

🎯
Focusing
View GitHub Profile
<?php
$content = file_get_contents("http://wiki.akosma.com/IPhone_URL_Schemes");
preg_match_all('/(\w+):\/\//', $content, $matches, PREG_SET_ORDER);
$tmpSchemes = [];
foreach ($matches as $match) {
$tmpSchemes[$match[1]] = true;
}
$schemes = [];