Я пытаюсь получить атрибут 'tel', но не могу его получить.
<div class="horizontal-center" ng-class="classActive()" ng-click="clicked($event)" id="7076213" account-id="536423" user-id="651772" event-label="listing-detail" event-action="phone-number-viewed-in-sideways" tel="8503128272" action-type="DetailPhone">
Я пытался с этими кодами.
1.
foreach ($html1->find('div.horizontal-center') as $phone) {
echo $ilanlar['phone'] = $phone->{'tel'};
}
2
foreach ($html1->find('div.horizontal-center') as $phone) {
echo $ilanlar['phone'] = $phone->getattribute('tel');
}