CodeIgniter rename email attachment file
问题 I have CodeIgniter script for sending email with attachments. $this->ci->email->attach("/path/to/file/myjhxvbXhjdSycv1y.pdf"); It works great, but I have no idea, how rename attached file to some more user-friendly string? 回答1: CodeIgniter v3.x This feature has been added since CI v3: /** * Assign file attachments * * @param string $file Can be local path, URL or buffered content * @param string $disposition = 'attachment' * @param string $newname = NULL * @param string $mime = '' * @return