PHP
- 5 ответов
- 0 вопросов
4
Вклад в тег
"repositories": [
{
"type": "git",
"url": "....git"
}
]
data: {access_token:'1NLS4Os8zNwdeImN2hUUcaDpnTzNrfeM'}
use \Bitrix\Main\Data\cache;
$cache = cache::createInstance();
if( $cache->initCache( $ttl, $id, $id ) ){
$res = $cache->getVars();
$arRes = $res["arRes"];
}else{
$res = array();
try{
$cache->startDataCache( $ttl, $id, $id );
$cache->endDataCache( array(
"arRes" => $arRes
) );
}catch( SystemException $e ){
$cache->abortDataCache();
ShowError( $e->getMessage() );
}
}