略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: TokyoTyrantTable::out

2024-04-26

TokyoTyrantTable::out

(PECL tokyo_tyrant >= 0.1.0)

TokyoTyrantTable::outRemove records

说明

public TokyoTyrantTable::out ( mixed $keys ) : void

Removes records from a table database.

参数

keys

A single integer key or an array of integers

返回值

This method returns the current object and throws TokyoTyrantException on failure.

范例

Example #1 TokyoTyrantTable::out() example

<?php
/* Connect to a table database */
$tt = new TokyoTyrantTable("localhost"1979);

/* Passing null to put generates a new uid */
$index $tt->put(null, array("column1" => "some data""column2" => "more data"));

/* Delete the row */
$tt->out($index);
?>

参见

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/tokyotyranttable.out.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3