Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Can any one please let me know how to implement XLIFF file format in to PHP? as of my knowledge it is for multilingual web development concept for CMS based projects. But not sure how it is to be implement on PHP i.e the methodology of reading/writing content into this XML file.
Please let me know if any other reference, URLs, books will be appreciable.
Thanks.
There is a XLIFF implementation into Zend Framework: http://framework.zend.com/manual/en/zend.translate.adapter.html
Here's another implementation: http://code.google.com/p/goatherd-php-library/
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I wrote web service which will generate label from certain parameters and will return it as PDF. Now I must improve it by returning generated label as PDF or ZPL format.
Unfortunately, I have zero knowledge on working with ZPL. What is ZPL? Is it some kind of file format? What is used for? How its generated? Any open-source PHP libraries for it?
It would be nice if someone would provide some whitepapers or some kind of reference about ZPL.
Web service is written in PHP.
I think you are looking for this information:
https://en.wikipedia.org/wiki/Zebra_(programming_language)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I have used codeigniter for developing websites and now I am switching to Yii. Can someone please suggest me what would be the best way to learn YII framework?
This link would be enough to learn basic usage
http://www.yiiframework.com/wiki/268/how-to-learn-yii/
There's a documentation section on the official web. Start there + simply start writing in Yii.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Guys i want to implement google+ interactive post sharing using php but not getting proper documentation or link. In Google doc only java script method is provided. Please provide any link or suggest any good way to perform this if it is possible. thanks in advance...
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to create a chatbox like gmail or facebook. What would be the best architecture to build it. Should It be good to use sockets or ajax?
If so, then would you please describe or give references of the architecture.
I'd suggest XMPP. I used it to design a chat system for within my companies software, and it worked quite well. There are plenty of XMPP libraries out there. If you were so inclined though, it it possible to use some of Google's services. Not everything needs to be written from scratch:
https://developers.google.com/talk/open_communications
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I am trying to begin using some sort of standard for documenting my PHP code. Most of my code is in the form of WordPress plugins, some are getting quite complex, and I need to document it.
So my question is simple, what system does WordPress use to document their code?
I think it uses phpDoc.
There is also a guide for WordPress inline documentation.