|
oci_password_changeChanges password of Oracle's user Description
bool oci_password_change
( resource
$connection
, string $username
, string $old_password
, string $new_password
)
resource oci_password_change
( string
$dbname
, string $username
, string $old_password
, string $new_password
)
Changes password for user with The oci_password_change function is most useful for PHP command-line scripts, or when non-persistent connections are used throughout the PHP application. Parameters
Return Values
Returns Examples
Example #1 oci_password_change example changing the password of an already connected user
<?php
Example #2 oci_password_change example of connecting and changing the password in one step
<?php Notes
|