convertValuesToMetaModels() 공개 정적인 메소드

The output array will have the following layout: array( 'bin' => array() // list of the binary ids. 'value' => array() // list of the uuids. 'path' => array() // list of the paths. )
public static convertValuesToMetaModels ( array $values ) : array
$values array The binary uuid values to convert.
리턴 array
예제 #1
0
 /**
  * Take the raw data from the DB column and unserialize it.
  *
  * @param mixed $value The array of data from the database.
  *
  * @return array
  */
 public function unserializeData($value)
 {
     return ToolboxFile::convertValuesToMetaModels(deserialize($value, true));
 }