php

verwandt: php5_installieren

PEAR

Pear ist ein modul system, wie CPAN für perl

installieren

PEAR selbst unter Linux

Debian

Wenn php grösser als Version 4.3:

  -  apt-get install php4-pear

ein Modul von PEAR

  -  pear install DB

excel

hier Info über php und excel: ExcelDe

Links

icncube

Eine php-Erweiterung mit der es möglich ist php funktionsfähig, aber ohne sichtbaren source code auszuliefern. für proprietäre software.

http://www.ioncube.com/

phpdoc

phpdoc genierte documentation direkt aus php code:

documentation als pdf:

# phpdoc -d ./ -o PDF:default:default -t pdf 
# phpdoc -f Testing.class.inc.php -o PDF:default:default -ti "Code Documentation for Testing" -t pdf 

documentation als html:

# phpdoc -d ./  -t html 

xslt von php4 zu php5

xslt ist jetzt in php5 integriert. ein hack um php4 software php5 tauglich zu machen:

in datei welche die xslte funktionen braucht zuoberst:

if (version_compare(PHP_VERSION,'5','>=')&&extension_loaded('xsl')){
 require_once('xslt-php4-to-php5.php');
}

dann das script xslt-php4-to-php5.php in den ordner hauen.von hier habe ich das script und die idee: http://alexandre.alapetite.net/doc-alex/xslt-php4-php5/index.en.html

templet system für php

smarty

page: http://smarty.php.net

ok, schon benutz

prado

patTemplate

mysql

ez_sql

php class to manipulate database

links: http://justinvincent.com/home/docs/ezsql/ez_sql_help.htm

gd

unter debian installieren

  -  apt-get install php5-gd
  -  /etc/init.d/apache restart

transparency in png

http://ch2.php.net/imagecolortransparent

    if(!empty($transparent)){
      $trans = imagecolorallocate($img,$transparent[[r]] ,$transparent[[g]],$transparent[[b]]);
      imagecolortransparent($img, $trans);
     // print_r($transparent);
    }

gd-font

homepage von gd

link


Navigation
Personal Tools