
Category: Life & Work

实时搜索成为了目前搜索引擎发展的重要方向。越来越多的开发者开始关注搜索的实时性,比如twitter的信息或者新闻的搜索要求很高的时效性。 Read More »
Get parameters in url by arg(?) in Drupal
Parameters,URL,Drupal
You can easily get the url segment using function arg(?) in Drupal.
For instance:
URL: http://mysite.com/node/150349/edit
arg(0) results ‘node’
arg(1) results ’150349′
arg(2) results ‘edit’


