解析错误:第 3 行出现语法意外 T_STRING。
<?php
class AttachmentEmail {
private $from = 'noreply@site.com';
private $from_name = 'Site';
private $reply_to = 'noreply@site.com';
private $to = '';
private $subject = '';
private $message = '';
private $attachment = '';
private $attachment_filename = '';
}
?>