當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Parameter::NewInstance方法代碼示例

本文整理匯總了PHP中Parameter::NewInstance方法的典型用法代碼示例。如果您正苦於以下問題:PHP Parameter::NewInstance方法的具體用法?PHP Parameter::NewInstance怎麽用?PHP Parameter::NewInstance使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Parameter的用法示例。


在下文中一共展示了Parameter::NewInstance方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: reParseParameters

 /**
  * @return void
  */
 private function reParseParameters()
 {
     $aDataToReParse = $this->CloneAsArray();
     $sCharset = \MailSo\Base\Enumerations\Charset::UTF_8;
     $this->clear();
     $aPreParams = array();
     foreach ($aDataToReParse as $oParam) {
         $aMatch = array();
         $sParamName = $oParam->Name();
         if (preg_match('/([^\\*]+)\\*([\\d]{1,2})\\*/', $sParamName, $aMatch) && isset($aMatch[1], $aMatch[2]) && 0 < strlen($aMatch[1]) && is_numeric($aMatch[2])) {
             if (!isset($aPreParams[$aMatch[1]])) {
                 $aPreParams[$aMatch[1]] = array();
             }
             $sValue = $oParam->Value();
             $aValueParts = explode('\'\'', $sValue, 2);
             if (is_array($aValueParts) && 2 === count($aValueParts) && 0 < strlen($aValueParts[1])) {
                 $sCharset = $aValueParts[0];
                 $sValue = $aValueParts[1];
             }
             $aPreParams[$aMatch[1]][(int) $aMatch[2]] = $sValue;
         } else {
             if (preg_match('/([^\\*]+)\\*/', $sParamName, $aMatch) && isset($aMatch[1])) {
                 if (!isset($aPreParams[$aMatch[1]])) {
                     $aPreParams[$aMatch[1]] = array();
                 }
                 $sValue = $oParam->Value();
                 $aValueParts = explode('\'\'', $sValue, 2);
                 if (is_array($aValueParts) && 2 === count($aValueParts) && 0 < strlen($aValueParts[1])) {
                     $sCharset = $aValueParts[0];
                     $sValue = $aValueParts[1];
                 }
                 $aPreParams[$aMatch[1]][0] = $sValue;
             } else {
                 $this->Add($oParam);
             }
         }
     }
     foreach ($aPreParams as $sName => $aValues) {
         ksort($aValues);
         $sResult = implode(array_values($aValues));
         $sResult = urldecode($sResult);
         if (0 < strlen($sCharset)) {
             $sResult = \MailSo\Base\Utils::ConvertEncoding($sResult, $sCharset, \MailSo\Base\Enumerations\Charset::UTF_8);
         }
         $this->Add(Parameter::NewInstance($sName, $sResult));
     }
 }
開發者ID:afterlogic,項目名稱:mailso,代碼行數:50,代碼來源:ParameterCollection.php

示例2: createNewMessageMixedBody

 /**
  * @param \MailSo\Mime\Part $oIncPart
  *
  * @return \MailSo\Mime\Part
  */
 private function createNewMessageMixedBody($oIncPart)
 {
     $oResultPart = null;
     $aAttachments = $this->oAttachmentCollection->UnlinkedAttachments();
     if (0 < count($aAttachments)) {
         $oResultPart = Part::NewInstance();
         $oResultPart->Headers->AddByName(\MailSo\Mime\Enumerations\Header::CONTENT_TYPE, \MailSo\Mime\Enumerations\MimeType::MULTIPART_MIXED . '; ' . ParameterCollection::NewInstance()->Add(Parameter::NewInstance(\MailSo\Mime\Enumerations\Parameter::BOUNDARY, $this->generateNewBoundary()))->ToString());
         $oResultPart->SubParts->Add($oIncPart);
         foreach ($aAttachments as $oAttachment) {
             $oResultPart->SubParts->Add($this->createNewMessageAttachmentBody($oAttachment));
         }
     } else {
         $oResultPart = $oIncPart;
     }
     return $oResultPart;
 }
開發者ID:pkdevboxy,項目名稱:webmail-lite,代碼行數:21,代碼來源:Message.php


注:本文中的Parameter::NewInstance方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。