20 lines
323 B
PHP
20 lines
323 B
PHP
<?php
|
|
|
|
$members = [];
|
|
|
|
foreach (scandir("/home/") as $user) {
|
|
if (in_array($user, array('.', '..'))) continue;
|
|
|
|
$webring_file = "/home/$user/public_html/.webring";
|
|
|
|
if (is_file($webring_file)) {
|
|
array_push($members, ['name' => $user, 'url' => 'https://tylda.org/~'.$user]);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
return $members;
|
|
|
|
?>
|