From 6a8de98e72c431efb65af81d5f99173049f74883 Mon Sep 17 00:00:00 2001 From: XinHui Long Date: Mon, 17 Jul 2017 20:39:56 +0800 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9b7b2a11..cda7caa0 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ xhprof.output_dir = /tmp/xhprof ``` # Added -#### PDO::prepare +### PDO::prepare Convert preprocessing placeholders for actual parameters, more intuitive analytic performance (does not change the zend execution process) ```php $_sth = $db->prepare("SELECT * FROM user where userid = :id and username = :name"); @@ -37,7 +37,7 @@ PDOStatement::execute#SELECT * FROM user where userid = 1 and username = admin PDOStatement::execute#SELECT * FROM user where userid = 1 ``` -#### curl +### Curl ```php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, "http://www.baidu.com");