See Release Notes
Long Term Support Release
1 <?php 2 /** 3 * Copyright 2011-2017 Horde LLC (http://www.horde.org/) 4 * 5 * See the enclosed file LICENSE for license information (LGPL). If you 6 * did not receive this file, see http://www.horde.org/licenses/lgpl21. 7 * 8 * @category Horde 9 * @copyright 2011-2017 Horde LLC 10 * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 11 * @package Imap_Client 12 */ 13 14 /** 15 * Object containg POP3 fetch data. 16 * 17 * @author Michael Slusarz <slusarz@horde.org> 18 * @category Horde 19 * @copyright 2011-2017 Horde LLC 20 * @license http://www.horde.org/licenses/lgpl21 LGPL 2.1 21 * @package Imap_Client 22 */ 23 class Horde_Imap_Client_Data_Fetch_Pop3 extends Horde_Imap_Client_Data_Fetch 24 { 25 /** 26 * Set UID. 27 * 28 * @param string $uid The message UID. Unlike IMAP, this UID does not 29 * have to be an integer. 30 */ 31 public function setUid($uid) 32 { 33 $this->_data[Horde_Imap_Client::FETCH_UID] = strval($uid); 34 } 35 36 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body