added original list gatherer
parent
0a161f6bef
commit
e86ec22e0a
|
@ -0,0 +1,13 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
echo '<pre>';
|
||||||
|
|
||||||
|
$mailmanHTML = file_get_contents( 'https://lists.hackerspace.lu/mailman/listinfo' );
|
||||||
|
|
||||||
|
$listPattern = '/<td><a href="listinfo\/(.*?)"><strong>/s';
|
||||||
|
|
||||||
|
preg_match_all( $listPattern, $mailmanHTML, $lists );
|
||||||
|
|
||||||
|
print_r( $lists[1] );
|
||||||
|
|
||||||
|
exit;
|
Loading…
Reference in New Issue