PHP
- 6 ответов
- 0 вопросов
5
Вклад в тег
vector<vector<int>>
- для единичных реберvector<vector<pair<int,int>>>
- для не единичных реберfor(int i =0; i < n; i++){
for(int j=0; j < m; j++){
v[i].push_back(make_pair(j,weight));
}
}
v[i][j].first
- куда, v[i][j].second
- за сколько $form = $this->getServiceLocator()->get('FormElementManager')->get('Blog\Form\Post');
if($this->params()->fromPost()){
$form->setData($this->params()->fromPost());
if($form->isValid()){
$service = $this->getServiceLocator()->get('Blog\Service\Post');
$post = $service->createPost($form->getData());
$this->flashMessenger()->addSuccessMessage($this->translate('Сообщение'));
$this->redirect()->toRoute('blog/post',['post' => $post->getId()]);
}
}
return new ViewModel(['form' => $form]);
$resultArray = [];
for($i = 0; $i< count($array); $i++){
$resultArray[$array[$i]['COUNTER-ID']] = $i;
}
echo $resultArray[14]; // последний ключ в массиве для COUNTER-ID == 14
echo $array[$resultArray[14]]['VALUE']; //значение VALUE для последнего Counter-id == 14