|
#!/usr/local/php/bin/php |
|
| 1 |
<? |
<? |
| 2 |
if (!isset($_SERVER["argc"])) |
if (!isset($_SERVER["argc"])) |
| 3 |
$_SERVER["argc"] = 0; |
$_SERVER["argc"] = 0; |
| 32 |
strftime("%b %d %H:%M:%S", strtotime($row["sub_dt"])), |
strftime("%b %d %H:%M:%S", strtotime($row["sub_dt"])), |
| 33 |
str_repeat(" ", 16 - strlen($row["username"])), |
str_repeat(" ", 16 - strlen($row["username"])), |
| 34 |
$row["username"], substr($row["title"],0,60), |
$row["username"], substr($row["title"],0,60), |
| 35 |
str_repeat(" ", 60 - strlen($row["title"])) |
str_repeat(" ", 60 - strlen($row["title"]) >=0 ? 60 - strlen($row["title"]) : 0) |
| 36 |
); |
); |
| 37 |
} |
} |
| 38 |
|
|