1
基本的に私は、外部のHTMLページからスクリプトタグ内からデータを取得したい、内部のスクリプトからデータを取得し、PHPでプレーンテキストに渡しますか?
例:>> ソース:[{
<script type="text/javascript">
var playerInstance = jwplayer("jwplayer");
playerInstance.setup({
id:'jwplayer',
width: "100%",
height: "100%",
aspectratio: "16:9",
fullscreen: "true",
primary: 'html5',
provider: 'http',
autostart: false,
sources: [{"type":"video/mp4","label":360,"file":"MY-VIDEO-LINK"},{"type":"video/mp4","label":480,"file":"MY-VIDEO-LINK"}],
});
は、私はちょうど黒印をしたいです"タイプ:" "ビデオ/ mp4"、 "ラベル":360、 "ファイル": " "MY-VIDEO-LINK"}]
私はPHPでページへのアクセス権を持っている:
を
私はほとんどが、カール、運、およびDOMを試してみた:
include_once('simple_html_dom.php');
$html = file_get_html($url);
$elem = $html->find('sources', 0); //tried with 'sources' but probably is wrong
echo $elem;
私は助けを感謝します、事前に感謝を!
役立ちますし、ロードに時間がかかると思います。 –
は$スクリプトをあなたのjavascriptコードと同じようにエコーするのですか? –
結果として単一の ']' –