|
|
 |
|
|
User Guide Notation
This section explains certain syntax conventions used in this User Guide.
Command Examples
Command line text in the User Guide is printed in monospace bold font.
Command examples are printed in the form:
nu-coder.exe [options] source-directory target-directory
|
or to illustrate command usage and output, as
prompt> nu-coder -V
NuSphere PHP Encoder Nu-Coder 2.0.0 Copyright (c) 2005-2009
NuSphere Corporation.
|
Or similar with License Manager
prompt> nu-licgen -v
NuSphere Nu-Coder license generator 2.0.0 Copyright (c) 2005-2009 NuSphere Corp.
|
Shell input is shown in bold, and program output is plain. prompt> is an example shell prompt for command entry but this may be different on your own system.
Nu-Coder and PhpExpress support for PHP 4 and for PHP 5
Nu-Coder and PhpExpress difference
Nu-Coder supports encoding of the scripts written in PHP versions 4.3, 4.4, 5.0, 5.1 and 5.2. PHP scripts written on earlier versions of PHP and encoded with Nu-Coder can also be deployed on any later version of PHP interpreter with the help of PhpExpress. Unlike many other PHP Encoders, Nu-Coder can encoder PHP files with special provisions for intermediate versions with the use of -c parameter. For example using php encoder with option -c 5.1 will result in encoding taking in account special features available in PHP 5.1 and not just PHP 5.0
Examples used in this User Guide
The PHP version of the script being encoded with Nu-Coder can be specified by passing -c parameter followed by version number to Nu-Coder Command Line Interface. For example, the following line will invoke the encoding for PHP 4.3 script file.php, storing the output in the file file_enc.php:
nu-coder.exe -c 4.3 file.php file_enc.php
|
-c is not a required parameter, if omitted the script will be encoded with PHP 5.1.
For simplicity in this document we will omit -c parameter in the most of the examples. Therefore these examples will illustrate how the program should be used if encoding a PHP 5.1 project to ensure that your encoded scripts will run on PHP 5.1 servers. If the project is on a different version of PHP, the -c parameter should be used explicitly to specify the version to the Encoder.
|
|
|  |
|