Category > PHP

Yay, going to the IPC 2008!

» 01 September 2008 » In Events, PHP » No Comments

Finally, today I got my request, to participate in the International PHP Conference 2008, approved. I am really looking forward to plan my conference among this huge selection of interesting sessions to chose from. The conference plan can be found here.

My choice of sessions will be regularly updated here.

Power workshop:

Conference sessions:

Possibly Related Posts:


Tags:

Continue reading...

Tags:

Light-weight PHP engine for BPEL based on XML-rewriting

» 11 August 2008 » In Diploma IT, PHP » No Comments

This is the title of my diploma project and the implemented software component. I need a better and definitely a shorter name (abbreviation would be nice). So if you have any good suggestions please let me know (post a comment).

Maybe your suggestion will be the title of my workflow engine.

Possibly Related Posts:


Tags: , , ,

Continue reading...

Tags: , , ,

Diploma Project handed in, Yay!

» 01 August 2008 » In Diploma IT, PHP » No Comments

Finally, after six months of hard work, I handed in my diploma project today. The project’s report and software component (Light-weight workflow engine for 2.0) will be uploaded to my webpage under “Projects” after my exam and its possible corrections.

So please feel free to download my work and try it out – all kind of comments are of great interest, so that I can improve the workflow engine.

The workflow engine will get its own webpage as soon as possible. The webpage will be announced here later, so come back now and then…

Possibly Related Posts:


Tags: , , ,

Continue reading...

Tags: , , ,

Understanding the PHP object model (slides)

» 23 May 2008 » In PHP » No Comments

Thanks to Sebastian Bergmann there some very nice

">slides
available about the PHP object model. I will recommend anyone interested in ’s object model to take a look at the slides.

I’m look forward for the slides about type-safe objects and reflection in PHP.

Possibly Related Posts:


Tags:

Continue reading...

Tags:

What PHP IDE to choose? There are so many out there….

» 19 May 2008 » In PHP » No Comments

I have used a lot of different IDE (like Eclipse PDT, Bluefish, Quanta+, Nusphere PhpED etc.) by now, but I’m still not overwhelmed.

I would like to hear from people out there programming PHP, I would appreciate if you could post a comment about your experience with your favorite choice of IDE and why it is your favorite.

Possibly Related Posts:


Tags:

Continue reading...

Tags:

Back from IPC2007 Frankfurt

» 09 November 2007 » In Events, PHP » 1 Comment

Yesterday I went home from the International Conference (IPC) in Frankfurt. My main interests for the IPC was the topics testing, software quality and framework.

They were covered by some great sessions from Sebastian Bergmann .

Possibly Related Posts:


Tags:

Continue reading...

Tags:

<variable> = <expression> ? <value> : <value>

» 15 April 2007 » In PHP » 1 Comment

We all know that you as a programmer often is in a situation, where you proberly use an if-else construction. But you don’t always have to, often it is more sophisticated to use the sentence from the title and assign the right value, when the variable is instantiated.

<variable> = <expression> ? <value> : <value>

Let me give an example “when the sky is dark, then daytime is night, otherwise daytime is day”.

[source:]
< ?php

$sky = “Dark”;

if(strcmp($sky, “Dark”) == 0) {
$day_time = “Night”;
}
else {
$day_time = “Day”;
}

?>
[/source]

The piece of code where you assign a value to “day_time” could you easily write on line:

[source:php]
< ?php

$sky = “Dark”;

$day_time = strcmp($sky, “Dark”) == 0 ? “Night” : “Day”;

?>
[/source]

So keep this little trick in mind, whenever a variable can be assigned one of two possible values.

Possibly Related Posts:


Tags:

Continue reading...

Tags: