Tagged Questions

Zend Engine The Zend Engine is an open source scripting engine (a virtual machine), commonly known for the important role it plays in the web automation language PHP. It was originally developed by Andi Gutmans and Zeev Suraski while they were students at the Technion - Israel Institute of ...

learn more… | top users | synonyms

39
votes
2answers
618 views

Parentheses altering semantics of function call result

It was noted in another question that wrapping the result of a PHP function call in parentheses can somehow convert the result into a fully-fledged expression, such that the following works: <?php ...
22
votes
2answers
632 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 ...
16
votes
5answers
653 views

Why don't PHP attributes allow functions?

I'm pretty new to PHP, but I've been programming in similar languages for years. I was flummoxed by the following: class Foo { public $path = array( realpath(".") ); } It produced ...
11
votes
2answers
202 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 ...
10
votes
1answer
57 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
257 views

How does PHP assign and free memory for variables?

I was wondering when does PHP free the memory which is used for a variables for example function foo(){ $foo = 'data'; return $foo; // <- is the memory space for `$foo` emptied at this ...
9
votes
10answers
13k views

What does “zend_mm_heap corrupted” mean

All of the sudden I've been having problems with my application that I've never had before. I decided to check the Apache's error log, and I found an error message saying "zend_mm_heap corrupted". ...
7
votes
3answers
956 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 ...
6
votes
1answer
144 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.
6
votes
3answers
125 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. ...
5
votes
3answers
577 views

where can i learn php internals, how they work?

is there a good link to start learning the internals of php ? a video like http://www.youtube.com/watch?v=E_kZDvwofHY&feature=youtu.be&a ? ( python ) or anything, pdf, books, link that can i ...
5
votes
2answers
2k views

What's the Difference Between Extension and zend_extension in php.ini?

When I installed Xdebug through pecl, it added the following line to my php.ini file. extension="xdebug.so" and everything I used worked. Until today. Today I was having trouble setting up Xdebug ...
5
votes
3answers
1k views

Reading Zend Engine API code: What does ## (double hash) means?

Out of curiousity, I'm reading the Zend Engine API code and encountered quite a number of ## in their #define's. For example, at /usr/lib/php5/Zend/zend_API.h: #define ZEND_FN(name) zif_##name ...
4
votes
3answers
145 views

PHP's static member and instance member seems no different. Why PHP does so(Without warning)?

<?php class A { public function instanceFunc() { echo "instance"; } public static function staticFunc() { echo "static"; } } A::instanceFunc(); // instance $a = new A(); ...
4
votes
7answers
556 views

Compare PHP Arrays Using Memory References

Is it possible to see if two array variables point to the same memory location? (they are the same array)
3
votes
2answers
85 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 ...
3
votes
1answer
181 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
4answers
143 views

How to understand the 3 lines of c code?

if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &flag) == FAILURE) { return; } Especially what's ZEND_NUM_ARGS() TSRMLS_CC doing?
3
votes
6answers
468 views

PHP Performance : Copy vs. Reference

Hey there. Today I wrote a small benchmark script to compare performance of copying variables vs. creating references to them. I was expecting, that creating references to large arrays for example ...
3
votes
1answer
248 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
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
569 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
498 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(); } } ...
2
votes
2answers
67 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 ...
2
votes
2answers
105 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
151 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
150 views

Is the Zend engine embeddable outside of PHP?

One of the original designs of the Zend engine, if I recall, was that it was to be relatively easy to embed for other languages one might wish to create. Basically, the PHP syntax without all the PHP ...
2
votes
2answers
657 views

Similar syntax causes strange, repeated compile errors when building PHP from source on Windows

I am trying to build PHP from source per these instructions. The configure works really well, but when I get to the nmake part, things fall apart. I have no idea why I am getting errors about ...
2
votes
1answer
495 views

Linking a PHP Extension Written in C

Edit: Revising My Question When building an external PHP module in C, how do I link shared objects?
1
vote
1answer
52 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 ...
1
vote
1answer
65 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 ...
1
vote
1answer
124 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 ...
1
vote
2answers
89 views

PHP array syntax/operator?

When writing the syntax for an associative array in PHP we do the following $a = array('foo' => 'bar'); I am curious of the relationship of the => syntax, or possibly operator. Does this ...
1
vote
1answer
118 views

How does PHP implements its all fit container `array`?

If it were c++,this can be achieved by template,but as we know PHP is written in c,how's this kind of data struct implemented without template?
1
vote
3answers
320 views

How are PHP's built-in functions implemented internally?

are these functions written the same way as user functions? I mean with PHP code and with regular expressions and stuff like that? For example: filter_var($email, FILTER_VALIDATE_EMAIL); vs. ...
1
vote
2answers
405 views

how to write PHP module in C

how can i write my own module in C ? is it possible ?
1
vote
1answer
184 views

Linking a php module with a .so library on linux

I am working on a PHP module and I am having trouble linking with shared libraries under Linux. What is the command I need to put in my config.m4 to link against a .so? If I have my .so file under ...
1
vote
1answer
262 views

try to embed my C code in PHP script

I am learning how to use SWIG, and I am writing a php wrapper for a C library. The extension successfully compiles, but when I try to call the function I get this error: php: symbol lookup error: ...
1
vote
2answers
130 views

How can I make/patch php source (c code) to read an array from php.ini?

I'm experienced with php but I'm a novice to the php source and php extensions. I want to extend php so that it randomly chooses an upload_tmp_dir from an array, rather than one fixed dir. It doesn't ...
1
vote
1answer
112 views

Php extension problems

I get a tricky problem when i am trying to create a php extension with c, with an array returned. I do as some tutorials said, but i need to return an array. array_init(return_array) in all examples ...
1
vote
1answer
82 views

PHP: How do I create an empty op_array?

inside of my PHP extension, How can I create an op_array with no opcodes in it? Thanks!
1
vote
1answer
202 views

Which PHP function uses such hash algorithm?

1. static inline ulong zend_inline_hash_func(char *arKey, uint nKeyLength) 2. { 3. register ulong hash = 5381; 4. 5. /* variant with the hash unrolled eight times */ 6. ...
1
vote
3answers
110 views

In PHP, when $foo = new Foo(), technically speaking, is $foo an object, or is $foo a reference?

Update: in http://php.net/manual/en/language.oop5.references.php it says: One of the key-points of PHP5 OOP that is often mentioned is that "objects are passed by references by ...
1
vote
1answer
109 views

Fetching zend resource without knowing type of the resource

It is possible to fetch the zend resources (zend_fetch_resource) without knowing the type of the fetching resource? If so, how? Note: I am writing PHP extension.
1
vote
2answers
581 views

Missing symbol after compiling swig interface

Im trying to compile a php interface for my linux shared object and i have managed to get it to compile all right using the output from swig, however when i try and load the so it complains of a ...
0
votes
1answer
31 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 ...
0
votes
1answer
144 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 ...
0
votes
1answer
46 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 ...
0
votes
1answer
79 views

Make getimagesize() referenced cached values

I am tweaking a zen-cart website to be more cpu efficient. After profiling it, I see that the getimagesize function is accounting for nearly 50% of page load time. The images are locally stored. One ...
0
votes
1answer
204 views

Can't find Zend directory in EasyPHP folder

I'm about reading a tutorial about creating php extensions in C. I'm using Visual Studio 2008 and EasyPHP whose directory includes /ext folder (PHP extensions directory) this is the tutorial : ...

1 2