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.
Ruby は、ブラウザーを起動し、そのブラウザーで URL を開き、ページの内容を解析するためのメソッドを提供します。
browser = Watir::Browser.new(:firefox) browser.goto("http://example.com") browser.wait results = browser.text parsed_results = JSON.parse(results)
PHPでそのようなことができますか?はいの場合、どのように可能ですか?