以下のコードのようなカスタム モジュールでコードを実行すると、白い画面が表示されます...ログにエラーが記録されていないようです (おそらくサーバー構成が原因です)。簡単に言えば、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);
}