gpt4 book ai didi

php - 如何在 Drupal 中缓存 PHP 生成的 XML 文件?

转载 作者:可可西里 更新时间:2023-11-01 00:50:41 24 4
gpt4 key购买 nike

我正在使用 ammap显示 map 。点击后,用户会得到一个最新的 Drupal 6 节点列表,这些节点标有各自的国家(分类法)。该列表由 View 生成。为此,我使用了基本的 ammap XML 代码,但我添加了一些 PHP 来包含 View ,即:

<?php
//set the working directory
chdir('..');
define('DRUPAL_ROOT', getcwd());

//Load Drupal
require_once './includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

header ("Content-Type:text/xml");

?>

<map map_file="maps/world3.swf" tl_long="-117.2" tl_lat="33.3" br_long="-94.5" br_lat="-33.9" zoom="299.9999%" zoom_x="-30.94%" zoom_y="-156.8%">
<areas>
<!-- ... -->
<area title="ARGENTINE" mc_name="AR">
<description><![CDATA[<?php print views_embed_view('MY_VIEW', 'VIEW_DISPLAY_ID', 'ARGUMENT'); ?>]]></description>
</area>
<!-- ... -->
</areas>
</map>

现在,由于有许多包含 View 的标签,生成 XML 文件需要一些时间,这会导致 map 加载时间过长。出于这个原因,我想以某种方式缓存生成的 XML 文件 - 考虑到我需要在 ammap 配置文件中添加它的路径。

我该怎么做?

最佳答案

最好的办法,就是写一个小模块。

这是最短的:

/**
* Implement hook_menu()
* to define path for our xml file.
*/
function mymodule_menu() {
$items = array();
$items['map.xml'] = array(
'title' => 'Map xml',
'page callback' => 'map_get_xml',
'access arguments' => TRUE,
'type' => MENU_CALLBACK
);
return $items;
}

/**
* Your custom function for xml file.
*/
function map_get_xml() {
$cache = cache_get('your-cache-id');
$xml = $cache->data;

if (!$xml) {
$xml = ... // perform your code to generate your XML

cache_set('your-cache-id', $xml);
}

drupal_set_header("Content-Type:text/xml");
print $xml;
exit();
}

关于php - 如何在 Drupal 中缓存 PHP 生成的 XML 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8164376/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com