dqiatvbi61502 2011-04-23 22:53 采纳率: 0%
浏览 35
已采纳

Rails中PHP应用程序的界面

I've got a pure, working, PHP application with its own specific and complicated MSSQL database.

In Rails, I want to receive data from this app without any SQL adapters, because it's too complicated to run queries directly from Rails.

For example, there is a getCustomersWithAccounts method it PHP database that returns array of clients. How can I get this array from my Rails app?

Maybe use the PHP-CLI and run /usr/bin/php5 get_customers.php, which will print the JSON array. But how to implement this from Rails?

Now I use shared memcached keys.

  • 写回答

1条回答 默认 最新

  • drq22639 2011-04-23 22:58
    关注

    Your solution of using shared memcached keys is one way to go to transport data from one to the other.

    Another solution that might give you some more flexibility would be having the Rails app query the PHP app over HTTP. Basically you would be building a webservice API for yourself, you could return JSON or XML, or whatever format is most useful to the Rails app.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?