What does PSR-0 stand for?

Php

Php Problem Overview


I know what PSR-0 is, and how, why, where to use it.

I've googled for this and looked around stackoverflow related posts, but could not find anything. Even on its official page there's no such definition.

So, the question is, what does PSR-0 exactly stand for?

Php Solutions


Solution 1 - Php

PSR stands for PHP Standard Recommendation as explained on http://www.php-fig.org/faqs/#what-does-psr-stand-for and here http://www.php-fig.org/psr/

Solution 2 - Php

PSR is a specification for defining a coding standard for PHP. Currently there are six accepted recommendations:

each addressing a specific aspect of coding.

Solution 3 - Php

> PSR, a PHP Specification Request, is an attempt to standardise the way > people use PHP in the hope that different sets of code libraries will > work together. http://petermoulding.com/php/psr

Solution 4 - Php

PSR stands for Proposing a Standards Recommendation. I’m not sure if it’s used anywhere else, but in the current context it is part of PHP-FIG (PHP Framework Interoperability Group).

For further reference http://blog.jayawi.com/psr-0/

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionYangView Question on Stackoverflow
Solution 1 - PhpRobView Answer on Stackoverflow
Solution 2 - PhpgregsethView Answer on Stackoverflow
Solution 3 - PhpPleoView Answer on Stackoverflow
Solution 4 - PhpDeepuView Answer on Stackoverflow