©
このドキュメントでは、 php中国語ネットマニュアル リリース
(PHP 5)
ibase_add_user — Add a user to a security database
$service_handle
, string $user_name
, string $password
[, string $first_name
[, string $middle_name
[, string $last_name
]]] )本函数还未编写文档,仅有参数列表。
成功时返回 TRUE
, 或者在失败时返回 FALSE
。
[#1] pabloj [2006-04-12 02:10:45]
You can create users on Firebird/Interbase this way:
<?php
// attach to the server with proper privileges
if (($service = ibase_service_attach('localhost', 'sysdba', 'masterkey')) != FALSE) {
// get server version and implementation strings
$server_info = ibase_server_info($service, IBASE_SVC_SERVER_VERSION)
. ' / '
. ibase_server_info($service, IBASE_SVC_IMPLEMENTATION);
//ibase_service_detach($service);
}
else {
$ib_error = ibase_errmsg();
}
echo $server_info;
//add a new user with name 'pippo' and password 'pp'
if (($result = ibase_add_user($service, 'pippo', 'pp')) != FALSE) {
echo 'User created';
ibase_service_detach($service);
}
else {
$ib_error = ibase_errmsg();
//detach from server
ibase_service_detach($service);
}
?>