Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
i've found one cheat sheet for doctrine: cheat sheet
but it doesn't list all methods for Doctrine_Record, Doctrine_Core, Doctrine_Query etc.
i wonder if there is a such reference?
Would be very helpful.
I don't think so, 'cause such cheat sheets should contain only the most popular, useful methods and informations. But Doctrine's API is documented, so why don't you use official Doctrine API Documentation.
I find myself using the source itself as documentation when I need it. It's quite readable. Alternatively use something like http://www.phpdoc.org/ to make it more so.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a good open source script/library for php, that will produce cryptographic secure Pseudo-Random-Numbers?
At http://php.net/manual/en/function.mt-rand.php, there is a warning that says, "This function does not generate cryptographically secure values, and should not be used for cryptographic purposes. If you need a cryptographically secure value, consider using openssl_random_pseudo_bytes() instead". See http://php.net/manual/en/function.openssl-random-pseudo-bytes.php.
Probably the best way is to simply read from /dev/urandom, but a plethora of examples can be found in this article (sorry for the non SO link):
http://timoh6.github.io/2013/11/05/Secure-random-numbers-for-PHP-developers.html
There is also a php library if this is what you are looking for:
https://gist.github.com/raveren/5555297
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Are there any popular PHP libraries or services that can help detect duplicate content?
I run a site that has user generated content and I want to detect content that are similar or duplicated. Are there any popular libraries out there that can help with this?
Text similarity/plagiat/duplicate is a big topic. There are so many algos and solutions.
Some projects use the "adaptive local alignment of keywords" (you will find info on that on google.)
Also, you can check this (Check the 3 links in the answer, very instructive):
Cosine similarity vs Hamming distance
Hope this will help.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have done a lot of research, and found nothing, but does anyone know of a spell checker API?
So when you send a request to http://spellcheck.com?spellcheck-api=this is a sentnse, and it returns this is a sentence.
Please, tell me how to make my question better in the comments without downgrading, I'll fix it as fast as possible. I am a new SO member.
Check this awesome script: http://www.phpspellcheck.com
What you practically do is just fetch your $_GET['spellcheck_api'] (convert %20's if needed to spaces). And let the script (include() or require()) handle check your string for spelling errors.
Good luck !
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm looking for some software that will allow me to do the following:
alt text http://patrickg.net/lookingfor.png
I don't need anything fancy, just basic information, back and forth dated comments, etc. No payment integration, or file handling.
Thought I'd ask before I write my own
Good luck with that - but from what I've seen, most of the stuff out there have x100 more features, and an appropriate learning curve. I don't know if you can find something with the exact features you've asked.
What's the problem with rolling your own, though? As long as you use a framework, isn't it just a couple days' work (maybe even a day)? Learning/using a full-fledged CMS might take more time.
This may be overkill, but you may want to take a look at SugarCRM
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Where can I find a one-page (any size) cheat sheet of PHP functions, syntax, and block constructs?
You mean something like a Cheat Sheet?
There's also a great page for the results of variable tests that I find very useful.
You may find a lot of PHP cheat sheets on TechPosters website.
PCRE, Smarty, PHP
WordPress, MySQL, Smarty...
PHP ( date formatting, regex...)
http://www.addedbytes.com/cheat-sheets/php-cheat-sheet/
is more complete, but I think
http://www.addedbytes.com/cheat-sheets/php-cheat-sheet-version-1/
spaces it out more
These reference charts are usually referred to as cheatsheets.
Here are a few links, but Google will turn up many others:
http://www.addedbytes.com/cheat-sheets/php-cheat-sheet/
http://www.addedbytes.com/cheat-sheets/php-cheat-sheet-version-1/