php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #77373 The "bind_param" is called too early in examples, the variable is undefined
Submitted: 2018-12-30 10:08 UTC Modified: 2018-12-30 10:11 UTC
From: buughost+php at gmail dot com Assigned:
Status: Not a bug Package: Documentation problem
PHP Version: 7.3.0 OS: WIN10
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem:
45 - 11 = ?
Subscribe to this entry?

 
 [2018-12-30 10:08 UTC] buughost+php at gmail dot com
Description:
------------
---
From manual page: https://php.net/mysqli-stmt.get-result
---

In both examples:

// Not a variable : $continent
$stmt->bind_param("s", $continent);

$continent_array = array('Europe','Africa','Asia','North America');

// Here it is:
foreach($continent_array as $continent)


  $stmt->execute(); // Just executing the same query multiple times
  $result = $stmt->get_result();
  while ($row = $result->fetch_array(MYSQLI_NUM))
  {


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2018-12-30 10:11 UTC] requinix@php.net
-Status: Open +Status: Not a bug
 [2018-12-30 10:11 UTC] requinix@php.net
No, the code is correct. bind_param takes variables by-reference which means they do not have to exist at the time the method is called. The query will use the values of the variables at the time execute() is called.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Fri Apr 19 15:01:28 2024 UTC