I would like to scrape the readonly value from the following code below inside this input form, I am using php with simple html dom but I keep getting a blank reply.
(我想在此输入表单内的以下代码中抓取只读值,我使用的是带有简单html dom的php,但我一直收到空白回复。)
what can I do to make it give me that value. (我该怎么做才能使其具有我的价值。)
<input id="copy-video-embed" type="text" readonly value="<iframe src="https://www.example.com/embedframe/52285029" frameborder=0 width=510 height=400 scrolling=no allowfullscreen=allowfullscreen></iframe>" class="form-control">
so I have tried to the code below but does not seem to work
(所以我尝试了下面的代码,但似乎不起作用)
$node = $stuff->find('input[type=text]' , 0)->plaintext ; print_r($node) ;
ask by user1951739 translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…