我正在尝试制作一个脚本,该脚本会自动从该地址上的 WordPress 的 API 服务复制整个内容,并将其粘贴到 wp-config.php 中,替换现有的行:
45: define('AUTH_KEY', 'put your unique phrase here');
46: define('SECURE_AUTH_KEY', 'put your unique phrase here');
47: define('LOGGED_IN_KEY', 'put your unique phrase here');
48: define('NONCE_KEY', 'put your unique phrase here');
49: define('AUTH_SALT', 'put your unique phrase here');
50: define('SECURE_AUTH_SALT', 'put your unique phrase here');
51: define('LOGGED_IN_SALT', 'put your unique phrase here');
52: define('NONCE_SALT', 'put your unique phrase here');
最好的方法是什么?