php+txt,每次取值后,分两次显示,比如取到一条数据“A=B”,先显示A,再单击显示B,如何实现
比如取到的数据为:A=B
$str='A=B'; $arr=explode('=', $str); echo $arr[0]; // 输出:A echo $arr[1]; // 输出:B