我有一個從另一個頁面解析的javascript代碼的php變量。有沒有一種簡單的方法來訪問個別與PHP的JavaScript變量?在PHP變量中訪問Javascript
PHP:
$cool = "<script type='text/javascript'>
var Title = 'This is the title';
var Text = 'Some text here';
Title.info.showinfo({
'thumb':'image.jpg',
'date':'Oct 2',
'year':'2011'
});
</script>";
什麼我試着去完成:
$title = "This is the title";
$text = "Some text here";
$thumb = "image.jpg";
$date = "Oct 2";
$year = "2011";
如果其他頁面與您合作,從它獲取數據作爲JSON,一切都會好起來的。否則我不會羨慕你。 – Jon
試試這個:http://timwhitlock.info/blog/2009/11/14/jparser-and-jtokenizer-released/一個基於PHP的JS解析器/標記器。應該讓你相當容易地提取這些。 –
如果您的輸入遵循固定模式,請使用RegExp:http://php.net/manual/en/function.preg-match.php –