別のサーバーから wp-config データベース、ユーザー、およびパスを取得する関数が必要です。
私はこれを見つけましたが、同じ cpanel アカウントでしか機能しません。この値を取得する方法はありますか?
$f = "/home/".$ac["user"]."/www/wp/wp-config.php";
if(file_exists($f)) {
$c = file_get_contents($f);
preg_match('/define.*DB_NAME.*\'(.*)\'/', $c, $m);
$dbname = $m[1];
preg_match('/define.*DB_USER.*\'(.*)\'/', $c, $m);
$dbuser = $m[1];
preg_match('/define.*DB_PASSWORD.*\'(.*)\'/', $c, $m);
$dbpass = $m[1];
preg_match('/define.*DB_HOST.*\'(.*)\'/', $c, $m);
$dbhost = $m[1];