0

当我在类似于下面的代码的自定义模块中运行代码时,我得到一个白屏......我的日志中似乎没有任何错误(可能是由于我的服务器配置)。长话短说 callback_function 会将参数从 url 传递给 another_function,后者将检查数据库表的值。有人可以告诉我我的错误在哪里吗?我显然错过了一些东西。

function hook_menu() {
    $items = array();
    $items['mymodule/%'] = array(
        'title' => 'Test',
        'description' => 'Pass argument from url into callback function to process',
        'page callback' => 'callback_function',
        'page arguments' => array(1),
        'access arguments' => array('access content'),
        'type' => MENU_NORMAL_ITEM,
    );
    return $items;
}

function callback_function($argument){
  another_function($argument);
}

function another_function($argument){
  return($argument);
}
4

1 回答 1

0

似乎您的“callback_function”没有从您的“another_function”返回数据。

这是一个错字吗?

于 2014-03-12T15:49:55.490 回答