|
oci_password_changeChanges password of Oracle's user Beschreibung
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. Parameter-Liste
Rückgabewerte
Gibt bei Erfolg Beispiele
Beispiel #1 oci_password_change example changing the password of an already connected user
<?php
Beispiel #2 oci_password_change example of connecting and changing the password in one step
<?phpAnmerkungen
|