3

Possible Duplicate:
Getting Started with PHP Extension-Development

Has anyone got some resources on how to write PHP (> 5.2.x) modules in C/C++? Besides that would it be advisable to code such modules for efficiency gains on maybe sorting large heaps of search results and the like?

Thanks in advance.

Community
  • 1
  • 1
aefxx
  • 24,835
  • 6
  • 45
  • 55

2 Answers2

2

There is a series of tutorial on Zend's site about Extension Writing. Also there is a good paper about Extending PHP written by Wez Furlong.

Emre Yazici
  • 10,136
  • 6
  • 48
  • 55
1

The PHP manual has a whole chapter about this topic:

PHP at the Core: A Hacker's Guide to the Zend Engine

Gordon
  • 312,688
  • 75
  • 539
  • 559
  • Strange I never tripped over that. Been there a quadrillion times probably. Thanks anyways. – aefxx Feb 10 '10 at 11:31