function drupal_build_css_cache($css) {
$data = '';
$uri = '';
$map = variable_get('drupal_css_cache_files', array());
// Create a new array so that only the file names are used to create the hash.
// This prevents new aggregates from being created unnecessarily.
$css_data = array();
foreach ($css as $css_file) {
$css_data[] = $css_file['data'];
}
PHPのお知らせ:未定義のインデックス:ライン上のデータ3606 ライン3606ビーイング:$ css_data [] = $ css_file [ 'データ'];PHPのお知らせ:未定義のインデックス:
お知らせ:
そうでなければ、あなたが通知報告をオフにすることができます(あなたのコードの先頭に次の行を置く):あなたは最初それが設定されているかどうかを確認する必要があり未定義のインデックスを無視することができ、 foreach($ css as $ css_file_var => $ css_file_value)でsplit $ css_fileを無視したくない場合は、 –
まず、何が問題なのかを知りたいと思います。第二に、あなたが取り除きたいなら、この[Notice undefined index](http://stackoverflow.com/questions/12769982/reference-what-does-this-error-mean-in-php/12770836#12770836)を読んでください。エラー。 –
print_r $ css_fileを使用して、配列内で使用可能なインデックスを表示することができます。 –