PHP 8.5.0 Alpha 4 available for testing

Voting

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

The Note You're Voting On

maskedcoder at hotmail dot com
19 years ago
useful for finding beginning of quotes and/or tags in a variable containing html.
$pos = strcspn($data, '<"\'');
will find the first occurance of either the beginning of a tag, or a double- or single-quoted string.

<< Back to user notes page

To Top