[go: nahoru, domu]

PHP 8.4.0 RC4 available for testing

Voting

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

The Note You're Voting On

giz at gbdesign dot net
17 years ago
Just been caught out by stristr trying to converting the needle from an Int to an ASCII value.

Got round this by casting the value to a string.

<?php
if( !stristr( $file, (string) $myCustomer->getCustomerID() ) ) {
// Permission denied
}
?>

<< Back to user notes page

To Top