下面的脚本显示了文本文件中的搜索字符串,我的文本文件的内容如下:
60,1,1,188,pdgje5566
60,1,1,188,pdgje5565
if(!empty($extTxId)){
$searchfor = $extTxId;
$matches = array();
$handle = @fopen($file, "r");
if ($handle)
{
while (!feof($handle))
{
$buffer = fgets($handle);
if(strpos($buffer, $searchfor) !== FALSE)
$matches[] = $buffer;
}
fclose($handle);
}
print_r($matches);
它输出为
数组 ( [0] => 60, 1, 1, 188, ppje5566 )
但是,我想将用逗号(,)分隔的数据分解并存储到变量中,无论如何都要这样做吗?
由于每个逗号之间有空格,因此您可以修剪每个元素。
// Iterate through each item int the array (you can do $matches[0] if you just want the first)
foreach ($matches as $match)
{
$output_array = array_map('trim',explode(',',$match));
print_r($output_array);
}
输出:
Array
(
[0] => 60
[1] => 1
[2] => 1
[3] => 188
[4] => pdgje5565
)
尝试一下
foreach(Array[0] as $element)
{
echo $element;
}
如果您知道所获得的输入的确切结构,您可以执行以下操作:
$string = '60, 1, 1, 188, pdgje5565';
// Using trim just to be sure
list($varA, $varB, $varC, $varD, $varE) = explode(', ', trim($string));
这样你会得到如下结果:
$varA = 60;
$varB = 1;
$varC = 1;
$varD = 188;
$varE = 'pdgje5565';
这里的主要优点是你会得到像样的变量而不是带有抽象索引的数组,但只有当你确定你的结构是恒定的时它才是好的。