Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のhtmlページでjs変数の値を見つけるphpでRegExが必要です。このような:
varName = "http://sample.com";
そのようなもの...しかし、jsコードの複雑さにより、非常に複雑になる可能性があります
<? $varname = "varName"; preg_match('/'.$varname.'\s*?=\s*?(.*)\s*?(;|$)/msU',$html,$matches); if(count($matches>1)) { print($matches[1]); } ?>