Can a php code encryted?
Is it possible to execute the php file which is
encrypted(without decrypting), if so pleaze tell me the way.
Answers were Sorted based on User's Feedback
Answer / naresh
There is a zend encryptor for php code encryption, which
enables the code to be encrypted and we can execute the code
as we execute our simple php code.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / jp
You can't really 'encode' a PHP script, the PHP interpreter
will not understand it.
What you can do, however, is to create obfuscated code,
which is extremely hard to understand and/or retrieve
information from the code and therefore impossible to edit.
| Is This Answer Correct ? | 2 Yes | 5 No |
Answer / niranjan kumar
u use the encode64 and decode64 for the encript
| Is This Answer Correct ? | 1 Yes | 4 No |
List data types in PHP?
What are the ways to define a constant in php?
How to delete file in php?
What is the difference between echo print and print_r in php?
What are php loops?
What is namespaces in PHP?
How to strip whitespace (or other characters) from the beginning and end of a string?
What are the advantages of stored procedures?
difference between clanguage and c++
What does accessing a class via :: means?
I am trying to assign a variable the value of 0123, but it keeps coming up with a different number, what is the problem?
How to convert strings to upper or lower cases?