From d52a02e6efef3e655a940e11af781317819384cc Mon Sep 17 00:00:00 2001 From: XinHui Long Date: Fri, 28 Jul 2017 11:11:32 +0800 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index cda7caa0..44020be8 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,18 @@ xhprof.output_dir = /tmp/xhprof ``` # Added +### PDO::exec +### PDO::query +### mysqli_query +```php +$mysqli = new mysqli("localhost", "my_user", "my_password", "user"); +$result = $mysqli->query("SELECT * FROM user LIMIT 10"); +``` +##### Output data +``` +mysqli::query#SELECT * FROM user LIMIT 10 +``` + ### PDO::prepare Convert preprocessing placeholders for actual parameters, more intuitive analytic performance (does not change the zend execution process) ```php