flatten_props() 공개 메소드

Convert complex objects to strings to insert into the database.
public flatten_props ( array $props ) : array
$props array
리턴 array
예제 #1
0
 /**
  * Convert complex objects to strings to insert into the database.
  *
  * @param  array $props
  * @return array
  */
 public function flatten_props($props)
 {
     unset($props['meta']);
     return parent::flatten_props($props);
 }