假设你有这么一个关联数组:
// original array
$user = [
'age' => 45,
'email' => 'john@doe.com',
'last_login' => '2016-10-21',
'name' => 'John Doe'
];
而你希望按这样的键序来排序:
Web曾经以服务器为中心,因为Web内容管理系统管理数据并将其转换为HTML响应。随着无头架构 的兴起,Web的一部分正变得以服务器为中心,以数据为中心,而以客户端为中心,使其呈现。越来越多的数据在浏览器中呈现为HTML。
责任的转移产生了JavaScript框架,而在服务器端,它导致了JSON:API和GraphQL的发展,以更好地为这些JavaScript应用程序提供内容和数据。
这个问题通常出现在drupal8目录下,执行composer update命令时,因内存不足导致composer进程被killed掉。
网站一些链接点击后出现502错误,查看nginx error日志,里面有一句:
upstream sent too big header while reading response header from upstream
太大的头?drupal返回太大的头给nginx了,于是在nginx里添加以下配置。
Drupal 迁移包括三个环节:source / process / destination,每个环节都分别可以对数据进行加工处理。
Source
drupal内核包含自带两个source plugin,Embed data和sql source。Embed data是在代码内直接键入数据,主要用于前期测试;sql source是从sql数据库读取数据。
Process
Process环节主要是指定源数据字段与目标数据字段的映射关系。
这是drupal 8 的一个bug:Custom blocks cannot be properly exported and imported
如果我们的区块布局中有自定义区块,当我们导出开发环境的配置(drush cex)到生产环境(drush cim)时,会覆盖生产环境的区块布局,导致页面有自定义区块的位置会出现“broken block”字样。
为此drupal官网有两个模块各自都可以解决这个问题。
It has been a few months since Drupal 8 was released and sites built with it are starting to crop up. I myself have had the pleasure of working with it, and more Drupal 8 projects are certainly on the horizon.