Category Archives: PHP

PHP – Execute Linux Commands

There are 4 functions: _ exec _ system _ passthru _ shell_exec They basically differ for the return. The best seems to be the last one, if you need the whole command output in your PHP script.

Posted in Linux Command Line, PHP | Leave a comment

PHP locale localization

gettext (an alias is just underscore!)

Posted in PHP | Leave a comment

PHP Profiling – Profile / Performance

XDebug2 + KcacheGrind php-pecl-xdebug -> rami repository xdebug.profiler_enable=1 xdebug.show_mem_delta=1 xdebug.profiler_output_dir=/var/www/html/profiling/ xdebug.auto_trace=1 xdebug.trace_output_dir=/var/www/html/profiling/traces/

Posted in PHP | Tagged | Leave a comment

PHP HTML – Display Data in CSV or HTML Table Format

csv_html_dispay

Posted in HTML / CSS, PHP | Tagged | Leave a comment

PHP Ecommerce Shopping Cart

Magento: http://www.magentocommerce.com/ Presta: http://www.prestashop.com/

Posted in PHP | Tagged | Leave a comment

Trac – Integrated SCM & Project Management

http://trac.edgewall.org/

Posted in PHP, Web Development | Leave a comment

PHP Frameworks Review & Comparison

CakePHP CodeIgniter Symfony Solar

Posted in PHP | Leave a comment

PHP Interacting with Google Maps – Points of Interest

You need a key that will be bound to a domain. Documentation http://code.google.com/apis/maps/index.html http://code.google.com/apis/maps/documentation/ http://code.google.com/apis/maps/documentation/staticmaps/ Interesting idea: http://fullmeasure.co.uk/mashups/ecsitemap.htm External Link To find out the latitude and longitude of a point Search for it on maps.google.com. Be sure that is centered … Continue reading

Posted in PHP, Web Service | Leave a comment

PHP Obfuscator and Encoder

Windows http://www.raizlabs.com/software/phpobfuscator/ phpobfuscator_setup

Posted in PHP | Leave a comment

PHP – Display All The Defined Constants

get_defined_constants(true)

Posted in PHP | Tagged | Leave a comment