如何在PHP

时间:2017-06-15 08:46:05

标签: php arrays multidimensional-array

我正在尝试使用我正在切割的字符串数组在PHP中构建一个多维数组,因此字符串为1:wlrb@yahoo.com:7:8.35变为

"id": "1",  
"email_address": "wlrb@yahoo.com",  
"domain": "yahoo.com",  
"number_of_orders": "7",    
"total_order_value": "£8.35"

在JavaScript中,我会创建一个包含上述值的对象并将其放入数组中,但PHP中的等价物是什么? 到目前为止,我有以下代码给我

  

数组([0] => stdClass对象([id] => 1 [email] => wlrb@yahoo.com   [domain] => yahoo.com [number_of_orders] => 7 [total_order_value] =>   8.35)

<?php

$data = file_get_contents('orderdata');
/* echo $data; */

$lines = explode("\n", $data);

array_splice($lines, 0, 8);
/* var_dump($lines); */

array_splice($lines, -3);
/* var_dump($lines); */

/* removes all NULL, FALSE and Empty Strings but leaves 0 (zero) values */
$lines = array_values(array_filter($lines, 'strlen'));


function arraySort($lines ,$i) {
    $rep = new stdClass();
    $rep->id = strId($lines, $i);
    $rep->email = strEmail($lines, $i);
    $rep->domain = strDomain($lines, $i);
    $rep->number_of_orders = orderNo($lines, $i);
    $rep->total_order_value = orderValue($lines, $i);
    /* var_dump($rep); */
    return $rep;
}


function strDomain($lines, $i) {
    if($lines[$i] == null){
        return "";
    } 
    else {
        $str = $lines[$i];
        $splt = explode(':', $str);
        $domain = explode('@', $splt[1]);
        return $domain[1];
    }
}


function strId($lines, $i) {
    if($lines[$i] == null){
        return "";
    } 
    else {
        $str = $lines[$i];
        $splt = explode(':', $str);
        return $splt[0];
    }

}


function strEmail($lines, $i) {
    if($lines[$i] == null){
        return "";
    } 
    else {
        $str = $lines[$i];
        $splt = explode(':', $str);
        return $splt[1];
    }
}


function orderNo($lines, $i) {
    if($lines[$i] == null){
        return "";
    } 
    else {
        $str = $lines[$i];
        $splt = explode(':', $str);
        return $splt[2];
    }
}


function orderValue($lines, $i) {
    if($lines[$i] == null){
        return "";
    } 
    else {
        $str = $lines[$i];
        $splt = explode(':', $str);
        return '£' + $splt[3];
    }
}

$reports = array();
$reps = array();
for($i = 0, $length = count($lines); $i < $length; ++$i) {
    $reps = arraySort($lines, $i);
    array_push($reports, $reps);
}

?>

但是当我尝试用

搜索数组时
$filteredArray = 
array_filter($reports, function($element) use($search){
  return isset($element['domain']) && $element['domain'] == $search;
});

我收到以下错误

  

致命错误:未捕获错误:无法使用stdClass类型的对象   phpData.php中的数组:110堆栈跟踪:#0   [内部函数]:{closure}(Object(stdClass))#1   phpData.php(111):array_filter(Array,   Object(Closure))#2 {main}抛出   第110行的phpData.php

这是因为我的arraySort函数中使用了$rep = new stdClass();吗?如果是这样我应该使用什么?

2 个答案:

答案 0 :(得分:1)

最简单,最短的解决方案是:

$value = "1:wlrb@yahoo.com:7:8.35";
$keys = array('id', 'email_address', 'number_of_orders', 'total_order_value');
$fused = array_combine($keys, explode(':', $value));
$fused['domain'] = strDomain($fused['email_address']); //using your "strDomain()" function

它会为您提供所需的数组,除非您的订单值中没有£符号。

答案 1 :(得分:0)

您可以使用这样的对象观察方法:

$filteredArray = 
array_filter($reports, function($element) use($search){
  return isset($element->domain) && $element->domain == $search;
});