2.71 / December 31, 2015
(4.2/5) (671)

Description

The program allows you to execute scripts php,supported mysql.
The program runs compiled for arm lighttp, PHP 5.4.9, MySQL.
When you first start, phprunner download the necessary files (~10Mb).

Runs:
* PHP 7
* MySQL 5.1
* Lighttpd server

Features:
+ Run php scripts
+ Installation and running PhpMyAdmin
+ View site
+ View HTML code of the page
+ View Cookies
+ Logviewer
+ Autostart when the Android power on

In development:
+ File manager
+ Code editor

IMPORTANT! MySQL deprecated in PHP 7, use MySQLi instead

Thanks http://annimon.com for providing hosting forfiles.

App Information PHPRunner - PHP IDE

  • App Name
    PHPRunner - PHP IDE
  • Package Name
    ua.naiksoftware.phprunner
  • Updated
    December 31, 2015
  • File Size
    16M
  • Requires Android
    Android 2.3.3 and up
  • Version
    2.71
  • Developer
    Nick Software
  • Installs
    10,000 - 50,000
  • Price
    Free
  • Category
    Tools
  • Developer
  • Google Play Link

PHPRunner - PHP IDE Version History

Select PHPRunner - PHP IDE Version :
  • 2.71 (20) - Latest Version

Nick Software Show More...

PHPRunner - PHP IDE 2.71 APK
Nick Software
The program allows you to execute scripts php,supported mysql.The program runs compiled for arm lighttp, PHP 5.4.9, MySQL.When you first start, phprunner download the necessary files (~10Mb).Runs:* PHP 7* MySQL 5.1* Lighttpd serverFeatures:+ Run php scripts+ Installation and running PhpMyAdmin+ View site+ View HTML code of the page+ View Cookies+ Logviewer+ Autostart when the Android power onIn development:+ File manager+ Code editorIMPORTANT! MySQL deprecated in PHP 7, use MySQLi insteadThanks http://annimon.com for providing hosting forfiles.
CamDiscover 1.0 APK
Nick Software
Find internet cameras and other devicesinInternet by IP range
JaDX - Decompiler 1.2 APK
Nick Software
Decompiler for "apk", "dex", "jar", "class" files. This is aandroidadapted version JaDX (https://github.com/skylot/jadx). Alsothisprogram used FileDialoglibrary(http://code.google.com/p/android-file-dialog/). The programdoesnot decompile xml files and other resources, only classes.Sourcecode is available here https://github.com/NaikSoftware/jadx
Calculator Arity 1.44 APK
Nick Software
Arity Calculator was written by Mihai Preda, and is open source.Ituses the "Arity" arithmetic library. Адаптировано для Android4.xby Naik. Special mod for KI-14-1 :) Enjoy! Sampleexpressionssimple expression: 1+2 variable evaluation: pi functionevaluation:sin(0) variable definition: a=3.5 function definition:f(x)=x^2-1parentheses: (1-x)^2 To enter an expression cointainingletters,such as sin(x), use the ⇳ key on the basic keypad. Ittogglesopened/closed the letter keypad. Predefined functionsLogarithmsand power sqrt(x): square root; x^0.5 cbrt(x): cube root;x^(1/3)exp(x): exponential; e^x log(x), ln(x): natural logarithmlog2(x),lb(x): binary logarithm log10(x), lg(x): decimallogarithmlog(base,x): arbitrary base logarithm Trigonometric -radianssin(x), cos(x), tan(x) asin(x), acos(x), atan(x)Trigonometric -degrees sind(x), cosd(x), tand(x) asind(x),acosd(x), atand(x)Hyperbolic sinh(x), cosh(x), tanh(x) asinh(x),acosh(x), atanh(x)Other gcd(x,y): greatest common divisorcomb(n,k): combinationsperm(n,k): permutations min(x,y), max(x,y)floor(x), ceil(x)abs(x): absolute value sign(x): signum rnd():random value from[0,1). rnd(max): random value from [0, max).gamma(x): (x-1)!mod(x,y): modulo Complex numbers i or j is thecomplex base.Example: i*i (1+i)^2 e^(i*pi) Operators + - × ÷ basicarithmetic ^power % percent ! factorial # modulo √ square root 'firstderivative Tips Parentheses: you may omit the leading orfinalparentheses, e.g. 1+2)(3+4 is valid. Multiplication: you mayomitthe multiplication operator when unambiguous, e.g.3π+2(1+2)Expression continuation: starting a new expression with anoperatorauto-inserts ans, the result of the last expression. Clear:use theEnter key to quickly erase the whole input line. Scientificenotation: 1e3 is 1000. Angles in degrees instead of radians:useeither sind(90) or sin(90deg). Use trackball Up/Down tonavigatethe history. Derivative It is possible to compute thefirstderivative of a function with one argument using theprimenotation: log'(5). The prime mark (quote) must appearimmediatelyafter the name of the function, and must be followedbyopen-parentheses. The derivative may be plotted e.g. sqrt'(x).Tocompute the derivative of an expression you must definetheexpression as a named function: E.g. f(x)=x^3+x^2+1, followedbyf'(x). Multi plot To plot multiple functions on the same 2dgraph,simply enter them on the same line separated by ";". E.g.x;x^2;2Binary, octal, hexadecimal You can enter values in binary,octal orhexadecimal by prefixing them with 0b, 0o or 0xrespectivelly, suchas: binary: 0b1010 octal: 0o17 hex: 0x100