php Array Assoc默认值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php Array Assoc默认值相关的知识,希望对你有一定的参考价值。

<?php

$default = [
  'title',
  'editor',
  'author',
  'thumbnail',
  'excerpt',
  'trackbacks',
  'custom-fields',
  'comments',
  'revisions',
  'post-formats'
];


$custom = [
  'aggiunto',
  'revisions' => false
];

function arrayAssocDefault( $default, $merge )
{
  
  $add = [];
  $del = [];
  
  foreach( $merge as $key => $value ) {
    if( is_numeric( $key ) && ! is_bool( $value ) ) {
      $add[] = $value;
    }
    elseif( ! is_numeric( $key ) && is_bool( $value ) && $value === false ) {
      $del[] = $key;
    }
  }
  
  $result = array_unique( array_merge( array_diff( $default, $del ), $add ) );
  
  return $result;  
}


$array = arrayAssocDefault( $default, $custom );

var_dump( $array );

/*

array(10) {
  [0] =>
  string(5) "title"
  [1] =>
  string(6) "editor"
  [2] =>
  string(6) "author"
  [3] =>
  string(9) "thumbnail"
  [4] =>
  string(7) "excerpt"
  [5] =>
  string(10) "trackbacks"
  [6] =>
  string(13) "custom-fields"
  [7] =>
  string(8) "comments"
  [8] =>
  string(12) "post-formats"
  [9] =>
  string(8) "aggiunto"
}

*/



以上是关于php Array Assoc默认值的主要内容,如果未能解决你的问题,请参考以下文章

43)PHP,mysql_fetch_row 和mysql_fetch_assoc和mysql_fetch_array

php PHP Sort Assoc Array Asc示例

php is_assoc_array

关于php的array_diff和array_diff_assoc的使用总结

PHP数组函数总结

PHP中mysql_fetch_row()mysql_fetch_assoc()和mysql_fetch_array()的联系