Tagged Questions

The PHP language can be enhanced through the use of extensions, which provide to PHP scripts new internal functions, classes, resource types, streams (also stream wrappers and filters) and, in general, can do anything a native program would be able to do.

learn more… | top users | synonyms

22
votes
2answers
610 views

Interchanging data with zend (multidimensional arrays)

I'm embeding PHP in my app (writen in Delphi 2010), using PHP4Delphi component to interface with php5ts.dll. I guess my program acts as extension for the PHP (sapi module?) as it registers some ...
15
votes
1answer
663 views

creating PHP C/C++ extension modules using SWIG

I have written some C/C++ extension modules for PHP, using the 'old fashioned way' - i.e. by using the manual way (as described by Sarah Golemon in her book). This is too fiddly for me, and since I ...
10
votes
1answer
50 views

zend custom module

I am trying to build my own zend module (.so) We have multiple functionality that can be done in our own module which will improve our performance on a high traffic website (50k+ visits a day). ...
10
votes
2answers
271 views

Is it possible to create PHP extensions in Haskell?

Is it possible to create PHP extensions with Haskell? Usually PHP extensions are written using C. Is using Haskell FFI to provide functionality for a stub C extension possible (or even a good idea)? ...
9
votes
1answer
379 views

Resource garbage collected too early

I've created a PHP extension with SWIG and everything works fine, but I'm observing some strange garbage collection behavior when chaining method calls. For example, this works: $results = ...
8
votes
3answers
590 views

Has anyone compiled a rabbitmq/amqp library for php 5.2.x on windows x64

I'm trying to publish messages to RabbitMQ from a php (5.2.x) script on my windows X64 dev machine. The problem is that I didn't find any dll extension for php. My collegue is actually trying to ...
7
votes
3answers
888 views

How do I compile a PHP extension with Microsoft Visual C++ 2008?

I created a PHP Hello World extension DLL with Microsoft Visual C++ 2008. I have the right php.ini (I know because when I enable and disable the gd2 extension, there is an effect), but when I load ...
7
votes
5answers
1k views

Detect if the FreeType PHP extension is installed on the server

How do I test to see if the FreeType extension is installed on a server running PHP? I wanted to make a simple CAPTCHA system on my site, so I used imagettftext() and it worked fine. But what if the ...
6
votes
1answer
483 views

PHP Extension using libtidy compiles, but does not load

I wrote an extension in C++ that uses libtidy, and it runs perfectly under PHP when I compile PHP --with-tidy. However, it would be nice to have the extension run on a vanilla PHP. When I try to use ...
6
votes
1answer
665 views

Renaming Functions during runtime in PHP

In PHP 5.3 is there a way to rename a function or "hook" a function. There is the rename_function() within "APD" which has been broken since ~2004. If you try and build it on PHP 5.3 you'll get this ...
5
votes
3answers
380 views

Writing PHP extensions using Delphi 2010 and php4Delphi

Firstly this is about php4Delphi not RadPHP (formerly Delphi For PHP). Using Delphi 2010 PHP 5.3.6 (VC9, NTS) php4Delphi 7.2 (compiled with VC9 directive) Windows Server 2008 R2 IIS 7 When trying ...
5
votes
3answers
224 views

PHP extension vs. library (and can it be converted)

Some php wamp/lamp packages come with php extensions packaged within like php_amf, php_db, php_gd2 and I just have to activate the extension, or install the extension if it doesn't come by default. ...
5
votes
1answer
226 views

How does ArrayAccess work?

I've been reading about the commonly used interfaces of PHP from the SPL, such as Iterator, Countable, and ArrayAccess. However, I don't understand exactly how they work. Do their implementations ...
5
votes
1answer
199 views

modifying php-imap extension to allow oauth authentication

My php application logs into to Gmail via oauth provided access keys and fetch headers for all messages in inbox. The php-imap extension allows only for login/password based authentication. I want to ...
5
votes
1answer
1k views

7z extension for php?

I can't find one and I don't know if any of PHP Compression and Archive Extensions will work. Do you think I could use a compression stream to read data from a 7z file? UPDATE 7z forums have a ...
5
votes
3answers
196 views

php extension, how?

I need this library http://svn.arabeyes.org/viewvc/projects/itl/ports/php/. It is a php extension, and I want to know how I can use this. Do I need to compile this, and if so, how can I compile it? ...
5
votes
4answers
2k views

Extending PHP with C++?

I have a performance intensive routine that is written in PHP that I'd like to port to C++ for a performance increase. Is there any way to write a plugin or extension or something using C++ and ...
5
votes
1answer
1k views

How do I compile an extension for PHP 5.3 for windows as a DLL?

I'm currently rewriting a PHP Extension that was originally written for PHP 4.2.2. My issue is having the build/compile process generate a DLL instead of compiling the extension into the PHP core. ...
5
votes
2answers
2k views

How to start writing a PHP5 extension in C++

I'm writing a PHP5 extension, and while I could write it in C, it would be easier to use C++ and take advantage of the STL and Boost. Trouble is, the tutorials I've seen only deal with C, and I'm ...
4
votes
1answer
134 views

Problem serializing c++ class accessible through a php extension

I wrote a C++ library that exposes a number of classes. I also wrote a php extension using zend, as a wrapper over the c++ library. I have a problem properly serializing my objects, when, for ...
4
votes
4answers
242 views

create a php extension

I have a PHP class I want to convert to a PHP extension. I checked some tutorials and it's a bit complicated (see here, here and here). It's just a hard work. I found this – a simple example with ...
4
votes
1answer
193 views

List used PHP modules in code base

I need to list all PHP extensions that's required by a given code base. What would be the best way to tackle this problem? My initial thought is to write a script that goes through all files and find ...
4
votes
5answers
8k views

PHP intl extension

Someone experienced with intl extension for PHP under Windows XP please help me find the php_intl.dll and suggest how to install. Thanks!
3
votes
2answers
56 views

is it possible to have multiple classes inside php extension?

I would like to wrapp a .cc code that contains multiple public classes. Is it possible to do that ? how? Do I need to use multiple .cc files one for each class that i want to wrapp? THX
3
votes
2answers
182 views

No performance gain with APC on WampServer

I'm working on a Windows workstation, on which I use WampServer as my development platform, to write PHP applications which are then run on Linux. I'm pretty used to APC on Linux, which is blazing ...
3
votes
2answers
377 views

PHP Warning: Unable to load dynamic library

Ok I have PHP working on my mac os x Apache 2 server. Problem I am having is it can't seem to find the extensions that allow me to connect to an sqlite database. extension = php_sqlite.dll ...
3
votes
2answers
224 views

Use PHP functions in PHP extension

Can I use a PHP function such as explode() when creating an extension in C++?
3
votes
1answer
176 views

PHP Zend Engine Extension and static methods

On writing an extension for php (5.3) i want to access the zend_class_entry pointer on a static method. On non static methods i can use the getThis() macro and within Z_OBJCE_P macro like this: ...
3
votes
1answer
239 views

Zend Global Variable in an Extension Persisting Across Multiple Requests

As the title explains, I want to maintain an information across requests from multiple clients. Let me put in a simple example to explain what I want. This example is just for illustration of my ...
3
votes
1answer
238 views

Wrapping boost::shared_ptr in PHP using SWIG

If I use SWIG to wrap this C++ function: boost::shared_ptr<Client> Client::create() { return boost::shared_ptr<Client>(new Client()); } And then call it in PHP: $client = ...
3
votes
3answers
174 views

How to develop C extentions for PHP apps?

My PHP app has a number-crunching part that is just to slow for PHP, so I was thinking of building a custom C extention, but it is impossible to find any good reference to start with :( Is there a ...
3
votes
3answers
281 views

How Do I Make a PHP Module with the Vala Programming Language?

This new language called Vala, which is said to be C#-like and supposedly easier than C++ or C, compiles down into C on Linux with the GCC compiler. Sounds great. Now I want to use it to make a PHP ...
3
votes
3answers
173 views

custom php function creation and install

I would like to know how to create a php function that can be installed in php just like the already built in functions like : rename copy The main point I would like to achieve is a simple php ...
3
votes
2answers
628 views

Compiling a PHP extention library on Ubuntu (Karmic Koala)

I compiled some PHP extention libs (in C/C++) a while back, on my XP platform. I have now moved the sources to my Ubuntu box, and want to build the libs for use on my Linux box. However, I have come ...
3
votes
5answers
1k views

Memory usage of current process in C

I need to get the memory usage of the current process in C. Can someone offer a code sample of how to do this on a Linux platform? I'm aware of the cat /proc/<your pid>/status method of getting ...
3
votes
1answer
1k views

callbacks in jni

Is there any way to pass a callback to java code, from C. And the call returns immediately. Later on, after completing the task, the java code can invoke that callback. I have a C extension for php ...
3
votes
3answers
553 views

Reading php.ini using zend for PHP extension (not PHP language)

I am trying to read some settings from php.ini using zend. The API that I am using is long zend_ini_long(char *name, uint name_length, int orig) But it always returns 0. I have double checked the ...
3
votes
1answer
485 views

How do I add an array as an Object Property to a class declared within a PHP extension?

I want my PHP extension to declare a class equivalent to the following PHP: class MyClass { public $MyMemberArray; __construct() { $this->MyMemberArray = array(); } } ...
3
votes
4answers
1k views

Documenting a PHP extension with PHPdoc

I've written a PHP extension in C, and I want to create PHPdoc documentation so that my users will get inline docs in their PHP IDE (in this case, Netbeans) when calling my extension. Ideally I'd ...
3
votes
2answers
412 views

Passing a variable by reference into a PHP extension

I'm writing a PHP extension that takes a reference to a value and alters it. Example PHP: $someVal = "input value"; TestPassRef($someVal); // value now changed What's the right approach?
2
votes
1answer
58 views

Add sources to build php extension

I want to write a test php extension, which will provide a test class. I want to extract class declaration into a separate C-File and call class registration from module init function of myext.c file. ...
2
votes
1answer
24 views

API module version

When I build a PHP module extension in C, how can I know the "short" version number of PHP I'm dealing with ? (5.4, 5.3, 5.2, 5.x, ...) ZEND_MODULE_API_NO only relies on a format like YYYYMMDD (eg: ...
2
votes
2answers
69 views

How can I write a custom PHP extension which can modify the internals of the PHP interpreter?

Is it possible to write a PHP extension (UNIX, CGI SAPI) where I can: redefine the implementation of a PHP function (like with mail(): many PHP softwares uses the standard mail() function - I ...
2
votes
1answer
89 views

Do you think writing a new PHP framework as PHP extension (in C) is a good idea in terms of performance and usability? [closed]

EDIT: Yields that there is already new PHP framework written as extension. http://code.google.com/p/yafphp, thanks gordon for mentioning this. In short, do you think writing such framework as PHP ...
2
votes
1answer
48 views

Do i have to compile a PHP extension on Windows to use it with Windows?

I'm trying to compile a "hello world" type extension on Windows 7, but I'm running into all kinds of problems. My end goal is to use the compiled extension with PHP (using wampserver2). It it ...
2
votes
1answer
59 views

PHP extension version inconsistencies; a more reliable way?

Having run the following: foreach(get_loaded_extensions() as $name){ $extensions[strtolower($name)] = phpversion($name); } var_dump($extensions); I notice that some of the loaded extensions ...
2
votes
1answer
134 views

Using Hiphop for PHP extension development

Hiphop converts PHP into C++ code, did anyone used it for PHP extension development? I have found following link to write PHP extensions using C++ ...
2
votes
2answers
91 views

how to access a variable from a class using php extension?

I am working in c++ under ubuntu. I have the following example: [car.h] #ifndef VEHICLES_CAR_H #define VEHICLES_CAR_H // A very simple car class class Car { public: Car(); void shift(int ...
2
votes
0answers
122 views

PHP Zend Engine Extension static method call

I am writing a PHP extension. From the c-code I try to invoke a static method in PHP code. The PHP-method looks like this: <?php class Model { static method GetModelById($id) { ... } } ?> ...
2
votes
1answer
114 views

Writing static code analysis tools

I'd like to write a static code analysis tool for finding SQLi vulnerabilities in PHP code. Usually, I just use a script to separate functions, and grep them for inadequate sanitisation. Obviously ...

1 2 3 4