php-extension
PHP http_build_url() and PECL Install
I downloaded an API that uses this php function http_build_url(). Everytime I run my application it says:[详细]
2023-04-12 22:19 分类:问答PHP extension loading from script using dl()
I\'m going to buy a (cheap) hosting space with apache/php 5/mysql. Because it\'s cheap i have no direct control over php.ini and extension loading.[详细]
2023-04-12 00:33 分类:问答where to add php extension name to compile it with other extensions
I have created sample php extension using ext_skel command tool. when I try ./configure --help from php base folder, my extension does not show up there.[详细]
2023-04-11 13:47 分类:问答Installing php_svn.dll extension in the Zend Server CE
I\'ve been trying to add the php_svn.dll extension into the zend server for a few days now. Below is my setup:[详细]
2023-04-10 18:54 分类:问答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++[详细]
2023-04-10 18:19 分类:问答how to create a php extension for an object?
I am working on a php extension for c++ classes. How to create a link to a method that accepts as parameter an objec开发者_JAVA百科t of a class?[详细]
2023-04-07 08:08 分类:问答php extension value not correct printed why?
I want to send an object through reference. The object represents a class [test.php] $car= new Car(); $car->l=1000;[详细]
2023-04-05 04:42 分类:问答php extension how to return a string from a method?
I have in [example.cc] a method : std::string Car::accelerate (std::string n) { cout<<n<<endl;[详细]
2023-04-05 00:52 分类:问答is it possible to have multiple classes inside php extension?
I would like to wrapp a .cc code that contains multiple public cl开发者_StackOverflowasses. Is it possible to do that ? how? Do I need to use multiple .cc files one for each class that i want to wrapp[详细]
2023-04-04 18:19 分类:问答php extension method not returned why?
Here is the php_ex.cc . When I compile my .so library the retur() method is not working. WHY? I have no errors, but It should print \"test\" and it doesn;t . need somehelp.THX[详细]
2023-04-04 08:53 分类:问答