PHP 8.5.0 Alpha 4 available for testing

Voting

: min(six, zero)?
(Example: nine)

The Note You're Voting On

zeebinz at gmail dot com
15 years ago
Note that this also works with positional placeholders using the '?' token:

<?php

$stmt
= $db->prepare('SELECT * FROM mytable WHERE foo = ? AND bar = ?');
$stmt->bindValue(1, 'somestring', SQLITE3_TEXT);
$stmt->bindValue(2, 42, SQLITE3_INTEGER);

?>

Positional numbering starts at 1.

<< Back to user notes page

To Top