發表文章

目前顯示的是 4月 23, 2019的文章

Brahmaeidae

圖片
Brahmaeidae Acanthobrahmaea europaea Scientific classification Kingdom: Animalia Phylum: Euarthropoda Class: Insecta Order: Lepidoptera Superfamily: Bombycoidea Family: Brahmaeidae Swinhoe, 1892 Genera See text Brahmaeidae is a family of insects in the order Lepidoptera, commonly known as Brahmin moths . It includes species formerly included in the family Lemoniidae . [1] Diversity The family consists of 9 genera. Genera Acanthobrahmaea Brachygnatha Brahmaea Brahmidia Calliprogonos Dactyloceras Lemonia Sabalia Spiramiopsis References ^ Kitching I, Rougerie R, Zwick A, Hamilton C, St Laurent R, Naumann S, Ballesteros Mejia L, Kawahara A (2018) A global checklist of the Bombycoidea (Insecta: Lepidoptera). Biodiversity Data Journal 6: e22236. https://doi.org/10.3897/BDJ.6.e22236 Wikispecies has information related to Brahmaeidae v t e Extant Lepidoptera families Kingdom: Anim

how to dom parser html table which containing “<” symbol in php

圖片
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box; } 0 I want to make curl in php to get the data in html table on this website: https://bri.co.id/web/guest/deposit-interest-rate. Here's the code I was trying: <?php error_reporting(E_ALL); $url = "https://bri.co.id/web/guest/deposit-interest-rate"; $ch = curl_init(); $timeout = 5; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $html = curl_exec($ch); curl_close($ch); $dom = new DOMDocument(); $dom->preserveWhiteSpace = false; $dom->validateOnParse = true; $dom->formatOutput = true; libxml_use_internal_err