The official website introduces that the execute of pdo is bound with a named parameter, but it does not contain a colon.

Source: Internet
Author: User
Then I write it like this: you can execute it without a colon.

Then I write:


It can also be executed without a colon.

Reply content:

Then I write:


It can also be executed without a colon.

There are two methods for executing the query when the PDO pre-processing is bound to a parameter:

One is "question mark placeholder" (from left to right, with one-to-one correspondence ):

$ Stmt = $ db-> prepare ('update posts SET post_title = ?, Post_content =? WHERE id =? '); $ Stmt-> execute (array ($ title, $ content, $ id); // All values are treated as PDO: PARAM_STR

One is "nameplaceholder ":

$ Stmt = $ db-> prepare ('update posts SET post_title =: title, post_content =: content WHERE id =: ID'); $ stmt-> execute (array (': title '=> $ title,': content' => $ content, ': ID' => $ id); // All values are treated as PDO: PARAM_STR

Which of the following methods can be used to omit the colon? however, we recommend that you do more insurance as described in the official document.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.