How the PHP programming language works underneath, and questions about the underlying C code.
1
vote
1answer
30 views
Compiling a php extension into a dll
I've been attempting for a last few days to make use of the operator overloading extension (pecl.php.net/package/operator), which has apparently been updated recently to be compatible with 5.3 and ...
2
votes
3answers
60 views
Capturing (externally) the memory consumption of a given Callback
The Problem
Lets say I have this function:
function hog($i = 1) // uses $i * 0.5 MiB, returns $i * 0.25 MiB
{
$s = str_repeat('a', $i * 1024 * 512); return substr($s, $i * 1024 * 256);
}
I ...
0
votes
1answer
37 views
php extension to replace PHP class method with handler written in C
My level of experience: very comfortable with C, novice to PHP, new to and very frustrated with Zend Engine (no documentation?)
I'm trying to write my first PHP extension, and I'm wondering if the ...
0
votes
1answer
199 views
Trying to regenerate zend_language_scanner.c
I'm trying to add a new keyword in PHP (just learning the core), so what I did was: added a new token to zend_language_parser.y, used it in an unticket_statement, compiled PHP, but it didn't work out. ...
2
votes
0answers
41 views
Linking Lame.h with PHP extension
I'm trying to develop my first php extension. It uses Lame , so I've installed liblame-dev
lame.h is located at /usr/include/lame/
In my config.m4
LIBNAME=lame
PHP_ADD_LIBRARY($LIBNAME)
It ...
1
vote
1answer
35 views
Date, Time, DSL and Timezone information handling
Timezone and Daylight Savings information can change without notice. A simple piece of legislation could alter DSL for an area and render datetime information useless for a certain area on the globe, ...
3
votes
1answer
89 views
How to make ZEND_BEGIN_ARG_INFO_EX control number of arguments, passed to a PHP extension?
I'm developing a PHP extension, using C. So far I'm working on the proper validation of arguments, passed to the extension's function from PHP userspace.
The macro ZEND_BEGIN_ARG_INFO_EX can be used ...
0
votes
1answer
74 views
Will a PHP local variable passed by reference reliably survive outside a function?
Basically in the case of working with large arrays it's convenient to pass null back if an error occurs since if $array = null then $array[] = 1 is [ 1 ] and null is also usable in a callable context, ...
1
vote
1answer
46 views
Detect during compilation whether PHP is being compiled with a given extension
I am trying to build an extension for PHP. After following Sara Golemon's book I have a basic extension which I can compile as a shared module and, in addition, I can compile it statically along PHP ...
8
votes
2answers
114 views
SEG Fault in PHP extension
I wrote a PHP extension to access functions in a static lib, I built PHP as a CGI, and everything seemed to work (after days of working on it..)
Thrilled once everything worked, I re-compiled PHP ...
9
votes
1answer
211 views
Writing a C++ extension for PHP 5.4, example code is obsolete
I am trying to write an extension for php5.4 which basically wraps a very simple class in CPP.
This is for education purposes.
I find the way to do it in php5.4 has changed from php5.3
Where do ...
10
votes
2answers
530 views
In which order are objects destructed in PHP?
What is the exact order of object deconstruction?
From testing, I have an idea: FIFO for the current scope.
class test1
{
public function __destruct()
{
echo "test1\n";
}
}
...
0
votes
2answers
84 views
are zend engine globals share memory across processes?
I've been going through PHP's source code and the mysql_pconnect function and noticed it's using some kind of HashTable persistent_list which is defined in zend_globals.
The question is, how are this ...
1
vote
1answer
73 views
Why Does get_memory_usage Retain Memory?
If I run the following PHP program on my computer
echo memory_get_usage();
echo "|";
echo memory_get_usage();
echo "|";
echo memory_get_usage();
I get the output
635048|635080|635080
From this, ...
3
votes
2answers
104 views
Modifying PHP rand function
For testing and learning purpose, I wanted to modify the php rand and mt_rand functions which are in https://github.com/php/php-src:ext/standard/rand.c.
I wanted to give a fixed output each time ...
2
votes
1answer
75 views
Make last array parameter optional in php class method (C)
I am creating a PHP extension in C to access the SPI interface. So far I have gotten pretty much everything working: php_spi on Github
However, I cannot seem to make the $options parameter in the ...
0
votes
1answer
127 views
Override recursion limits for __get and __set on the same property
Is there a way to Override recursion limits for __get and __set on the same property. I want to be able to handle the second reentry differently than the first entry.
This code example isn't ...
1
vote
2answers
78 views
Get the name of running script from a PHP extension
I'm writing a small extenstion for PHP. Is there way to know at runtime, the name of the script file (e.g.: test.php) that is running? Maybe some global or environment variables?
-1
votes
1answer
48 views
Fail to build extension due to ZEND_NUM_ARGS() macros
I'm writing small php extension and have problem when building it.
The code:
PHP_RINIT_FUNCTION(pstat)
{
int argc = ZEND_NUM_ARGS();
return SUCCESS;
}
on make got an error:
.... ...
8
votes
1answer
110 views
What is the difference between SplObjectStorage::contains and SplObjectStorage::offsetExists?
The PHP documentation is not very explicit and only states that:
SplObjectStorage::offsetExists Checks whether an object exists in the storage. (PHP >= 5.3.0)
SplObjectStorage::contains Checks if ...
1
vote
1answer
98 views
zend engine return object reference
In php, it is valid to write something like this:
<?php
class Foo
{
public function bar()
{
return $this;
}
}
?>
How can I do this inside zend engine? I want a method to ...
6
votes
1answer
252 views
how to convert zval to vector for php extension?
i'm writing a php extension for my c++ library which is defined something like this:
bool getPids(map<string,string> pidsMap, vector<string> ids);
now, i'm writing a php wrapper for ...
0
votes
1answer
140 views
zend engine call parent method
I am now trying to create a custom php extension and a problem I am facing is I dont know how to call a parent method.
It is like to be in the class constructor and call the parent's constructor:
...
0
votes
0answers
98 views
PHP: how to call parent constructor in c extension?
I am now build a class drive PDO using c extension . But i don't know how to call the parent's constructor in extension . I looked at the source code and found zend_call_method function , but the ...
0
votes
2answers
275 views
issues in wrapping c++ dll for php5 extension
I am trying to create php 5.2.17 extension for my c++ dll. Iam using Visual studio 2005 on windows xp with Sambar Server 7.0.
I have two questions:
I could not able to include c++ things (strings ...
379
votes
3answers
50k views
How foreach actually works
Let me prefix this by saying that I know what foreach is, does and how to use it. This question concerns how it works under the bonnet, and I don't want any answers along the lines of "this is how you ...
1
vote
1answer
149 views
Make ZVAL persistent across the SAPI?
A ZVAL is typically created with emalloc so it is destroyed at the end of a page request. Is there a way to take an existing ZVAL and make it persist in the SAPI (equivalent of pemalloc)? What about ...
0
votes
1answer
104 views
flex+bison in a php extension
I have created a small parser in c using flex and bison. The parser writes the result to some global variables and the caller function reads it from there.
I am trying to package my parser as a php ...
13
votes
3answers
349 views
Returning “Native” PHP Objects from an Extension
I'm dabbling with creating a PHP extension for a personal project. Beyond what's linked in the above article I have no knowledge of the zend_engine, and my C skills are 10 years out of date, and were ...
8
votes
3answers
426 views
Why is file_get_contents faster than memcache_get?
I'm loading XML files from disk using file_get_contents, and as a test I find I can load a 156K file using file_get_contents() 1,000 times in 3.99 seconds. I've subclassed the part that does the ...
3
votes
1answer
161 views
php extension: can not update class field using zend_hash_update
I want to realize this class into php extension:
class MyClass {
protected $attrs = array();
public function __construct($id = null) {
$this->attrs['id'] = $id;
$this->attrs['name'] ...
3
votes
1answer
326 views
PHP Zend Extension. How to overload functions?
I've been going through some PHP extension tutorials, but I can't find any information about how to overload existing function.
For example, I want to change the fopen() to something like
...
5
votes
2answers
259 views
What is #<some-number> next to object(someClass) in var_dump of an object? I have an inference. Am I right?
This is the code & its output I used to draw the inference below:
class a {
public $var1;
public $var2;
}
$obj0 = new a;
var_dump($obj0);
class b {
public $var1;
public ...
1
vote
1answer
73 views
Why C.O.W does not take place when ' writing to a property ' / ' injecting a property into an object ' of class?
class a {
public $test="msg1";
}
$t1 = new a;
echo "echo1: After Instantiation :<br/>";
xdebug_debug_zval('t1');echo "<br/><br/>";
$t2 = $t1;
echo 'echo2: After ...
17
votes
2answers
341 views
What is exactly happening when instantiating with 'new'?
Let's consider the following code:
class a {
public $var1;
function disp(){
echo $this->var1;
}
}
$obj1 = new a;
echo '<br/>After instantiation into ...
3
votes
3answers
255 views
How does array_keys do the search for value?
How does PHP array_keys do the search for value?
Example:
$array2 = array("xyz", "xyz", "abc", "abc", "xyz", "xyz", "text", "abc", "text");
print_r(array_keys($array2,"abc"));
Since they are ...
1
vote
1answer
106 views
When does a 'symbol' / 'variable name' get created in PHP?
This is my setting:
display_startup_errors = on
display_errors = On
error_reporting = E_ALL | E_STRICT
//code1:
$a = "abcd";
xdebug_debug_zval('a');
The above line of code would create a zval ...
11
votes
2answers
523 views
how does PHP opcode relate to the actually executed binary code?
test.php as plain text:
<?php
$x = "a";
echo $x;
test.php as opcode:
debian:~ php -d vld.active=1 -d vld.execute=0 -f test.php
Finding entry points
Branch analysis from position: 0
Return ...
7
votes
1answer
451 views
Writing PHP opcode and have it executed. How to do?
How can I write PHP opcode, save it in a file and make the Zend Engine execute it? Any method or hack is welcome, as long as it does the trick.
0
votes
1answer
48 views
Extending the Zend Engine on a KDE platform, is gVIM the right choice?
I am trying to introduce few nifty cool concepts to the Zend Engine in a KDE environment. It's kinda "deep core" thing and requires lots and lots of veteran C coding and hacking around a moderately ...
11
votes
1answer
94 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).
...
1
vote
1answer
94 views
Wrapping a custom php extension
I'm trying to wrap a custom php extension from a C library, now I have an Initializer function which initiate a specific custom connection and seems to be expensive one and i should not run it each ...
2
votes
2answers
265 views
Add entry to $_SERVER in extension
I need to add an entry to the superglobal $_SERVER-array within a PHP extension. I am quite sure that php_register_variable() will do the job, paasing key and value as arguments; but I have no idea ...
1
vote
1answer
130 views
Zend extension, get arguments of echo?
We have made a Zend extension which we want to write the addresses of the zval's echo is supposed to write out, but we cannot figure how to receive them because we have noticed that there is ...
0
votes
1answer
298 views
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 some help.THX
[php_ex.cc]
#include ...
1
vote
1answer
419 views
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;
return n;
}
I would like to call this method from a php extension
I wrote this in my ...
2
votes
2answers
285 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 ...
0
votes
1answer
87 views
Array as class member and refcounting
There is something that confuses me. Let there be a class member
Foo::$bar, which has to be initialized as an empty array in the
constructor. If I do that (via zend_update_property), its refcount is ...
5
votes
0answers
507 views
PHP Zend Engine Extension static method call [closed]
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) { ... }
}
?>
...
8
votes
3answers
458 views
puzzling php parser error
Ok maybe not so puzzling, but here it is.
I was messing around and noticed this, typing just <?php in a file, just that, no space after that, nothing else just the tag, throws a parse error.
...

