showSuccess(); // file_put_contents(APP_DIR . "/test_msg.txt", file_get_contents("php://input").PHP_EOL,FILE_APPEND); } protected function getData() { $data = file(APP_DIR . "/test_msg.txt"); $result = []; foreach ($data as $datum) { $pat = "#-[操作:(.*)]#"; preg_match($pat, $datum, $arr); if ($arr[1]) { $temp = explode("$$$", $arr[1]); $result[] = [ 'from' => $temp[1], 'to' => $temp[2], 'msg' => $temp[0] ]; } } $this->showSuccess($result); } protected function postData() { Logger::setLog(file_get_contents("php://input"), APP_DIR . "/test_msg.txt"); } protected function putData() { // TODO: Implement putData() method. } protected function deleteData() { // TODO: Implement deleteData() method. } }