本文整理匯總了PHP中Git::validateObjectID方法的典型用法代碼示例。如果您正苦於以下問題:PHP Git::validateObjectID方法的具體用法?PHP Git::validateObjectID怎麽用?PHP Git::validateObjectID使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Git
的用法示例。
在下文中一共展示了Git::validateObjectID方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Git
<?php
require __DIR__ . '/git.php';
$repo = new Git($_REQUEST['r']);
$oid = $_REQUEST['o'];
$repo->validateObjectID($oid);
$path = htmlspecialchars($_REQUEST['p'], ENT_QUOTES, 'UTF-8');
$data = str_replace("\t", ' ', str_replace('<', '<', str_replace('>', '>', $repo->catFile($oid))));
if (preg_match('/\\.d$/', $path)) {
$syntax = array('type' => array('auto', 'body', 'bool', 'byte', 'cdouble', 'cent', 'cfloat', 'char', 'creal', 'dchar', 'double', 'float', 'idouble', 'ifloat', 'int', 'ireal', 'long', 'real', 'short', 'ubyte', 'ucent', 'uint', 'ulong', 'ushort', 'void', 'wchar'), 'keyword' => array('abstract', 'alias', 'align', 'asm', 'assert', 'auto', 'body', 'bool', 'break', 'byte', 'case', 'cast', 'catch', 'cdouble', 'cent', 'cfloat', 'char', 'class', 'const', 'continue', 'creal', 'dchar', 'debug', 'default', 'delegate', 'delete', 'deprecated', 'do', 'double', 'else', 'enum', 'export', 'extern', 'false', 'final', 'finally', 'float', 'for', 'foreach', 'foreach_reverse', 'function', 'goto', 'idouble', 'if', 'ifloat', 'immutable', 'import', 'in', 'inout', 'int', 'interface', 'invariant', 'ireal', 'is', 'lazy', 'long', 'macro (unused)', 'mixin', 'module', 'new', 'nothrow', 'null', 'out', 'override', 'package', 'pragma', 'private', 'protected', 'public', 'pure', 'real', 'ref', 'return', 'scope', 'shared', 'short', 'static', 'struct', 'super', 'switch', 'synchronized', 'template', 'this', 'throw', 'true', 'try', 'typedef', 'typeid', 'typeof', 'ubyte', 'ucent', 'uint', 'ulong', 'union', 'unittest', 'ushort', 'version', 'void', 'volatile', 'wchar', 'while', 'with', '__FILE__', '__MODULE__', '__LINE__', '__FUNCTION__', '__PRETTY_FUNCTION__', '__gshared', '__traits', '__vector', '__parameters'), 'token' => array('/', '/=', '.', '..', '...', '&', '&=', '&&', '|', '|=', '||', '-', '-=', '--', '+', '+=', '++', '<', '<=', '<<', '<<=', '<>', '<>=', '>', '>=', '>>=', '>>>=', '>>', '>>>', '!', '!=', '!<>', '!<>=', '!<', '!<=', '!>', '!>=', '(', ')', '[', ']', '{', '}', '?', ',', ';', ':', '$', '=', '==', '*', '*=', '%', '%=', '^', '^=', '^^', '^^=', '~', '~=', '@', '=>', '#'));
foreach ($syntax as $key => $list) {
usort($syntax[$key], function ($a, $b) {
return strlen($a) < strlen($b);
});
}
$src = $data;
$dst = '';
$context = null;
function syntax($class = null)
{
global $context, $dst;
if ($context != $class) {
if ($context) {
$dst .= '</code>';
}
$context = $class;
$dst .= "<code class=\"syntax-{$class}\">";
}
}
$patterns = array('type' => '/^(' . implode($syntax['type'], '|') . ')[^a-zA-Z_]/', 'keyword' => '/^(' . implode($syntax['keyword'], '|') . ')[^a-zA-Z_]/', 'token' => '{^(' . implode(array_map(function ($ptn) {
return preg_quote($ptn);