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
Writing Libraries in PHP: http://www.zend.com/zend/tut/tutorial-moran.php
An Introduction to Classes: http://www.zend.com/zend/tut/class-intro.php
zend tutorial: http://www.zend.com/zend/tut/index.php
icncube
Eine php-Erweiterung mit der es möglich ist php funktionsfähig, aber ohne sichtbaren source code auszuliefern. für proprietäre software.
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
page: http://www.xisc.com/
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
zu den *.ttf kann mann auch selbst ein font machen, mit gd-font:
tools: http://puremango.co.uk/cm_fontmaker_114.php http://www.philiplb.de/index.php?showdownload=63&p=Downloads
fonts: http://www.widgnet.com/gdf_fonts/ http://www.widgnet.com/gdf_fonts/fonts.html
homepage von gd
link
http://phpdoc.org http://phpdoc.org/docs/HTMLSmartyConverter/default/phpDocumentor/tutorial_manual.pkg.html