Dvae56 Posted September 13, 2019 Share Posted September 13, 2019 (edited) I'm trying to include a routine to catch an error but it doesn't seem to write to a text file within a function. just using the following simple code, even if I simply try to write a letter it doesn't work if ($http_status == 200) { return $response; } else { $myfile = fopen("ErrorData.txt", "a+") or die("Unable to open file!"); $txt = date("H:i:sa d-m-Y")." / Error data- / ".json_encode($response)."\r\n"; fwrite($myfile, $txt); fclose($myfile); } Edited September 13, 2019 by Dvae56 Added code Quote Link to comment Share on other sites More sharing options...
Barand Posted September 13, 2019 Share Posted September 13, 2019 Where's the function? Quote Link to comment Share on other sites More sharing options...
cyberRobot Posted September 16, 2019 Share Posted September 16, 2019 Are you getting any errors? Did you check the server error log? Or is PHP set to display errors? Side note: file_put_contents() does all the work of fopen(), fwrite() and fclose(). More information can be found here:https://www.php.net/manual/en/function.file-put-contents.php Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.