芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/joolsmen.com/vendor/nexmo/src/NexmoReceipt.php
found = true; // Get the relevant data $this->to = $data['msisdn']; $this->from = $data['to']; $this->network = $data['network-code']; $this->message_id = $data['messageId']; $this->status = strtoupper($data['status']); // Format the date into timestamp $dp = date_parse_from_format('ymdGi', $data['scts']); $this->received_time = mktime($dp['hour'], $dp['minute'], $dp['second'], $dp['month'], $dp['day'], $dp['year']); } /** * Returns true if a valid receipt is found */ public function exists () { return $this->found; } }