How to independently use single Zend Framework component like XML-RPC or REST?

后端 未结 4 1259
生来不讨喜
生来不讨喜 2021-01-13 10:56

Zend framework is well known for loosely coupled components.

I would like to use XML-RPC from zend framework, is there any dependency for XML-RPC? Like if I had take

4条回答
  •  余生分开走
    2021-01-13 11:30

    You should never split single components off a framework or library independent from Zend Framework, or any other. Especially when using PHP there is also no performance reason, because with PHPs autoloading functionality it will always just include the files, which are requested.

提交回复
热议问题