|
update : 2015.11.03
php.shukuma.com검색:
|
cubrid_drop(PECL CUBRID >= 8.3.0) cubrid_drop — Delete an instance using OID 설명
bool cubrid_drop
( resource
$conn_identifier
, string $oid
)
The cubrid_drop() function is used to delete an
instance from database by using the 인수
반환값
예제Example #1 cubrid_drop() example
<?php위 예제의 출력:
--- Before Drop: ---
array(4) {
["a"]=>
string(1) "1"
["b"]=>
array(3) {
[0]=>
string(1) "1"
[1]=>
string(1) "2"
[2]=>
string(1) "3"
}
["c"]=>
array(4) {
[0]=>
string(2) "11"
[1]=>
string(2) "22"
[2]=>
string(2) "33"
[3]=>
string(3) "333"
}
["d"]=>
string(10) "a "
}
--- After Drop: ---
array(4) {
["a"]=>
string(1) "2"
["b"]=>
array(3) {
[0]=>
string(1) "4"
[1]=>
string(1) "5"
[2]=>
string(1) "7"
}
["c"]=>
array(4) {
[0]=>
string(2) "44"
[1]=>
string(2) "55"
[2]=>
string(2) "66"
[3]=>
string(3) "666"
}
["d"]=>
string(10) "b "
}
|