Author Topic: Advanced PHP  (Read 302 times)

0 Members and 1 Guest are viewing this topic.

Offline ChaosKnightTopic starter

  • Enthusiast
  • Posts: 179
  • Gender: Male
    • View Profile
Advanced PHP
« on: May 23, 2010, 07:26:33 AM »
Is there books available about the most advanced PHP topics, such as e-mail piping, PHP shell, using C with PHP, etc.? I hear a lot of PHP experts talking about thing like those, and that makes me feel like somewhere along the line I missed something that I should have known already...
Hotels, Tours & Safaris

...The problem with troubleshooting is that trouble shoots back...

Offline Daniel0

  • Administrator
  • 'Insane!'
  • *
  • Posts: 11,815
  • Gender: Male
  • ^bb|[^b]{2}$
    • View Profile
Re: Advanced PHP
« Reply #1 on: May 24, 2010, 12:57:42 AM »
Email piping: Add something like daniel: "|/path/to/some/script.php" to /etc/aliases, run newaliases and then I can read emails to "daniel" from STDIN in that script. It hasn't really got anything to do with PHP, but more with how you setup a mail server.

PHP shell: You mean like this. You just run your script by typing php script.php instead of going to http://localhost/script.php. That part of the manual contains the differences between the SAPIs.

Using C with PHP: What's that supposed to mean?