PHP auf eigenem Server installieren

Back2toxic

Erfahrenes Mitglied
Hallöchen,

ich suche nach geraumer Zeit eine Anleitung bzw. eine Schnittstellenbeschreibung von PHP.
Mein Chef nutzt eine .net-Komponente als Webserver innerhalb einer Applikation, hier wird jetzt allerdings auch PHP benötigt.

Gibt es hier irgendwas bzw. weiß irgendjemand ob das schon reicht, oder ob unbedingt ein Apache oder IIS benötigt wird?

Für jedgliche infos DANKE im Vorraus!
 
Hallo,

php kannst auch ohne einen Webserver installieren, du musst dich halt dann selber darum kümmern, dass die php-cgi ausgeführt wird und mit den richtigen Parametern versorgt wird.

Bei mir (Debian mit PHP 5.2.6-1+lenny9 with Suhosin-Patch 0.9.6.2):
Code:
Usage: php [-q] [-h] [-s] [-v] [-i] [-f <file>]
       php <file> [args...]
  -a               Run interactively
  -b <address:port>|<port> Bind Path for external FASTCGI Server mode
  -C               Do not chdir to the script's directory
  -c <path>|<file> Look for php.ini file in this directory
  -n               No php.ini file will be used
  -d foo[=bar]     Define INI entry foo with value 'bar'
  -e               Generate extended information for debugger/profiler
  -f <file>        Parse <file>.  Implies `-q'
  -h               This help
  -i               PHP information
  -l               Syntax check only (lint)
  -m               Show compiled in modules
  -q               Quiet-mode.  Suppress HTTP Header output.
  -s               Display colour syntax highlighted source.
  -v               Version number
  -w               Display source with stripped comments and whitespace.
  -z <file>        Load Zend extension <file>.
  -T <count>       Measure execution time of script repeated <count> times.

Gruß
BK
 
Zurück