I am having an intermittent problem in my website
https://americascareercenters.us/jobs.php?q=92630
Sometimes the page loads fine. other times I get just a blank page with an error.
Fatal error: Uncaught Error: Call to a member function attributes() on boolean in /home/acc/public_html/jobs.php:95 Stack trace: #0 {main} thrown in /home/acc/public_html/jobs.php on line 95
Here is the section of code
$rCurl_f = curl_init($sUrl_f);
curl_setopt($rCurl_f, CURLOPT_RETURNTRANSFER, TRUE);
$sXml_f = curl_exec($rCurl_f);
curl_close($rCurl_f);
$oXml_f = simplexml_load_string($sXml_f);
$results_atributes_f = $oXml_f->attributes();
$total_f = $results_atributes_f['total'];