Ben bir değere bir referans alır ve onu değiştiren bir PHP uzantısı yazıyorum. Örnek PHP:
$someVal = "input value";
TestPassRef($someVal);
// value now changed
Doğru yaklaşım nedir?
Edit 2011-09-13:
The correct way to do this is to use the ZEND_BEGIN_ARG_INFO()
family of macros - see Extending and Embedding PHP chapter 6 (Sara Golemon, Developer's Library).
Bu örnek, function (nedeniyle ZEND_BEGIN_ARG_INFO
1 olmanın ikinci argüman) referans sonra ve tüm diğerleri (nedeniyle ZEND_ARG_PASS_INFO(0)
çağrısına) değerine göre bir string argüman alıyor.
const int pass_rest_by_reference = 1;
const int pass_arg_by_reference = 0;
ZEND_BEGIN_ARG_INFO(AllButFirstArgByReference, pass_rest_by_reference)
ZEND_ARG_PASS_INFO(pass_arg_by_reference)
ZEND_END_ARG_INFO()
zend_function_entry my_functions[] = {
PHP_FE(TestPassRef, AllButFirstArgByReference)
};
PHP_FUNCTION(TestPassRef)
{
char *someString = NULL;
int lengthString = 0;
zval *pZVal = NULL;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz", &someString, &lengthString, &pZVal) == FAILURE)
{
return;
}
convert_to_null(pZVal); // Destroys the value that was passed in
ZVAL_STRING(pZVal, "some string that will replace the input", 1);
}
Eklemeden önce convert_to_null
(ben bu ZENG_ARG_INFO()
aramaları ekledikten sonra gerekli olup olmadığını değil ettik) her çağrıda bellek sızıntısı olur.