2.使用内置OO接口方式调用:
query('SELECT Name, Population FROM City ORDER BY Population DESC LIMIT 5')) { print("Very large cities are:n"); /* Fetch the results of the query */ while( $row = $result->fetch_assoc() ){ printf("%s (%s)n", $row['Name'], $row['Population']); } /* Destroy the result set and free the memory used for it */ $result->close(); } /* Close the connection */ $mysqli->close(); ?>
支持的新特性还有:Bound Parameters,Bound Results等。。
有兴趣的可以直接去参看原英文:
http://www.zend.com/php5/articles/php5-mysqli.php#fn3
注:感觉这个不是对所有人都有用。不过。。相信可以帮助大家多了解些“变化”,能更好的把握“趋势” 8-)