$attachments = $v->upload_photo(0, array('1.jpg'));
// публикация на стене
$response = $v->wall->post(array(
'message'=>'test 1.jpg',
'from_group' => '1',
'owner_id' => "-12333333", // с минусом - от группы
'attachments' => implode(',', $attachments)
)
);