PHP 8.5.0 Beta 1 available for testing

Voting

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

The Note You're Voting On

carlos at wfmh dot org dot pl dot REMOVE dot COM
15 years ago
Mind it does not escape ! (exclamation mark). So if you want to i.e. printf() commands for later use in shell (i.e. by pasting to the console) you need to escape all exclamation marks or shell will try to process ! as history reference. This approach shall suffice:

<?php $scaped = str_replace('!', '\!', escapeshellarg( $str ) ); ?>

<< Back to user notes page

To Top