Skip to content

Instantly share code, notes, and snippets.

@KalleZ
Created July 19, 2017 10:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KalleZ/69f9ca1895bcac945e110b7777104203 to your computer and use it in GitHub Desktop.
Save KalleZ/69f9ca1895bcac945e110b7777104203 to your computer and use it in GitHub Desktop.
PHP_FUNCTION(hello_square)
{
zval *b;
ZEND_PARSE_PARAMETERS_START(1, 1)
Z_PARAM_ZVAL_DEREF(b)
ZEND_PARSE_PARAMETERS_END();
zval_dtor(b);
ZVAL_LONG(b, b * b);
RETURN_TRUE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment