Voting

: min(eight, four)?
(Example: nine)

The Note You're Voting On

jewfish at jewfish dot net
23 years ago
There is a simpler way to do a multiline read than above:

function multiline() {
while(($in = readline("")) != ".")
$story .= ($PHP_OS == "WINNT") ? "\r\n".$in :
"\n".$in;

return $story;
}

<< Back to user notes page

To Top