Questo errore stai ricevendo:
SQLSTATE[HY093]:Numero parametro non valido:parametro non definito
è perché il numero di elementi in $values
&$matches
non è lo stesso o $matches
contiene più di 1 elemento.
Se $matches
contiene più di 1 elemento, l'inserimento avrà esito negativo, poiché nella query viene fatto riferimento solo a 1 nome di colonna (hash
)
Se $values
&$matches
non contengono lo stesso numero di elementi, quindi anche l'inserimento fallirà, a causa della query che prevede x parametri ma sta ricevendo y dati $matches
.
Credo che dovrai anche assicurarti che anche l'hash della colonna abbia un indice univoco.
Prova il codice qui :
<?php
/*** mysql hostname ***/
$hostname = 'localhost';
/*** mysql username ***/
$username = 'root';
/*** mysql password ***/
$password = '';
try {
$dbh = new PDO("mysql:host=$hostname;dbname=test", $username, $password);
/*** echo a message saying we have connected ***/
echo 'Connected to database';
}
catch(PDOException $e)
{
echo $e->getMessage();
}
$matches = array('1');
$count = count($matches);
for($i = 0; $i < $count; ++$i) {
$values[] = '?';
}
// INSERT INTO DATABASE
$sql = "INSERT INTO hashes (hash) VALUES (" . implode(', ', $values) . ") ON DUPLICATE KEY UPDATE hash='hash'";
$stmt = $dbh->prepare($sql);
$data = $stmt->execute($matches);
//Error reporting if something went wrong...
var_dump($dbh->errorInfo());
?>
Dovrai adattarlo un po'.
La struttura della tabella che ho usato è qui :
CREATE TABLE IF NOT EXISTS `hashes` (
`hashid` int(11) NOT NULL AUTO_INCREMENT,
`hash` varchar(250) NOT NULL,
PRIMARY KEY (`hashid`),
UNIQUE KEY `hash1` (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Il codice è stato eseguito sul mio server XAMPP che utilizza PHP 5.3.8 con MySQL 5.5.16.