文字

ibase_modify_user

(PHP 5)

ibase_modify_userModify a user to a security database

说明

bool ibase_modify_user ( resource $service_handle , string $user_name , string $password [, string $first_name [, string $middle_name [, string $last_name ]]] )
Warning

本函数还未编写文档,仅有参数列表。

返回值

成功时返回 TRUE , 或者在失败时返回 FALSE

参见

  • ibase_add_user() - Add a user to a security database
  • ibase_delete_user() - Delete a user from a security database

用户评论:

[#1] admin at systecdurango dot com [2011-08-09 20:16:19]

ibase microsip firebird

<?php
$user_name
="ABC";
$password="123";
 
 
$ibserv ibase_service_attach("localhost","SYSDBA","masterkey");
ibase_modify_user($ibserv$user_name$password);
ibase_service_detach($ibserv);
?>


 this change te password por user ABC to 123

SYSDBA USER AND PASSWORD IS NEED TO THIS LINE

<?php $ibserv ibase_service_attach("localhost","SYSDBA","masterkey"); ?>

[#2] _ex at navigators dot lv [2005-01-24 01:11:26]

function changed in php 5! in earlier versions the syntax was:
bool ibase_modify_user ( string server, string dba_user_name, string dba_user_password, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])

now it's necessary to connect to service manager, then call ibase_modify_user() and then disconnect from service manager:
    $ibserv = ibase_service_attach($host, $dba_username, $dba_password);
    ibase_modify_user($ibserv, $user_name, $password);
    ibase_service_dettach($ibserv);

上一篇: 下一篇: