Slashdot Mirror


International PHP Conference 2003

Sebastian Bergmann writes "The Call for Papers for the International PHP Conference 2003 Spring Edition has started. The conference will be held on May 8th and 9th in Amsterdam, The Netherlands. Like its sister event, the International PHP Conference 2003 Fall Edition, the conference will gather both the PHP Development Team and PHP enthusiasts from all over the world for two days of discussion, sessions and workshops."

3 of 14 comments (clear)

  1. More Information by Motherfucking+Shit · · Score: 5, Informative
    FYI, the deadline for submissions is January 31st. You can submit a proposal here, and speakers should have at least two lectures to present. The topics covered at the conference will include:
    • General PHP
    • PHP & Business
    • PHP & Databases
    • PHP Design
    • PHP Extensions
    • PHP & XML
    • PHP-GTK
    Oh, and anyone who's invited to be a speaker/presenter will have their way paid by the conference.
    --
    "BSD: Free as in speech. Linux: Free as in beer. Windows 10: Free as in herpes." --Man On Pink Corner in #52607549.
  2. Re:They really need a session on security. by lux55 · · Score: 4, Informative

    Try is_int() or is_numeric(). The latter will return true for strings that are all number as well (ie. '123').

    You can also convert that string to a number via:

    $num = (int) $num;

    Validation/filtration is pretty easy in PHP. I agree though, the tutorials usually don't provide enough references as to what functions are useful. Regexes can only take you so far (quite far albeit) before your application shows a noticeable drop in performance.

    It would be nice to see PHP Security added to the list of topics.

  3. Re:PHP Wishlist by g_dancer · · Score: 3, Informative

    With the upcoming major release (PHP 5) PHP will overcome its deficits when it comes to object-oriented language constructs. Have a look at this for a list of new features of the Zend Engine 2, the compiling and executing kernel of PHP 5. The Script Running Machine (SRM) completes PHP to an Application Server by providing a co-process to the web-server that runs persistent PHP objects.