Sposób, w jaki procedury składowane działają z przygotowanymi instrukcjami, jest nieco bardziej skomplikowany. Podręcznik PHP stwierdza, że musisz używać zmiennych sesji (sesje MySQL, nie PHP)
Więc możesz to zrobić za pomocą
$connect=&ConnectDB();
// bind the first parameter to the session variable @uid
$stmt = $connect->prepare('SET @uid := ?');
$stmt->bind_param('s', $uid);
$stmt->execute();
// bind the second parameter to the session variable @userCount
$stmt = $connect->prepare('SET @userCount := ?');
$stmt->bind_param('i', $userCount);
$stmt->execute();
// execute the stored Procedure
$result = $connect->query('call IsUserPresent(@uid, @userCount)');
// getting the value of the OUT parameter
$r = $connect->query('SELECT @userCount as userCount');
$row = $r->fetch_assoc();
$toRet = ($row['userCount'] != 0);
Uwaga:
Polecam przepisać tę procedurę jako funkcję z jednym parametrem IN, który zwraca INT.