我正在尝试将Outlook中的附件提取并保存到本地文件夹,并且正在使用以下脚本来完成工作。
if ( WP_DEBUG ) {
mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
} else {
@mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags );
}
当我运行此脚本时,没有出现任何错误,但该脚本无法正常工作。
请提出任何建议!