Does anyone know a working OCR (PHP)? [duplicate] - php

This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
How can I implement OCR on a website using PHP?
Ive been looking for a working OCR class (must be PHP) for almost 3 days.
Anyone knows a working OCR? please guide me if you have a OCR sample.

I don't believe anybody implemented any OCR solution in PHP.
OCR ( Optical Character Recognition ) is a very complex piece of Software and not anything PHP would be suited for to implement.
But for sure you can call an external OCR program from PHP.
So you should look for an OCR solution which can be used from command line.

Related

Python testing tool like Behat in the PHP [duplicate]

This question already has answers here:
Practicing BDD with python [closed]
(10 answers)
Closed 8 years ago.
I am trying to test a web-application, using python,
I am new in python so don't know much Python testing tools, i have written tests in Selenium/Pink/Behat in the PHP world, Now i have to use python for Behavior-Driven-Development (BDD),
I have been looked Google, but I couldn't really get a definitive answer. can any one please suggest me best python testing tool, like Behat.
Thanks in Advance
Try using Unittesting such as http://docs.python.org/2/library/unittest.html

Can we make EXE equivalent for PHP code so that the code can be protected? [duplicate]

This question already has answers here:
Best solution to protect PHP code without encryption
(11 answers)
Can you "compile" PHP code and upload a binary-ish file, which will just be run by the byte code interpreter?
(14 answers)
Closed 9 years ago.
Not sure if this has been discussed before.
I was looking for a solution that can protect the PHP code.
So even if I put the code on my client's server if they decide to put another developer on it or try to resell my code they should not be able to do so.
Is that even remotely possible?
The .exe versions of desktop application thingy is something I am looking for, but for PHP.
There are options to "compile" code like phpcompiler also read another thread about this on stackoverflow

HTTP server written on php [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicates:
PHP web server in PHP?
http server in php
I want to use HTTP server written on PHP instead of Apache. Who knows solutions? Best is one php file.
It was done once for some kind of a proof of concept we did, as PHP is faster to develop in than, say CPP. but in no way it is a solution for a production environment.
Others have done so too http://nanoweb.si.kz/ is one for example.

php memory management & profiling [duplicate]

This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
PHP memory profiling
From what I've found online, all I've seen for tracking memory usage in an PHP application is to use the native "memory_get_usage()" function or buy a commercial product like zend server.
Anybody have some other suggestions? Seems like a good use for Aspect Oriented Programming...
XDebug works great for tracing, profiling, and debugging.

Php include path help for Zend framework [duplicate]

This question already has answers here:
How to change include directory of Zend Framework
(5 answers)
Closed 9 years ago.
I previously posted this question (Reading Google docs spreadsheet) and got a good answer that instructed me to use the Zend Framework. I've never used it before, and I'm fairly certain I'm setting it up wrong. It says to "Simply download the framework,
extract it to the folder you would like to keep it in, and add the library directory
to your PHP include_path."
I'm doing it like this:
<?php
ini_set("include_path", ".:/PortableApps/xampp/htdocs/zend/library");
?>
...which is probably most certaintly wrong. Can someone help me?
Look at this question. It will answer yours.

Categories