Einträge über PHP

Tschüss DomainFactory

Im November 2014 bin ich mit meinem Webhosting von Strato zu DomainFactory (damals domainFACTORY) umgezogen. Dort habe ich mehr Leistung bekommen für einen vernünftigen Preis.

Weiterlesen…

The Trouble of Testing PHP Locally

In principle, deploying PHP is extremely easy. Just log into the FTP account of the hoster, upload your files, done. Before I deploy, I want to create a test environment locally such that I can quickly see what my changes actually do before uploading it.

Weiterlesen…

Encodings

One of the bad things of the computer is that it was invented by people who thought that their language is the only one there is. So the regular ASCII encoding has only 256 characters. This is enough if you are only concerned with English.

Weiterlesen…

include() vs. Functions

A while ago, I had an intriguing conversation with somebody who disclosed some secrets about PHP. He told me that he does not use functions but rather include files, since a function file would have to be included and since something has to be included anyway, there was no need for the function after all.

Weiterlesen…