【发布时间】:2011-06-22 06:18:27
【问题描述】:
我确实将一个句子分成以下几个词:
例如:
This is a test from php, python, asp and also from other languages. Alash! i cannot get my output as followings.
结果:
array(
[0]=>"This",
[1]=>"is",
[2]=>"a",
[3]=>"test",
[4]=>"from",
[5]=>"php",
[6]=>",",
[7]=>"python",
[8]=>",",
[9]=>"asp",
[10]=>"and",
[11]=>"also",
[12]=>"from",
[13]=>"other",
[14]=>"languages",
[15]=>".",
[16]=>"Alash",
[17]=>"!",
[18]=>"I",
[19]=>"cannot",
[20]=>"get",
...
)
我在 php 中可以有哪些选择?
【问题讨论】: