Drupal - 如何进行搜索钩子

I want to customize my search page (actually the results) and I've read on the internet about Drupal Hooks. I've copied the prefab Drupal hook_search_execute() function and replaced all it's content with echo "OK"; die(); but the site simply won't die, it just continues the search as if nothing happened.

I've placed the hook_search_execute() function in one of my custom modules which is 100% activated, so it should work.

Any help on this?

It seems for search_execute to work, I also had to decfine the search_info hook.

You haven´t said which Drupal Version you are using, but for Drupal 6 you have to name the hook_search() in your module YOUR_MODULE_NAME_search(). The hooks represent a naming scheme.