Laravel7 использует функцию внутри блейд-файла

#php #function #curl #laravel-7

#php #функция #curl #laravel-7

Вопрос:

Я использую Laravel 7 и у меня есть файл просмотра, в который я помещаю функцию в начало файла просмотра. Однако сейчас я получаю сообщение об ошибке на странице. По сути, я просто пытаюсь создать страницу, которая запрашивает базу данных URL-адресов, а затем использует функцию curl, чтобы узнать, доступен ли веб-сайт или нет.

 syntax error, unexpected 'endforeach' (T_ENDFOREACH) 
(View: /Applications/MAMP/htdocs/local-devcenter/resources/views/uptime-dashboard.blade.php)
  

Вот мой код для блейд-файла

 <?php
//stuck function here becauae needed it only in this template
function uptime_monitor($url) 
{
    $timeout = 10;
    $ch = curl_init();
    curl_setopt ($ch, CURLOPT_URL, $url);
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt ($ch, CURLOPT_TIMEOUT, $timeout);
    $http_respond = curl_exec($ch);
    $http_respond = trim(strip_tags($http_respond));
    $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    if (($http_code == "200") || ($http_code == "302")) {
        return true;
    } else {
        // return $http_code;, possible too
        return false;
    }
      curl_close($ch);
}

?>
<table class="table-auto rounded text-center" id="sitegridtable">
                                <thead>
                                  <!--<tr>
                                    <th class="border w-1/4 px-4 py-2">Site URL</th>
                                    <th class="border w-1/6 px-4 py-2">HTTPS</th>
                                    <th class="border w-1/6 px-4 py-2">HTTP</th>
                                    <th class="border w-1/6 px-4 py-2">Last updated On</th>
                                    <th class="border w-1/6 px-4 py-2">Actions</th>
                                  </tr>-->
                                </thead>
                                <tbody>
                                    @foreach($clientdomains as $clientdomain)
                                        <tr>
                                            <td> {{$clientdomain->websiteurl}}</td>
                                            @if(@uptime_monitor('http://'.$clientdomain->websiteurl))

                                               <td>Up</td> 
                                           
                                            @else 
                                              <td>Down</td>
                                            
                                            <td></td>
                                            <td> </td>
                                            <td> 
                                                
                                            </td>
                                        </tr>
                                    @endforeach
                                </tbody>
 </table>
  

Комментарии:

1. Вы пропустили @endif

Ответ №1:

 <table class="table-auto rounded text-center" id="sitegridtable">
                                <thead>
                                  <!--<tr>
                                    <th class="border w-1/4 px-4 py-2">Site URL</th>
                                    <th class="border w-1/6 px-4 py-2">HTTPS</th>
                                    <th class="border w-1/6 px-4 py-2">HTTP</th>
                                    <th class="border w-1/6 px-4 py-2">Last updated On</th>
                                    <th class="border w-1/6 px-4 py-2">Actions</th>
                                  </tr>-->
                                </thead>
                                <tbody>
                                    @foreach($clientdomains as $clientdomain)
                                        <tr>
                                            <td> {{$clientdomain->websiteurl}}</td>
                                            @if(@uptime_monitor('http://'.$clientdomain->websiteurl))

                                               <td>Up</td> 
                                           
                                            @else 
                                              <td>Down</td>
                                            @endif
                                            <td></td>
                                            <td> </td>
                                            <td> 
                                                
                                            </td>
                                        </tr>
                                    @endforeach
                                </tbody>
 </table>