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


PHP manager::getNewLogootIns方法代碼示例

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


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

示例1: operationToLogootOp

/**
 *transforms a string operation from a patch page into a logoot operation
 * insertion or deletion
 * returns false if there is a problem with the type of the operation
 *
 * @param <String> $operation
 * @return <Object> logootOp
 */
function operationToLogootOp($operation)
{
    wfDebugLog('p2p', '@@@@@@@@@@@@@@@@@@@@@@@@@@@ - function operationToLogootOp : ' . $operation);
    $arr = array();
    $res = explode(';', $operation);
    foreach ($res as $key => $attr) {
        $res[$key] = trim($attr, " ");
    }
    //echo $operation." <--\n";
    //var_dump($res);
    $position = $res[2];
    $position = str_ireplace('(', '', $position);
    $position = str_ireplace(')', '', $position);
    $res1 = explode(' ', $position);
    foreach ($res1 as $id) {
        $id1 = explode(':', $id);
        $idArrray = new LogootId($id1[0], $id1[1], $id1[2]);
        $arr[] = $idArrray;
    }
    $logootPos = new LogootPosition($arr);
    /*$id1 = str_ireplace('(', '', $res[2]);
        $id2 = $res[3];
        $id3 = str_ireplace(')', '', $res[4]);
        $idArrray = new LogootId($id1, $id2, $id3);
        
    	echo $logootPos->toString();*/
    //    if(strpos($res[3], '-5B-5B')!==false || strpos($res[3], '-5D-5D')!==false) {
    //        $res[3] = utils::decodeRequest($res[3]);
    //    }
    $res[3] = utils::contentDecoding($res[3]);
    //    if($res[3]=="") $res[3]="\r\n";
    if ($res[1] == "Insert") {
        $logootOp = manager::getNewLogootIns($logootPos, $res[3]);
        //new LogootIns($logootPos, $res[3]);
    } elseif ($res[1] == "Delete") {
        $logootOp = manager::getNewLogootDel($logootPos, $res[3]);
        //new LogootDel($logootPos, $res[3]);
    } else {
        $logootOp = false;
    }
    //echo $logootOp;
    return $logootOp;
}
開發者ID:hala54,項目名稱:DSMW,代碼行數:51,代碼來源:IntegrationFunctions.php


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