SaveAll Get All Id Save Cakephp

[Solved] SaveAll Get All Id Save Cakephp | Php Frameworks Cakephp - Code Explorer | yomemimo.com
Question : saveAll get all id save cakephp

Answered by : vi-ly

public $saved_ids = array(	'insert' => array(	'count' => 0, 'id' => array()	),	'update' => array(	'count' => 0, 'id' => array()	) );
function afterSave( $created, $options = array() ){	if( $created ){	$this->saved_ids['insert']['count']++;	$this->saved_ids['insert']['id'][] = $this->getID();	// get insert lasted id into database (vilh)	} else {	$this->saved_ids['update']['count']++;	$this->saved_ids['update']['id'][] = $this->getID();	}	return $this->saved_ids;	}
if ($this->MemberBookFacility->saveAll($data_MemberBookFacility)) {	pr ($this->MemberBookFacility->saved_ids['insert']['id']);	// get multiple ids
}

Source : | Last Update : Thu, 18 Mar 21

Answers related to saveAll get all id save cakephp

Code Explorer Popular Question For Php Frameworks Cakephp