php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #74415 This is incorrect $placeholder = substr(str_repeat('?,',count($keys),0,-1));
Submitted: 2017-04-11 13:05 UTC Modified: 2017-04-11 13:19 UTC
From: edcesar at edcesar dot com Assigned:
Status: Not a bug Package: Documentation problem
PHP Version: Irrelevant OS: all
Private report: No CVE-ID: None
 [2017-04-11 13:05 UTC] edcesar at edcesar dot com
Description:
------------
The example of user Rami jamleh is this:

$placeholder = substr(str_repeat('?,',count($keys),0,-1));

The correct would be:

$place_holders = substr(str_repeat('?,',count($keys)),0,-1);


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2017-04-11 13:06 UTC] edcesar at edcesar dot com
http://php.net/manual/pt_BR/pdostatement.execute.php
 [2017-04-11 13:15 UTC] bwoebi@php.net
-Type: Bug +Type: Documentation Problem
 [2017-04-11 13:19 UTC] peehaa@php.net
-Status: Open +Status: Not a bug -Type: Documentation Problem +Type: Bug
 [2017-04-11 13:19 UTC] peehaa@php.net
This is not a bug in the official docs, but in the user supplied notes.

I fixed it, but please note that people already commented on the fact that there was a mistake.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 20:01:28 2024 UTC