Voting

: max(seven, three)?
(Example: nine)

The Note You're Voting On

wijnand at jpresult dot nl
11 years ago
Here's a quick and dirty replacement of this function in case you need to deal with special characters.

<?php
/**
* An ugly, non-ASCII-character safe replacement of escapeshellarg().
*/
function escapeshellarg_special($file) {
return
"'" . str_replace("'", "'\"'\"'", $file) . "'";
}
?>

<< Back to user notes page

To Top