bob 发布于 June 9, 2004 00:12
供為本程式進行繁體化努力的網友參考:
原文連結:http://www.dev.idv.tw/wp/index.php?p=58
Big5碼中容易衝碼的文字
Filed under: Programming Software Engineering— garylee @ 10:19 am
Big5中由於當初設計上的疏失,導致一些屬於控制字元的資料容易引起一些程式環境的誤判。造成顯示出來的中文字不是我們想要的結果。所以我們在寫程式的時候對於中文的處理要特別小心。下面列出了一些容易引發衝碼的文字,寫程式的人,最好都能夠測試下面的字在你的程式中可以正確無誤的被使用。
ASCII(5C) == “\\”
A45C么 AE5C娉 B85C稞 C25C擺 A55C功
AF5C珮 B95C鈾 C35C黠 A65C吒 B05C豹
BA5C暝 C45C孀 A75C吭 B15C崤 BB5C蓋
C55C髏 A85C沔 B25C淚 BC5C墦 C65C躡
A95C坼 B35C許 BD5C穀 AA5C歿 B45C廄
BE5C閱 AB5C俞 B55C琵 BF5C璞 AC5C枯
B65C跚 C05C餐 AD5C苒 B75C愧 C15C縷
ASCII(7C) == “|”
AA7C泜 B47C揉 A87C育 BE7C魯 B27C琍
BC7C慝 C67C鸛 A97C尚 B37C逖 BD7C罵
A77C坑 B17C悴 BB7C誡 C57C疊 A67C帆
B07C院 BA7C漏 C47C辮 AB7C咽 B57C稅
BF7C糕 AC7C洱 B67C閏 C07C嚐 AD7C迢
B77C會 C17C舉 A47C弋 AE7C徑 B87C腮
C27C甕 A57C四 AF7C砝 B97C頌 C37C牘
由於受到WDB作者旅行早期程式的影響,我也習慣使用竪綫作爲分割符號,這就造成以上包含這一符號的文字在存入檔案時一半編碼被過濾,導致了嚴重的衝碼問題。
解決思路:
一是大家已經在作出嘗試的,改寫程序的過濾部分,但仍無法完全規避以上問題。原因是,許 蓋 功 的文字產生衝碼的根源不在本程式本身。
二是UTF-8化,這樣可以徹底解決衝碼。
關於UTF文件打開時,由於伺服器端強制了編碼(big5)而導致需要手動切換瀏覽器設置的問題,我會在程式中添入編碼申明以解決。
又及,我又發現了這篇記錄,可能對繼續堅持big5編碼的作者有用:
http://forum.kmd.com.tw/article5.html
文章很長,就不引用了,GENES您可以使這裡用一下文中提及的那兩個函式,可能可以解決問題,因爲本程式不使用mysql,所以會比文中所述簡單。
原文連結:http://www.dev.idv.tw/wp/index.php?p=58
Big5碼中容易衝碼的文字
Filed under: Programming Software Engineering— garylee @ 10:19 am
Big5中由於當初設計上的疏失,導致一些屬於控制字元的資料容易引起一些程式環境的誤判。造成顯示出來的中文字不是我們想要的結果。所以我們在寫程式的時候對於中文的處理要特別小心。下面列出了一些容易引發衝碼的文字,寫程式的人,最好都能夠測試下面的字在你的程式中可以正確無誤的被使用。
ASCII(5C) == “\\”
A45C么 AE5C娉 B85C稞 C25C擺 A55C功
AF5C珮 B95C鈾 C35C黠 A65C吒 B05C豹
BA5C暝 C45C孀 A75C吭 B15C崤 BB5C蓋
C55C髏 A85C沔 B25C淚 BC5C墦 C65C躡
A95C坼 B35C許 BD5C穀 AA5C歿 B45C廄
BE5C閱 AB5C俞 B55C琵 BF5C璞 AC5C枯
B65C跚 C05C餐 AD5C苒 B75C愧 C15C縷
ASCII(7C) == “|”
AA7C泜 B47C揉 A87C育 BE7C魯 B27C琍
BC7C慝 C67C鸛 A97C尚 B37C逖 BD7C罵
A77C坑 B17C悴 BB7C誡 C57C疊 A67C帆
B07C院 BA7C漏 C47C辮 AB7C咽 B57C稅
BF7C糕 AC7C洱 B67C閏 C07C嚐 AD7C迢
B77C會 C17C舉 A47C弋 AE7C徑 B87C腮
C27C甕 A57C四 AF7C砝 B97C頌 C37C牘
由於受到WDB作者旅行早期程式的影響,我也習慣使用竪綫作爲分割符號,這就造成以上包含這一符號的文字在存入檔案時一半編碼被過濾,導致了嚴重的衝碼問題。
解決思路:
一是大家已經在作出嘗試的,改寫程序的過濾部分,但仍無法完全規避以上問題。原因是,許 蓋 功 的文字產生衝碼的根源不在本程式本身。
二是UTF-8化,這樣可以徹底解決衝碼。
關於UTF文件打開時,由於伺服器端強制了編碼(big5)而導致需要手動切換瀏覽器設置的問題,我會在程式中添入編碼申明以解決。
又及,我又發現了這篇記錄,可能對繼續堅持big5編碼的作者有用:
http://forum.kmd.com.tw/article5.html
文章很長,就不引用了,GENES您可以使這裡用一下文中提及的那兩個函式,可能可以解決問題,因爲本程式不使用mysql,所以會比文中所述簡單。
bob 发布于 June 5, 2004 15:33
这两天打开酷狗(KuGoo)的时候,发现从我硬盘里下这首歌的人不少。不过这倒真的是首值得推荐的好歌,虽然老了些。Josh Gorban,曾经被称作男版的Celine Dion,其实我看不出他和Celine的相似点,可能作这样的类比本来就没有太大的根据,只是一种宣传而已了。这首歌开头一段苏格兰风笛感觉的前奏使人对于它后面的曲子十分期待。但结果稍稍有些失败,觉得后面的歌唱和旋律都没有达到预期的精彩。但总得来说,这首歌不失一首心情舒缓时听听的好歌。
传了这首歌的mp3到1G网络U盘(这里),一个最近很流行的网络存储空间。感兴趣的可以去下载来听听。
到http://www.1g.com.cn 输入提取密码500020046555892520即可下载。
[center]You Raise Me Up
[right]Josh Gorban[/right]
When I am down and, oh my soul, so weary;
When troubles come and my heart burdened be;
Then, I am still and wait here in the silence,
Until you come and sit awhile with me.
You raise me up, so I can stand on mountains;
You raise me up, to walk on stormy seas;
I am strong, when I am on your shoulders;
You raise me up: To more than I can be.
You raise me up, so I can stand on mountains;
You raise me up, to walk on stormy seas;
I am strong, when I am on your shoulders;
You raise me up: To more than I can be.
You raise me up, so I can stand on mountains;
You raise me up, to walk on stormy seas;
I am strong, when I am on your shoulders;
You raise me up: To more than I can be.
You raise me up, so I can stand on mountains;
You raise me up, to walk on stormy seas;
I am strong, when I am on your shoulders;
You raise me up: To more than I can be.[/center]
bob 发布于 June 4, 2004 16:31
有时真是满矛盾的,一方面觉得写paper的课到了期末可以减少复习的压力,另一方面真正到了写的时候又往往不知所措。这篇东西选的题目有些老套了,个人觉得还算言之有物吧。贴一下算是做个副本。也欢迎就这个话题与我交流。
引用
Say No No to Loanwords
Much has been long discussed about the problem of loanwords in Chinese, which has already made this problem a platitude to some extend. In most of the debates, consensuses will be reached that the flooding loanwords is corrupting our language, and we should purify Chinese. But if considered together with the present features of modern Chinese language, I would draw a conclusion that the borrowed words entering into Chinese are not monsters and the purification is not necessary.
It is partially a misconception that since Chinese is a pictographic language in its written form, while the loanwords are mainly imported from the West where alphabetic system is used, the borrowed words cannot be fully absorbed into our language and thus cause problem in understanding. This is a misconception because though Chinese is categorized as a pictographic language, there are still huge amount of abstract elements in it expressing abstract ideas. Also because the simplification of the writing system, many Chinese characters now have nothing to do with a concrete idea, despite that they used to be pictographic. For example, it is hard for a nonprofessional to tell the original picturesque meaning of the characters like 尔, 克, 斯, etc. Since these words are abstract, why can’t we use them as phonetic symbols to simulate the pronunciation of a foreign word? We have been long accustomed to the names of foreigners translated into Chinese characters like 马克思, 爱因斯坦 and 贝克汉姆, and no one will be confused by them, so the loanwords translated according to their sounds is acceptable and not troublesome in understanding.
Of course, there are some loanwords which are perfect translated both in pronunciation and in writing forms. The most frequently cited example is 霓虹灯 for neon lights. We can see that the key of the success of importing words is the selection of Chinese characters. If the translator chose other characters for neon lights, for instance, 尼恩灯, it would become less vivid and less concrete. However, is there any real difference between these two translations? There is a possibility that the former one will be easier for one to grasp its definite meaning, and the latter one needs some explanation. But once the Chinese speaker acquires the basic meaning of neon lights and has got the picture of a neon light in his mind, there will be no gigantic differentiation on which term is used. And it is so with the situation of the words 伊妹儿 and 电子邮件. The latter one is perhaps more apprehensible, but both of the two words are expressing the same conception to an E-mail user, and neither of them signifies more than an unfamiliar idea to those who don’t use E-mails. The fact that a networker often interchanges these two terms suggests the potentiality that a loanword can function as well as a connatural Chinese one.
Another reason that I don’t see the necessity of so-called language purification is the fact that most of the loanwords are nouns. What necessitates the importation of foreign words is often the need of expressing an idea or conception which does not previously exist in our own language. That’s why the wholesale loanwords are terminologies. Even if a passage is written with superfluous loanwords, it is still Chinese because the verbs, the grammar, the thinking mode and ideology are all Chinese. The enormous amount of loanwords did not corrupt our language; instead, they enriched our mother tongue, and enabled it to catch up with times.
“New borrowed words will not decrease the enchantment of Chinese language.” This is the conclusion made in a seminar by many experts two years ago, and the perseverance of our language today proves its correctness, and so will the future do.
References:
OzIdeas, Chinese character writing Advantages and disadvantages of Chinese logographs,
<http://home.vicnet.net.au/~ozideas/writchin.htm>
Dominic Yu, Thoughts on Logan\'s the Alphabet Effect,
<http://rescomp.stanford.edu/~domingo2/zok/logan.html>
原春琳, 《如果放弃外来语,怎样称呼沙发呢?新词语会不会削弱汉语的独特魅力》,《中国青年报》 2002年8月28日, <http://bbs.people.com.cn/bbs/ReadFile?whichfile=9049307&typeid=14>
Much has been long discussed about the problem of loanwords in Chinese, which has already made this problem a platitude to some extend. In most of the debates, consensuses will be reached that the flooding loanwords is corrupting our language, and we should purify Chinese. But if considered together with the present features of modern Chinese language, I would draw a conclusion that the borrowed words entering into Chinese are not monsters and the purification is not necessary.
It is partially a misconception that since Chinese is a pictographic language in its written form, while the loanwords are mainly imported from the West where alphabetic system is used, the borrowed words cannot be fully absorbed into our language and thus cause problem in understanding. This is a misconception because though Chinese is categorized as a pictographic language, there are still huge amount of abstract elements in it expressing abstract ideas. Also because the simplification of the writing system, many Chinese characters now have nothing to do with a concrete idea, despite that they used to be pictographic. For example, it is hard for a nonprofessional to tell the original picturesque meaning of the characters like 尔, 克, 斯, etc. Since these words are abstract, why can’t we use them as phonetic symbols to simulate the pronunciation of a foreign word? We have been long accustomed to the names of foreigners translated into Chinese characters like 马克思, 爱因斯坦 and 贝克汉姆, and no one will be confused by them, so the loanwords translated according to their sounds is acceptable and not troublesome in understanding.
Of course, there are some loanwords which are perfect translated both in pronunciation and in writing forms. The most frequently cited example is 霓虹灯 for neon lights. We can see that the key of the success of importing words is the selection of Chinese characters. If the translator chose other characters for neon lights, for instance, 尼恩灯, it would become less vivid and less concrete. However, is there any real difference between these two translations? There is a possibility that the former one will be easier for one to grasp its definite meaning, and the latter one needs some explanation. But once the Chinese speaker acquires the basic meaning of neon lights and has got the picture of a neon light in his mind, there will be no gigantic differentiation on which term is used. And it is so with the situation of the words 伊妹儿 and 电子邮件. The latter one is perhaps more apprehensible, but both of the two words are expressing the same conception to an E-mail user, and neither of them signifies more than an unfamiliar idea to those who don’t use E-mails. The fact that a networker often interchanges these two terms suggests the potentiality that a loanword can function as well as a connatural Chinese one.
Another reason that I don’t see the necessity of so-called language purification is the fact that most of the loanwords are nouns. What necessitates the importation of foreign words is often the need of expressing an idea or conception which does not previously exist in our own language. That’s why the wholesale loanwords are terminologies. Even if a passage is written with superfluous loanwords, it is still Chinese because the verbs, the grammar, the thinking mode and ideology are all Chinese. The enormous amount of loanwords did not corrupt our language; instead, they enriched our mother tongue, and enabled it to catch up with times.
“New borrowed words will not decrease the enchantment of Chinese language.” This is the conclusion made in a seminar by many experts two years ago, and the perseverance of our language today proves its correctness, and so will the future do.
References:
OzIdeas, Chinese character writing Advantages and disadvantages of Chinese logographs,
<http://home.vicnet.net.au/~ozideas/writchin.htm>
Dominic Yu, Thoughts on Logan\'s the Alphabet Effect,
<http://rescomp.stanford.edu/~domingo2/zok/logan.html>
原春琳, 《如果放弃外来语,怎样称呼沙发呢?新词语会不会削弱汉语的独特魅力》,《中国青年报》 2002年8月28日, <http://bbs.people.com.cn/bbs/ReadFile?whichfile=9049307&typeid=14>
bob 发布于 June 2, 2004 18:36
大家可以发现,现在底下显示的编码图示已经是UTF-8了。这里说明一下转换内码的原因:
现在流行的中文blog程序一般有两种编码:GB2312和UTF-8。随着blog的普及,不同blog之间的互相访问和引用也越来越多。但是其中有一个很大的问题就是编码的问题。gb编码和utf-8编码的程序之间互相发送的trackback信息不能识别,造成乱码。因此,我和几个其他blog程序的作者进行了沟通,大家认为有必要统一一下使用的编码。
那么,为什么要选择UTF-8呢?如果要说UTF-8的优点,那么就是它是一个全球统一码,建立在这一编码基础上的程序之间,可以以不同的语种和文字进行沟通,而不会出现乱码。
blog和bbs不一样。bbs相对而言是自身相对封闭的程序,在一个bbs系统内发文不会遇到编码不同的问题(这不代表bbs程序没有utf化的必要)。而blog程序是一个经常与外界沟通的程序,它需要跨语言、跨编码、跨平台的互相交流,这就使得使用一个统一的编码的要求更为迫切起来,而UTF-8,则是现在最广泛采用,也能为最多浏览器、最多操作平台识别的编码。
所以,本程序从1.5版本起全面使用UTF-8编码。
那么,使用新的编码会遇到什么问题?
一是您的所有数据需要转换编码。我将在1.5发布前夕详细讲解如何转码,用什么软件转码,以及注意事项是什么。这一步很简单,现在程序的备份功能完全可以使得工作量减到最小。
二是您的模板需要使用UTF-8编码,否则无法显示模板中的中文字。这也不是问题,和以上一点一样。
三是浏览时会出现乱码吗?
这个问题大致的答案是“不会”。php对于多语言的支持非常好,程序自身也做了一些小改动,会自动向你的浏览器发送一个信息,使浏览器自动以utf解析收到的页面。因此不会出现乱码,即使在大多数国外空间上也不会。
好了,大家如果有什么疑问和想法可以提出。
注意几点:
一,现在本站的trackback只能接收UTF-8编码,您如果使用bo-blog的1.4版本,或者其他以gb编码的程序,发送给本站的trackback信息将是乱码。而采用utf内核的程序,比如M-Logger,则可以正常接收您发送的trackback。
二,在新版发布时,我可能(视情况)仍然会发布Gb2312内核的版本以照顾不愿意更改编码的用户(但强烈建议您升级时使用新的编码)。简体版使用UTF编码后,简体和繁体版本的Bo-Blog的数据将可以通用。
现在流行的中文blog程序一般有两种编码:GB2312和UTF-8。随着blog的普及,不同blog之间的互相访问和引用也越来越多。但是其中有一个很大的问题就是编码的问题。gb编码和utf-8编码的程序之间互相发送的trackback信息不能识别,造成乱码。因此,我和几个其他blog程序的作者进行了沟通,大家认为有必要统一一下使用的编码。
那么,为什么要选择UTF-8呢?如果要说UTF-8的优点,那么就是它是一个全球统一码,建立在这一编码基础上的程序之间,可以以不同的语种和文字进行沟通,而不会出现乱码。
blog和bbs不一样。bbs相对而言是自身相对封闭的程序,在一个bbs系统内发文不会遇到编码不同的问题(这不代表bbs程序没有utf化的必要)。而blog程序是一个经常与外界沟通的程序,它需要跨语言、跨编码、跨平台的互相交流,这就使得使用一个统一的编码的要求更为迫切起来,而UTF-8,则是现在最广泛采用,也能为最多浏览器、最多操作平台识别的编码。
所以,本程序从1.5版本起全面使用UTF-8编码。
那么,使用新的编码会遇到什么问题?
一是您的所有数据需要转换编码。我将在1.5发布前夕详细讲解如何转码,用什么软件转码,以及注意事项是什么。这一步很简单,现在程序的备份功能完全可以使得工作量减到最小。
二是您的模板需要使用UTF-8编码,否则无法显示模板中的中文字。这也不是问题,和以上一点一样。
三是浏览时会出现乱码吗?
这个问题大致的答案是“不会”。php对于多语言的支持非常好,程序自身也做了一些小改动,会自动向你的浏览器发送一个信息,使浏览器自动以utf解析收到的页面。因此不会出现乱码,即使在大多数国外空间上也不会。
好了,大家如果有什么疑问和想法可以提出。
注意几点:
一,现在本站的trackback只能接收UTF-8编码,您如果使用bo-blog的1.4版本,或者其他以gb编码的程序,发送给本站的trackback信息将是乱码。而采用utf内核的程序,比如M-Logger,则可以正常接收您发送的trackback。
二,在新版发布时,我可能(视情况)仍然会发布Gb2312内核的版本以照顾不愿意更改编码的用户(但强烈建议您升级时使用新的编码)。简体版使用UTF编码后,简体和繁体版本的Bo-Blog的数据将可以通用。
bob 发布于 May 23, 2004 00:21
她,一个三十多岁的女人。她,唱歌已经二十余年。
三年前,她来了上海,匆匆的脚步留下那个夏天最美好的声音。
三年后,她又来,依然是形色匆匆,在瓢泼和惊雷中,留下了电光火石般绚烂却又难得的回忆。
开场前的人潮,进场时的喧杂,使我一直没有进入兴奋的情感中去。呆呆地望着不远处执拗的大雨,
透过望远镜扫视着内场如织的人群,听着耳边毫不留情的雷鸣,我开始产生一丝怀疑。我不知道接下
来的两个小时,她是不是会圆满地结束这一场万人翘首千人折腰的演唱会,我甚至开始担心,这场演
出会不会因为不合作的天气而成为断翅的蝴蝶。
所以,当“演唱会现在开始”的播报响起的时候,我愣了愣,然后竭尽了力气呼喊。全场的观众都在
呼喊,如梦初醒般,呼喊。然后,我们便听到了她的声音。那有些遥远的,却又那么真切的声音。
一分钟后,她站在舞台的中央,没有动作,没有神情,任《天空》的间奏包围湿漉漉的空气,任台下
的朝圣者挥舞手中的激动和悸动。她享受着这十几秒的傲然。这样的出场方式,铭刻着常人无法企及
的气势和高贵。
她开始唱歌,或者说,开始书写每个聆听者当晚的历史。
实打实的一小时四十分,实打实的近三十首歌。她就这么一路唱了下来,那么娴熟,那么自得,那么
尽情地用征服世界的声音再次把我们征服。我们,和她一起,丢却了时间的概念。曾经的经典,今天
的流行,电子的迷幻,提琴的滥情,灯光的琉璃,焰火的亢奋,一切的一切,即是夺人耳目的主角,
又是尽心称职的配角。她,和我们一起,抛弃了空间的介怀。雷声再大,皆化作节奏,被忽略着又被
敬畏着地钻进了耳朵;闪电再猛,亦徙为灯光,恰到好处地准时增添着舞台的亮色。
她唱着,唱着,不觉雨渐大,风更急。但是没有人有怨言,没有人舍得离开。相反的,内场的很多人
丢掉了雨伞,这似乎唯一可以阻挡他们与她交流的东西。
她唱着,唱着,每一次前奏初开,每一次旋律溅起,都换来一阵欢呼,一阵欣喜。她在唱,她是为我
们而唱,也是为她自己在唱。对于她,这些歌曲里有太多过去留下的痕迹,所以唱起它们能那么快地
找到感觉。对于我们,这些歌曲里有太多曲曲折折的回忆,所以唱起它们可以引发如此协和又各异的
共鸣。我从来不惊讶为何她的拥趸可以幼至十岁,长及四十,因为她有着太多的好歌,她唱出了太多
的缤纷,她唱出了太多的心声。
她唱着,唱着,每一次离开舞台,每一次重新登场,都是一次盛宴的开始。我已经不去注视她换上了
什么样的衣服,虽然我知道不管是怎样的服装都可以把她妆点得惊为天人。我也不再努力地透过镜头
捕捉她的小动作,因为我知道,哪怕闭上眼
她唱着,唱着,我们每个人都醉了,我们一次次地惊叹,但下一次总能超越前一次,似乎这是一场没
有终点的演唱会。也许,爱上王菲的歌,做她的粉丝,也多半是只有起点,罕有终点的人生旅程。
我几次想哭,但是不敢,我怕泪水朦胧,错过任何一幕我不舍得错过的奇迹。我几次想笑,但是不敢
,我怕笑声会妨碍了自己,也妨碍了左邻右里。
终于,雨停了,乐队奏完了最后一个音符,舞台卸下了最后一束华彩。虽然她已经在几分钟前消失在
舞台,但是我们还是望着那里,望着乐队的成员,望着那些望着舞台的人。大家都很清楚的知道,她
的演唱会从来没有 echo ,从来不会加演,但大家都不走。我们在等什么,我不知道。应该不是在回
味,因为头脑是一片空白。
当我走出虹口,拥挤在末班的巴士,我还是不愿意开始回味,开始总结。正像一个导演,拍下了心潮
澎湃的电影,在面对那一卷胶片时,无从下手。也许,不需要什么总结吧,也不需要为今后的记忆留
下什么先设和彩排,美好的总是美好的。
可我最终还是写了些妄言。虽然沾染了太多的主观和感情因素,虽然驱使了太多不合规范的词语。写
下了这一切,为她,为我自己,为大三的这个五月。
三年前,她来了上海,匆匆的脚步留下那个夏天最美好的声音。
三年后,她又来,依然是形色匆匆,在瓢泼和惊雷中,留下了电光火石般绚烂却又难得的回忆。
开场前的人潮,进场时的喧杂,使我一直没有进入兴奋的情感中去。呆呆地望着不远处执拗的大雨,
透过望远镜扫视着内场如织的人群,听着耳边毫不留情的雷鸣,我开始产生一丝怀疑。我不知道接下
来的两个小时,她是不是会圆满地结束这一场万人翘首千人折腰的演唱会,我甚至开始担心,这场演
出会不会因为不合作的天气而成为断翅的蝴蝶。
所以,当“演唱会现在开始”的播报响起的时候,我愣了愣,然后竭尽了力气呼喊。全场的观众都在
呼喊,如梦初醒般,呼喊。然后,我们便听到了她的声音。那有些遥远的,却又那么真切的声音。
一分钟后,她站在舞台的中央,没有动作,没有神情,任《天空》的间奏包围湿漉漉的空气,任台下
的朝圣者挥舞手中的激动和悸动。她享受着这十几秒的傲然。这样的出场方式,铭刻着常人无法企及
的气势和高贵。
她开始唱歌,或者说,开始书写每个聆听者当晚的历史。
实打实的一小时四十分,实打实的近三十首歌。她就这么一路唱了下来,那么娴熟,那么自得,那么
尽情地用征服世界的声音再次把我们征服。我们,和她一起,丢却了时间的概念。曾经的经典,今天
的流行,电子的迷幻,提琴的滥情,灯光的琉璃,焰火的亢奋,一切的一切,即是夺人耳目的主角,
又是尽心称职的配角。她,和我们一起,抛弃了空间的介怀。雷声再大,皆化作节奏,被忽略着又被
敬畏着地钻进了耳朵;闪电再猛,亦徙为灯光,恰到好处地准时增添着舞台的亮色。
她唱着,唱着,不觉雨渐大,风更急。但是没有人有怨言,没有人舍得离开。相反的,内场的很多人
丢掉了雨伞,这似乎唯一可以阻挡他们与她交流的东西。
她唱着,唱着,每一次前奏初开,每一次旋律溅起,都换来一阵欢呼,一阵欣喜。她在唱,她是为我
们而唱,也是为她自己在唱。对于她,这些歌曲里有太多过去留下的痕迹,所以唱起它们能那么快地
找到感觉。对于我们,这些歌曲里有太多曲曲折折的回忆,所以唱起它们可以引发如此协和又各异的
共鸣。我从来不惊讶为何她的拥趸可以幼至十岁,长及四十,因为她有着太多的好歌,她唱出了太多
的缤纷,她唱出了太多的心声。
她唱着,唱着,每一次离开舞台,每一次重新登场,都是一次盛宴的开始。我已经不去注视她换上了
什么样的衣服,虽然我知道不管是怎样的服装都可以把她妆点得惊为天人。我也不再努力地透过镜头
捕捉她的小动作,因为我知道,哪怕闭上眼
她唱着,唱着,我们每个人都醉了,我们一次次地惊叹,但下一次总能超越前一次,似乎这是一场没
有终点的演唱会。也许,爱上王菲的歌,做她的粉丝,也多半是只有起点,罕有终点的人生旅程。
我几次想哭,但是不敢,我怕泪水朦胧,错过任何一幕我不舍得错过的奇迹。我几次想笑,但是不敢
,我怕笑声会妨碍了自己,也妨碍了左邻右里。
终于,雨停了,乐队奏完了最后一个音符,舞台卸下了最后一束华彩。虽然她已经在几分钟前消失在
舞台,但是我们还是望着那里,望着乐队的成员,望着那些望着舞台的人。大家都很清楚的知道,她
的演唱会从来没有 echo ,从来不会加演,但大家都不走。我们在等什么,我不知道。应该不是在回
味,因为头脑是一片空白。
当我走出虹口,拥挤在末班的巴士,我还是不愿意开始回味,开始总结。正像一个导演,拍下了心潮
澎湃的电影,在面对那一卷胶片时,无从下手。也许,不需要什么总结吧,也不需要为今后的记忆留
下什么先设和彩排,美好的总是美好的。
可我最终还是写了些妄言。虽然沾染了太多的主观和感情因素,虽然驱使了太多不合规范的词语。写
下了这一切,为她,为我自己,为大三的这个五月。




