PHP 中的 execute()
时间: 2024-11-06 18:18:32 浏览: 3
在PHP中,并没有名为`execute()`的内置函数。你可能是在提到`mysqli_query()`、`PDOStatement::execute()`或类似的操作数据库的函数。例如,在MySQLi扩展中,`mysqli_query()`函数用于执行SQL查询:
```php
<?php
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "myDB";
// 创建连接
$conn = new mysqli($servername, $username, $password, $dbname);
// 检查连接
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// 执行SQL查询
$sql = "SELECT id, firstname, lastname FROM MyGuests";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
// 输出数据
while($row = $result->fetch_assoc()) {
echo "id: " . $row["id"]. " - Name: " . $row["firstname"]. " " . $row["lastname"]. "<br>";
}
} else {
echo "0 results";
}
// 关闭连接
$conn->close();
?>
```
这里的`execute()`实际上是指SQL查询的执行部分,它返回的是结果集。
阅读全文