©
Dokumen ini menggunakan Manual laman web PHP Cina Lepaskan
(PECL tokyo_tyrant >= 0.1.0)
TokyoTyrantTable::out — Remove records
$keys
)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
$tt = new TokyoTyrantTable ( "localhost" , 1979 );
$index = $tt -> put ( null , array( "column1" => "some data" , "column2" => "more data" ));
$tt -> out ( $index );
?>